|
@@ -446,7 +446,11 @@ public class OrganizationEvaluationInfoServiceImpl extends ServiceImpl<Organizat
|
|
|
List<Map> indicatorMap = new ArrayList<>();
|
|
|
if("ZDZX".equals(CacheContext.bseIdObject.get(binStage).getStageCode()) || "GLSX".equals(CacheContext.bseIdObject.get(binStage).getStageCode())){
|
|
|
|
|
|
- List<Indicator> indicatorList = indicatorService.listAll("","","",binSection,binStage,"","");
|
|
|
+ OrganizationEvaluation organizationEvaluation = organizationEvaluationService.getById(organizationEvaluationId);
|
|
|
+ if(null == organizationEvaluation){
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ List<Indicator> indicatorList = indicatorService.listAll("","","",binSection,binStage,"","",organizationEvaluation.getCheckCycle());
|
|
|
if(null != indicatorList && indicatorList.size()>0){
|
|
|
for (Indicator i : indicatorList){
|
|
|
Map map = new HashMap();
|