|
@@ -17,7 +17,6 @@ import com.ims.eval.service.IEvaluationDeptService;
|
|
|
import com.ims.eval.util.ExcelUtil;
|
|
|
import com.ims.eval.util.WordUtil;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.apache.commons.collections4.map.LinkedMap;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -410,10 +409,12 @@ public class DepartmentalPerformanceIndicatorPlanController {
|
|
|
}
|
|
|
} else {
|
|
|
for (EvaluationDeptBusinessContent evaluationDeptBusinessContent : evaluationDeptBusinessContentList) {
|
|
|
- if (!"0".equals(evaluationDeptBusinessContent.getAuditStatus())) {
|
|
|
- b = false;
|
|
|
- msg = "数据审核状态未通过,请联系相关部门进行审核!";
|
|
|
- break;
|
|
|
+ if (evaluationDeptBusinessContent.getDeptId().equals(deptId)) {
|
|
|
+ if (!"0".equals(evaluationDeptBusinessContent.getAuditStatus())) {
|
|
|
+ b = false;
|
|
|
+ msg = "数据审核状态未通过,请联系相关部门进行审核!";
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|