|
@@ -8,6 +8,7 @@ import com.ruoyi.business.service.IDjpdSqService;
|
|
|
import com.ruoyi.common.core.constant.SecurityConstants;
|
|
|
import com.ruoyi.common.core.context.SecurityContextHolder;
|
|
|
import com.ruoyi.common.core.exception.ServiceException;
|
|
|
+import com.ruoyi.common.core.utils.DateUtils;
|
|
|
import com.ruoyi.common.core.utils.StringUtils;
|
|
|
import com.ruoyi.common.core.utils.uuid.IdUtils;
|
|
|
import com.ruoyi.common.security.utils.SecurityUtils;
|
|
@@ -368,20 +369,25 @@ public class DjpdSqServiceImpl implements IDjpdSqService
|
|
|
DjpdGs lastGs = djpdGsMapper.selectCommonList(gsQuery).stream().max(Comparator.comparing(DjpdGs::getCreateTimeStr))
|
|
|
.orElse(null);
|
|
|
if (ObjectUtils.isNotEmpty(lastGs)) {
|
|
|
- if (StringUtils.equals(lastGs.getGslx(), AnnounceStatus.RES.getCode())) {
|
|
|
- Map<String, Object> dept = sysDeptJlMapper.selectDeptByParams(lastGs.getCreateUnit());
|
|
|
- if (ObjectUtils.isNotEmpty(dept)) {
|
|
|
- if (dept.containsKey(SysDeptJlStatus.ANCESTORS.getCode())) {
|
|
|
- if (Arrays.asList(dept.get(SysDeptJlStatus.ANCESTORS.getCode()).toString().split(","))
|
|
|
- .size() >= Arrays.asList(SecurityUtils.getLoginUser().getSysUser().getDept()
|
|
|
- .getAncestors().split(",")).size()) {
|
|
|
- r.setIsFhyq(WhetherStatus.YES.getCode());
|
|
|
- } else {
|
|
|
- r.setIsFhyq(WhetherStatus.NO.getCode());
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ if (StringUtils.equals(lastGs.getCreateAreaCode(), SecurityUtils.getAreaCode())) {
|
|
|
+ r.setIsFhyq(WhetherStatus.YES.getCode());
|
|
|
+ } else {
|
|
|
+ r.setIsFhyq(WhetherStatus.NO.getCode());
|
|
|
}
|
|
|
+// if (StringUtils.equals(lastGs.getGslx(), AnnounceStatus.RES.getCode())) {
|
|
|
+// Map<String, Object> dept = sysDeptJlMapper.selectDeptByParams(lastGs.getCreateUnit());
|
|
|
+// if (ObjectUtils.isNotEmpty(dept)) {
|
|
|
+// if (dept.containsKey(SysDeptJlStatus.ANCESTORS.getCode())) {
|
|
|
+// if (Arrays.asList(dept.get(SysDeptJlStatus.ANCESTORS.getCode()).toString().split(","))
|
|
|
+// .size() >= Arrays.asList(SecurityUtils.getLoginUser().getSysUser().getDept()
|
|
|
+// .getAncestors().split(",")).size()) {
|
|
|
+// r.setIsFhyq(WhetherStatus.YES.getCode());
|
|
|
+// } else {
|
|
|
+// r.setIsFhyq(WhetherStatus.NO.getCode());
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
}
|
|
|
});
|
|
|
return res;
|
|
@@ -531,7 +537,7 @@ public class DjpdSqServiceImpl implements IDjpdSqService
|
|
|
public DjpdSq insertDjpdSq(DjpdSq djpdSq)
|
|
|
{
|
|
|
if (ObjectUtils.isNotEmpty(djpdSqMapper.checkExists(djpdSq))) {
|
|
|
- throw new ServiceException("该机构正在评级流程,请不要重复提交");
|
|
|
+ throw new ServiceException("已经存在评级流程,请不要重复提交");
|
|
|
}
|
|
|
djpdSq.setInstanceId(IdUtils.simpleUUID());
|
|
|
djpdSq.setSzxzqh(djpdSq.getSzxzqhId());
|
|
@@ -576,27 +582,42 @@ public class DjpdSqServiceImpl implements IDjpdSqService
|
|
|
List<String> deptLevel = Arrays.stream(SecurityUtils.getLoginUser().getSysUser().getDept().getAncestors()
|
|
|
.split(",")).collect(Collectors.toList());
|
|
|
if (StringUtils.equals(djpdSq.getSljg(), ExamineStatus.YES.getCode())) {
|
|
|
+ // 审核通过情况下
|
|
|
if (StringUtils.equals(djpdSq.getSqzt(), ApplicationStatus.COUNTY.getCode())) {
|
|
|
- djpdSq.setSqzt(ApplicationStatus.CITY.getCode());
|
|
|
+ // 区县审核
|
|
|
+ if (!StringUtils.equals(djpdSq.getPddj(), EstimationStatus.FOULEVEL.getCode())) {
|
|
|
+ // 一二三级区县审核通过
|
|
|
+ djpdSq.setSqzt(ApplicationStatus.EXA.getCode());
|
|
|
+ } else {
|
|
|
+ // 四级区县审核通过,待市审核
|
|
|
+ djpdSq.setSqzt(ApplicationStatus.CITY.getCode());
|
|
|
+ }
|
|
|
var.put("comment", ApplicationStatus.COUNTY.getCode() + ExamineStatus.YES.getCode() + djpdSq.getSljy());
|
|
|
} else if (StringUtils.equals(djpdSq.getSqzt(), ApplicationStatus.CITY.getCode())) {
|
|
|
+ // 市审核
|
|
|
if (deptLevel.size() > 1) {
|
|
|
+ // 一个简单部门等级check,非市级部门不可进行市审核
|
|
|
throw new ServiceException("越权操作!市级审核需要市级评定委员会");
|
|
|
}
|
|
|
- if (StringUtils.equals(djpdSq.getSqdj(), EstimationStatus.FOULEVEL.getCode())
|
|
|
- || StringUtils.equals(djpdSq.getSqdj(), EstimationStatus.FIVLEVEL.getCode())) {
|
|
|
- djpdSq.setSqzt(ApplicationStatus.PRO.getCode());
|
|
|
- } else {
|
|
|
+ if (StringUtils.equals(djpdSq.getPddj(), EstimationStatus.FOULEVEL.getCode())) {
|
|
|
+ // 四级市审核通过
|
|
|
djpdSq.setSqzt(ApplicationStatus.EXA.getCode());
|
|
|
+ } else {
|
|
|
+ // 五级市审核通过后省审核
|
|
|
+ djpdSq.setSqzt(ApplicationStatus.PRO.getCode());
|
|
|
}
|
|
|
var.put("comment", ApplicationStatus.CITY.getCode() + ExamineStatus.YES.getCode() + djpdSq.getSljy());
|
|
|
} else if (StringUtils.equals(djpdSq.getSqzt(), ApplicationStatus.PRO.getCode())) {
|
|
|
+ // 省审核
|
|
|
if (deptLevel.size() > 0) {
|
|
|
+ // 一个简单部门等级check,非省级级部门不可进行省审核
|
|
|
throw new ServiceException("越权操作!省级审核需要省级评定委员会");
|
|
|
}
|
|
|
+ // 五级省审核通过
|
|
|
djpdSq.setSqzt(ApplicationStatus.EXA.getCode());
|
|
|
var.put("comment", ApplicationStatus.PRO.getCode() + ExamineStatus.YES.getCode() + djpdSq.getSljy());
|
|
|
}
|
|
|
+ // 连接线通过
|
|
|
var.put("pass", ExamineStatus.YES.getCode());
|
|
|
} else {
|
|
|
DjpdSq oldSq = djpdSqMapper.selectById(djpdSq.getId());
|
|
@@ -643,6 +664,13 @@ public class DjpdSqServiceImpl implements IDjpdSqService
|
|
|
if (!SecurityUtils.getUserType().equals("00")) {
|
|
|
throw new ServiceException("越权操作!申请四级或五级需要市级及以上办事窗口");
|
|
|
}
|
|
|
+ List<DjpdSq> oldList = djpdSqMapper.selectCommonDjpdSqByJgId(djpdSq.getJgId());
|
|
|
+ if (oldList.stream().noneMatch(o -> DateUtils.checkDateNow(DateUtils.dateTime(DateUtils.YYYYMMDDHHMMSS, o.getCreateTimeStr()), 1))) {
|
|
|
+ throw new ServiceException("申请四级及以上需要保持三级评定至少一年时间");
|
|
|
+ }
|
|
|
+ if (!SecurityUtils.getUserType().equals("00")) {
|
|
|
+ throw new ServiceException("越权操作!申请四级或五级需要市级及以上办事窗口");
|
|
|
+ }
|
|
|
}
|
|
|
if (ObjectUtils.isNotEmpty(djpdSq)) {
|
|
|
ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("djpd_sq", id);
|