|
@@ -3,7 +3,6 @@ package com.rongwei.bscommon.sys.service.impl;
|
|
|
import com.rongwei.bscommon.sys.dao.ApsProcessOperationProcessEquDao;
|
|
|
import com.rongwei.bscommon.sys.service.GanttService;
|
|
|
import com.rongwei.bsentity.vo.GanttVos;
|
|
|
-import com.rongwei.bsentity.vo.ScheduleGanttProcessVo;
|
|
|
import com.rongwei.bsentity.vo.ScheduleGanttVo;
|
|
|
import com.rongwei.rwcommon.base.R;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
@@ -139,7 +138,7 @@ public class GanttServiceImpl implements GanttService {
|
|
|
dateVo.setName(StringUtils.join(itemNames,"</br>"));
|
|
|
dateVo.setDesc(itemPrefix+itemDesc);
|
|
|
dateVo.setProcessdetailids(ganttVos.stream().map(GanttVos::getId).distinct().collect(Collectors.joining(",")));
|
|
|
- dateVo.setProcessidss(ganttVos.stream().map(GanttVos::getProcessid).distinct().collect(Collectors.joining(",")));
|
|
|
+ dateVo.setProcessids(ganttVos.stream().map(GanttVos::getProcessid).distinct().collect(Collectors.joining(",")));
|
|
|
dateVo.setGanttVos(ganttVos);
|
|
|
resultVo.add(dateVo);
|
|
|
}
|