|
|
|
|
@ -111,15 +111,23 @@ public class ApplyCompletionAction implements Action {
|
|
|
|
|
.set(Negative::getHandleResult12337Group, null); |
|
|
|
|
} |
|
|
|
|
// 属实
|
|
|
|
|
if (InspectCaseEnum.isItTure(verifyData.getCheckStatus())) { |
|
|
|
|
boolean itTure = InspectCaseEnum.isItTure(checkStatus); |
|
|
|
|
if (itTure) { |
|
|
|
|
updateWrapper |
|
|
|
|
.set(Negative::getIsRectifyCode, verifyData.getIsRectifyCode()) |
|
|
|
|
.set(Negative::getIsRectifyName, verifyData.getIsRectifyName()) |
|
|
|
|
.set(Negative::getRectifyDesc, verifyData.getRectifyDesc()) |
|
|
|
|
.set(Negative::getUnrectifyReason, verifyData.getUnrectifyReason()); |
|
|
|
|
.set(Negative::getIsRectifyName, verifyData.getIsRectifyName()); |
|
|
|
|
// 未整改
|
|
|
|
|
if (IsRectifyEnum.NOT.getValue().equals(verifyData.getIsRectifyCode())) { |
|
|
|
|
updateWrapper.set(Negative::getRectifyRestrictionDays, verifyData.getRectifyRestrictionDays()); |
|
|
|
|
if (IsRectifyEnum.NOT_YET.getValue().equals(verifyData.getIsRectifyCode()) || IsRectifyEnum.CANNOT.getValue().equals(verifyData.getIsRectifyCode())) { |
|
|
|
|
updateWrapper.set(Negative::getUnrectifyReason, verifyData.getUnrectifyReason()) |
|
|
|
|
.set(Negative::getRectifyDesc, null); |
|
|
|
|
if (IsRectifyEnum.NOT_YET.getValue().equals(verifyData.getIsRectifyCode())) { |
|
|
|
|
updateWrapper.set(Negative::getRectifyRestrictionDays, verifyData.getRectifyRestrictionDays()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 未整改
|
|
|
|
|
if (IsRectifyEnum.YES.getValue().equals(verifyData.getIsRectifyCode())) { |
|
|
|
|
updateWrapper.set(Negative::getRectifyDesc, verifyData.getRectifyDesc()) |
|
|
|
|
.set(Negative::getUnrectifyReason, null); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 不属实
|
|
|
|
|
@ -175,7 +183,7 @@ public class ApplyCompletionAction implements Action {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 属实
|
|
|
|
|
if (InspectCaseEnum.isItTure(verifyData.getCheckStatus())) { |
|
|
|
|
if (itTure) { |
|
|
|
|
if (CollectionUtil.isNotEmpty(item.getHandleResultCode())) { |
|
|
|
|
negativeBlame.setHandleResultCode(String.join(",", item.getHandleResultCode())); |
|
|
|
|
} |
|
|
|
|
|