소스 검색

Attending查房记录无审核 修改

rengb 5 년 전
부모
커밋
5aca85ec1c
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      kernel/src/main/java/com/lantone/qc/kernel/catalogue/threelevelward/THR03015.java

+ 4 - 4
kernel/src/main/java/com/lantone/qc/kernel/catalogue/threelevelward/THR03015.java

@@ -17,7 +17,7 @@ import java.util.Map;
 
 /**
  * @ClassName : THR03015
- * @Description : 主任查房记录无审核
+ * @Description : 主任查房记录无审核  1/次(超过一周)
  * @Author : 胡敬
  * @Date: 2020-03-25 10:21
  */
@@ -32,8 +32,8 @@ public class THR03015 extends QCCatalogue {
         Map<String, String> leaveHospitalStructureMap = inputInfo.getLeaveHospitalDoc().getStructureMap();
         String lengthOfStay = leaveHospitalStructureMap.get("住院天数");
         if (StringUtil.isNotBlank(lengthOfStay) && CatalogueUtil.numbersOnly(lengthOfStay)) {
-            //如果住院天数小于2天则不判断该条规则
-            if (Integer.parseInt(lengthOfStay) <= 2) {
+            //如果住院天数小于7天则不判断该条规则
+            if (Integer.parseInt(lengthOfStay) <= 7) {
                 return;
             }
         }
@@ -48,7 +48,7 @@ public class THR03015 extends QCCatalogue {
             professor = getProfessor(directorDoctorWardDoc.getStructureMap().get("审核人"));
             if (StringUtil.isBlank(professor)
                     || !professor.contains("主任")
-                    || CatalogueUtil.compareTime(StringUtil.parseDateTime(jlDateStr), StringUtil.parseDateTime(shDateStr), 48 * 60L)) {
+                    || CatalogueUtil.compareTime(StringUtil.parseDateTime(jlDateStr), StringUtil.parseDateTime(shDateStr), 7 * 24 * 60L)) {
                 findIndications = false;
                 break;
             }