|
@@ -23,6 +23,7 @@ import com.lantone.dblayermbg.facade.analyze.MedQcresultDetailFacade;
|
|
|
import com.lantone.dblayermbg.facade.appeal.AppealExamineInfoFacade;
|
|
|
import com.lantone.dblayermbg.facade.appeal.AppealInfoFacade;
|
|
|
import com.lantone.report.client.MedAppealExamineInfoServiceClient;
|
|
|
+import com.lantone.report.enums.ExampleStatusEnum;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
@@ -68,11 +69,14 @@ public class MedAppealExamineInfoManagementFacade {
|
|
|
public GetAuditDTO getAudit(GetAuditVO getAuditVO) {
|
|
|
return appealExamineInfoFacade.getBaseMapper().getAudit(getAuditVO);
|
|
|
}
|
|
|
- /**
|
|
|
+/*
|
|
|
+ */
|
|
|
+/**
|
|
|
* 审核通过
|
|
|
* @param approvedVo
|
|
|
* @return
|
|
|
- */
|
|
|
+ *//*
|
|
|
+
|
|
|
public Boolean approved (ApprovedVo approvedVo) {
|
|
|
QcresultVO qcresultVO = new QcresultVO();
|
|
|
qcresultVO.setBehospitalCode(approvedVo.getBehospitalCode());
|
|
@@ -243,6 +247,7 @@ public class MedAppealExamineInfoManagementFacade {
|
|
|
Asserts.fail2("无此类型处理方式!");
|
|
|
return false;
|
|
|
}
|
|
|
+*/
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -259,7 +264,7 @@ public class MedAppealExamineInfoManagementFacade {
|
|
|
.eq("check_id", rejectedVo.getAppealId())
|
|
|
);
|
|
|
AppealExamineInfo appealExamineInfo = new AppealExamineInfo();
|
|
|
- appealExamineInfo.setExampleStatus("1");
|
|
|
+ appealExamineInfo.setExampleStatus(ExampleStatusEnum.REJECT_EXAMPLE.getKey());
|
|
|
appealExamineInfo.setRejectReason(rejectedVo.getRejectedReason());
|
|
|
int appealExamineInfoUpdate = appealExamineInfoFacade.getBaseMapper().update(appealExamineInfo, new UpdateWrapper<AppealExamineInfo>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|