This commit is contained in:
caozehui
2025-03-04 14:10:44 +08:00
parent 993ac5f019
commit dda18320f8
6 changed files with 27 additions and 9 deletions

View File

@@ -785,7 +785,7 @@ public class SocketDevResponseService {
StorageParam storageParam = new StorageParam();
storageParam.setCode(Integer.valueOf(param.getCode()));
storageParam.setScriptId(param.getScriptId());
List<Integer> indexes = adHarmonicService.getIndex(storageParam);
List<Integer> indexes = adHarmonicService.getIndex(storageParam,false);
issueParam.setIndexList(indexes);
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.COEFFICIENT_TEST.getValue());
} else {

View File

@@ -382,7 +382,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
StorageParam storageParam = new StorageParam();
storageParam.setCode(Integer.valueOf(adPlan.getCode()));
storageParam.setScriptId(adPlan.getScriptId());
List<Integer> indexes = adHarmonicService.getIndex(storageParam);
List<Integer> indexes = adHarmonicService.getIndex(storageParam,true);
scriptDtlsList = scriptDtlsList.stream().filter(obj -> indexes.contains(obj.getScriptIndex())).collect(Collectors.toList());
}