|
@@ -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);
|
|
|
}
|
|
|
|