|
@@ -44,6 +44,15 @@ public class OperationNode {
|
|
|
opBillNeoDTO.getVitals().add(NeoUtil.updateNodeInfo(name, min, max, unit));
|
|
|
}
|
|
|
|
|
|
+ Set<LIS> lisSet = operation.getConflict_lis();
|
|
|
+ for (LIS lis : lisSet) {
|
|
|
+ String name = lis.getName();
|
|
|
+ BigDecimal min = NeoUtil.DoubletoBigDecimal(lis.getMinval());
|
|
|
+ BigDecimal max = NeoUtil.DoubletoBigDecimal(lis.getMaxval());
|
|
|
+ String unit = lis.getUnit();
|
|
|
+ opBillNeoDTO.getVitals().add(NeoUtil.updateNodeInfo(name, min, max, unit));
|
|
|
+ }
|
|
|
+
|
|
|
Set<OralMedicine> conflict_oralmeds = operation.getOralMedicines();
|
|
|
for (OralMedicine conflict_oralmed : conflict_oralmeds) {
|
|
|
String name = conflict_oralmed.getName();
|