a22f697d by 肖初晴

Merge remote-tracking branch 'origin/develop' into develop

2 parents 3bc3fee7 1ca861fc
......@@ -572,8 +572,9 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
if(CollectionUtils.isNotEmpty(pageList.getRecords())){
List<String> guids = pageList.getRecords().stream().map(MfDemand::getGuid).collect(Collectors.toList());
List<DemandRSVO> results = new ArrayList<>();
Map<String, DemandUpdateStateVO> stateMap = getStateMap(guids);
for (MfDemand item : pageList.getRecords()){
DemandRSVO vo = convertToVO(item,getStateMap(guids));
DemandRSVO vo = convertToVO(item, stateMap);
results.add(vo);
}
rsPageList.setRecords(results);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!