Commit bd9b73f2003871a5ad5e3f7553ba7f72f1684581

Authored by wangqian
2 parents 573fae09 efac293a

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

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  
... ...