Przeglądaj źródła

林栋:限住院是规则名称 加粗,然后后面替换为规则描述

lenovodn 1 rok temu
rodzic
commit
06e69b095b

+ 2 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/common/bo/ReportAfterQueryDetailResponseBO.java

@@ -77,6 +77,8 @@ public class ReportAfterQueryDetailResponseBO implements Serializable {
     @ApiModelProperty(value = "规则管理级别")
     @Dict(dicCode = "violation_level")
     private String reminderLevel;
+    @Dict(dicCode = "violation_level")
+    private String violationLevel;
     @ApiModelProperty(value = "是否医保")
     private String medicalInsurance;
 

+ 2 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/common/bo/mid/response/MidAuditDetailResponse.java

@@ -27,6 +27,8 @@ public class MidAuditDetailResponse implements Serializable {
     private Integer id;
     @ApiModelProperty(value = "异常标题(规则处理结果)")
     private String description;
+    @ApiModelProperty(value = "医生名称")
+    private String doctorName;
     @Dict(dicCode = "violation_level")
     @ApiModelProperty(value = "规则管理级别")
     private String violationLevel;

+ 3 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/service/impl/ViolationAnalysisServiceImpl.java

@@ -274,6 +274,7 @@ public class ViolationAnalysisServiceImpl implements IViolationAnalysisService {
             throw new JeecgBootException("找不到审查记录");
         }
         result.setDescription(detailInfo.getDescription());
+        result.setDoctorName(detailInfo.getDoctorName());
         result.setViolationLevel(detailInfo.getReminderLevel());
         result.setMedicalInsRuleInfoCode(detailInfo.getMedicalInsRuleInfoCode());
         result.setMedicalInsRuleInfoName(detailInfo.getMedicalInsRuleInfoName());
@@ -323,6 +324,8 @@ public class ViolationAnalysisServiceImpl implements IViolationAnalysisService {
             log.error("找不到审查记录");
             throw new JeecgBootException("找不到审查记录");
         }
+        result.setDoctorName(detailInfo.getDoctorName());
+        result.setMedicalInsRuleInfoName(detailInfo.getMedicalInsRuleInfoName());
         result.setDescription(detailInfo.getDescription());
         result.setViolationLevel(detailInfo.getReminderLevel());
         result.setMedicalInsRuleInfoCode(detailInfo.getMedicalInsRuleInfoCode());