Commit c11c5cc0 by huangfusuper

节点待运行增加统计工作流里面的

parent ddb2223b
...@@ -875,6 +875,10 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -875,6 +875,10 @@ public class ApiFlowServiceImpl implements ApiFlowService {
collectData.setFlowData(statisticData); collectData.setFlowData(statisticData);
//节点数据灌输 //节点数据灌输
StatisticData nodeStatisticData = statisticsNodeData(betweenRunRecording); StatisticData nodeStatisticData = statisticsNodeData(betweenRunRecording);
//增加工作流里面的节点 待运行 即扫描标位为未扫描的 就是今天的待运行
allFlow.forEach(flow ->{
nodeStatisticData.setUnstart(nodeStatisticData.getUnstart()+flow.getFlowNodeCount());
});
collectData.setNodeData(nodeStatisticData); collectData.setNodeData(nodeStatisticData);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment