Browse Source

去除医保入院审核

yeguodong 1 week ago
parent
commit
9f4464a7ee

+ 4 - 2
src/main/java/thyyxxk/webserver/service/medicalinsurance/SiAdmVerifyService.java

@@ -40,7 +40,7 @@ public class SiAdmVerifyService {
         if (null == medType) {
             return ResultVoUtil.fail(ExceptionEnum.LOGICAL_ERROR, "医疗类别不能为空!");
         }
-        if (medType == MedType.GENERAL_HOSPITALIZATION || p.getInpatientNo().startsWith("JT")) {
+        /*if (medType == MedType.GENERAL_HOSPITALIZATION || p.getInpatientNo().startsWith("JT")) {
             SiAdmissApply apply = new SiAdmissApply();
             apply.setStatus(1);
             return ResultVoUtil.success(apply);
@@ -49,7 +49,9 @@ public class SiAdmVerifyService {
         if (null == apply) {
             apply = new SiAdmissApply();
             apply.setAdmissDatetime(p.getYbRegisterDate());
-        }
+        }*/
+        SiAdmissApply apply = new SiAdmissApply();
+        apply.setStatus(1);
         return ResultVoUtil.success(apply);
     }