Commit efac293a96a8aa0568253705f91cb61d1b8e8d5b
1 parent
fef7a423
三海道路重新发起 ai 和 督察员
Showing
2 changed files
with
6 additions
and
0 deletions
urbanops-module-workorder/src/main/java/com/zteits/urbanops/module/workorder/service/garden/BpmAIServiceImpl.java
| ... | ... | @@ -292,6 +292,9 @@ public class BpmAIServiceImpl implements BpmAIService{ |
| 292 | 292 | variables.put(BPM_COMMON_PROD_ISNEED,true); |
| 293 | 293 | variables.put(BPM_COMMON_PROD_ISREVOKE,true); |
| 294 | 294 | variables.put(BPM_COMMON_PROD_ISVERIFY,true); |
| 295 | + //重新发起判断 三海区域 | |
| 296 | + boolean isSanhai = isSanhaiByRoadId(reqVO.getRoadId()); | |
| 297 | + variables.put(BPM_COMMON_PROD_ISSANHAI,isSanhai); | |
| 295 | 298 | } |
| 296 | 299 | //TODO 重新发起需更新工单数据库 |
| 297 | 300 | ... | ... |
urbanops-module-workorder/src/main/java/com/zteits/urbanops/module/workorder/service/garden/BpmInspectorServiceImpl.java
| ... | ... | @@ -284,6 +284,9 @@ public class BpmInspectorServiceImpl implements BpmInspectorService{ |
| 284 | 284 | variables.put(BPM_COMMON_PROD_ISNEED,true); |
| 285 | 285 | variables.put(BPM_COMMON_PROD_ISREVOKE,true); |
| 286 | 286 | variables.put(BPM_COMMON_PROD_ISVERIFY,true); |
| 287 | + //重新发起判断 三海区域 | |
| 288 | + boolean isSanhai = isSanhaiByRoadId(reqVO.getRoadId()); | |
| 289 | + variables.put(BPM_COMMON_PROD_ISSANHAI,isSanhai); | |
| 287 | 290 | } |
| 288 | 291 | //TODO 重新发起需更新工单数据库 |
| 289 | 292 | ... | ... |