|
@@ -275,7 +275,10 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
|
|
|
if (DictConstants.PROJECT_COMPLETED.equals(po.getNowRunState())) {
|
|
|
|
|
|
- po.setDetails(JsonUtil.beanToJson(selectProjectDetailsByIdBeforeRunning(SimulationManualProjectParam.builder().id(po.getId()).projectType(DictConstants.PROJECT_TYPE_MANUAL).build()).getInfo()));
|
|
|
+ final ProjectDetailsVO projectDetailsVO = selectProjectDetailsByIdBeforeRunning(SimulationManualProjectParam.builder().id(po.getId()).projectType(DictConstants.PROJECT_TYPE_MANUAL).build()).getInfo();
|
|
|
+ projectDetailsVO.setAlgorithmScoreList(new ArrayList<>());
|
|
|
+ projectDetailsVO.setNowRunState(DictConstants.PROJECT_RUNNING);
|
|
|
+ po.setDetails(JsonUtil.beanToJson(projectDetailsVO));
|
|
|
|
|
|
po.setNowRunState(param.getNowRunState());
|
|
|
po.setEvaluationLevel("");
|