Browse Source

首程增加护理级别提醒

louhr 5 năm trước cách đây
mục cha
commit
c10b09a258

+ 3 - 1
kernel/src/main/java/com/lantone/qc/kernel/catalogue/firstcourserecord/FIRC0092.java

@@ -26,7 +26,6 @@ public class FIRC0092 extends QCCatalogue {
         }
         TreatPlanLabel treatPlanLabel = firstCourseRecordDoc.getTreatPlanLabel();
         if (treatPlanLabel == null) {
-            info.set("无护理级别");
             return;
         }
         String text = treatPlanLabel.getText();
@@ -45,5 +44,8 @@ public class FIRC0092 extends QCCatalogue {
                         || treatPlanLabel.getPacs().size() > 0)) {
             status.set("0");
         }
+        if (treatPlanLabel.getNursingLevel() == null) {
+            info.set("无护理级别");
+        }
     }
 }