|
@@ -720,8 +720,13 @@ public class GyDataServiceImpl implements GyDataService {
|
|
} else if("3".equals(deployType)){ //省市一体部署
|
|
} else if("3".equals(deployType)){ //省市一体部署
|
|
if (managerValue.contains(currUser.getDeptId().toString())) { //机构是管理员
|
|
if (managerValue.contains(currUser.getDeptId().toString())) { //机构是管理员
|
|
auditStage = "1";
|
|
auditStage = "1";
|
|
- } else { //一般省级人员
|
|
|
|
- auditStage = "2";
|
|
|
|
|
|
+ } else {
|
|
|
|
+ String city = currUser.getCity();
|
|
|
|
+ if(StringUtils.isEmpty(city)){ //一般省级人员
|
|
|
|
+ auditStage = "2";
|
|
|
|
+ } else { //一般市级人员
|
|
|
|
+ auditStage = "1";
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|