|
@@ -36,7 +36,6 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.LinkedHashSet;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
@@ -48,8 +47,6 @@ import java.util.stream.Collectors;
|
|
|
*/
|
|
|
@Component
|
|
|
public class MedAppealInfoManagementFacade {
|
|
|
- @Autowired
|
|
|
- private WorkFlowNodeFacade workFlowNodeFacade;
|
|
|
|
|
|
@Autowired
|
|
|
private AppealInfoFacade appealInfoFacade;
|
|
@@ -386,7 +383,7 @@ public class MedAppealInfoManagementFacade {
|
|
|
if (nowQcresultDetail == null) {
|
|
|
Asserts.fail("质控缺陷条目不存在");
|
|
|
}
|
|
|
- if (IsDeleteEnum.N.getKey().equals(qcresultDetail.getIsDeleted())) {
|
|
|
+ if (IsDeleteEnum.N.getKey().equals(nowQcresultDetail.getIsDeleted())) {
|
|
|
out.put("appealOperationType", AppealOperationTypeEnum.UP_OR_DEL.getKey());
|
|
|
out.put("appealOperationName", AppealOperationTypeEnum.UP_OR_DEL.getName());
|
|
|
} else {
|