|
|
@@ -27,6 +27,7 @@ import org.jeecg.common.util.oConvertUtils;
|
|
|
import org.jeecg.modules.medical.Constant;
|
|
|
import org.jeecg.modules.medical.EnchanceTypeEnum;
|
|
|
import org.jeecg.modules.medical.entity.*;
|
|
|
+import org.jeecg.modules.medical.ruleengine.OperaterEnum;
|
|
|
import org.jeecg.modules.medical.ruleengine.PluginInterface;
|
|
|
import org.jeecg.modules.medical.service.*;
|
|
|
|
|
|
@@ -340,7 +341,7 @@ public class FactorEnchanceController extends JeecgController<FactorEnchance, IF
|
|
|
EventAttr byId = eventAttrService.getById(factorEnchance.getEventAttrId());
|
|
|
List<String> name = new ArrayList<>();
|
|
|
if(byId!=null){
|
|
|
- name.add(byId.getChName());
|
|
|
+ name.add(byId.getChName()+"("+byId.getChName()+")");
|
|
|
}
|
|
|
factorEnchance.setOutParamNameList(name);
|
|
|
}
|
|
|
@@ -410,9 +411,9 @@ public class FactorEnchanceController extends JeecgController<FactorEnchance, IF
|
|
|
String string = "";
|
|
|
String type = "";
|
|
|
String text = "";
|
|
|
- String operator = "";
|
|
|
+// String operator = "";
|
|
|
if (one != null) {
|
|
|
- operator = dictService.queryDictTextByKey("operator", it.getOperator().toString());
|
|
|
+// operator = dictService.queryDictTextByKey("operator", it.getOperator().toString());
|
|
|
if (it.getRefAttrType() == 1) {
|
|
|
// type = "扩展属性:";
|
|
|
text = it.getExtAttr1();
|
|
|
@@ -423,7 +424,7 @@ public class FactorEnchanceController extends JeecgController<FactorEnchance, IF
|
|
|
}
|
|
|
}
|
|
|
String concat = string.concat(one.getChName() + "(" + one.getEnName() + ")")
|
|
|
- .concat(operator).concat(type).concat(text);
|
|
|
+ .concat(OperaterEnum.getType(it.getOperator()).getOperaterStr()).concat(type).concat(text);
|
|
|
str.add(concat);
|
|
|
});
|
|
|
logical4.setValue(str);
|