Commit 83aacd226dedd8f8a8f60eac28659d16854277dc
1 parent
02856d40
111
Showing
1 changed file
with
4 additions
and
1 deletions
trash-workFlow/src/main/java/com/trash/workflow/service/impl/WorkflowServiceImpl.java
| ... | ... | @@ -87,6 +87,9 @@ public class WorkflowServiceImpl implements IWorkflowService { |
| 87 | 87 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); |
| 88 | 88 | |
| 89 | 89 | String inArea = "芙蓉区,天心区,开福区,雨花区,望城区"; |
| 90 | + | |
| 91 | + | |
| 92 | + String earthsiteOutArea = "长沙县,浏阳市,宁乡市"; // 消纳场外区 | |
| 90 | 93 | |
| 91 | 94 | @Autowired |
| 92 | 95 | IActWorkflowFormDataService awfServer; |
| ... | ... | @@ -139,7 +142,7 @@ public class WorkflowServiceImpl implements IWorkflowService { |
| 139 | 142 | if (inArea.contains(jsonObject.getString("name"))) { |
| 140 | 143 | index = 2; |
| 141 | 144 | } |
| 142 | - if (tcdOutArea.contains(jsonObject.getString("name"))||jsonObject.getString("name").contains("湘江") ) { | |
| 145 | + if (earthsiteOutArea.contains(jsonObject.getString("name"))||jsonObject.getString("name").contains("湘江") ) { | |
| 143 | 146 | index = 1; |
| 144 | 147 | } |
| 145 | 148 | break; | ... | ... |