Ver código fonte

杭州七院:阿卡波糖规则特殊处理

wangsy 1 ano atrás
pai
commit
f9e88fe9c7
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      src/main/java/com/diagbot/facade/BillFacade.java

+ 3 - 1
src/main/java/com/diagbot/facade/BillFacade.java

@@ -58,7 +58,9 @@ public class BillFacade {
         billProcess.processRule(ruleVOList, wordCrfDTO, res);
 
         // 【特殊规则】过敏原自身过敏
-        otherRule.allergy(wordCrfDTO, res);
+        if(!wordCrfDTO.getPasts().contains("阿卡波糖")){
+            otherRule.allergy(wordCrfDTO, res);
+        }
         // 【特殊规则】七院:非阻塞性睡眠呼吸暂停综合征且非混合性睡眠呼吸暂停综合征,不宜同时开立睡眠呼吸监测和眼电图(EOG)(双眼)
         otherRule.smhxjcAndYdteog(wordCrfDTO, res);