|
@@ -105,10 +105,13 @@ public class GraphCalculate {
|
|
if(webDiagList.size()>0){
|
|
if(webDiagList.size()>0){
|
|
lis = weblisPacs.get("LIS");
|
|
lis = weblisPacs.get("LIS");
|
|
lis = new HashSet<>(processResult(lis));
|
|
lis = new HashSet<>(processResult(lis));
|
|
- lis.addAll(biglisPacs.get("LIS"));
|
|
|
|
pacs = weblisPacs.get("PACS");
|
|
pacs = weblisPacs.get("PACS");
|
|
pacs = new HashSet<>(processResult(pacs));
|
|
pacs = new HashSet<>(processResult(pacs));
|
|
- pacs.addAll(biglisPacs.get("PACS"));
|
|
|
|
|
|
+
|
|
|
|
+ if (biglisPacs != null && biglisPacs.size()>0) {
|
|
|
|
+ lis.addAll(biglisPacs.get("LIS"));
|
|
|
|
+ pacs.addAll(biglisPacs.get("PACS"));
|
|
|
|
+ }
|
|
|
|
|
|
}else {
|
|
}else {
|
|
lis=biglisPacs.get("LIS");
|
|
lis=biglisPacs.get("LIS");
|