Commit 62bdb65d by tangzhaoqian Committed by chenzg

审批 优化

parent 6eb836f8
......@@ -14,7 +14,7 @@ public class Regular {
* 手机号码
*/
// public static final String PHONE = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(17[013678])|(18[0,5-9]))\\d{8}$";
public static final String PHONE = "^[1]{10}$";
public static final String PHONE = "^[1][0-9]{10}$";
/**
* 账号是否合法
*/
......
......@@ -633,7 +633,7 @@ public class JxglController {
.eq(JxglPerformanceAppraisal::getId, appraisalUpdateSts.getId())
.eq(JxglPerformanceAppraisal::getSts, appraisalUpdateSts.getSts()));
if (performanceAppraisal == null) {
if (performanceAppraisal == null && appraisalUpdateSts.getSts() != PerformanceAppraisalSts.PERFORMANCE_ARCHIVE.getType()) {
return ResultUtil.error("绩效考核不存在");
}
......
......@@ -580,7 +580,7 @@ public class SpmkController {
throw new CustomException("审批汇总-新增异常");
}
// 插入记录
// 插入记录- 审批执行记录 - 执行人记录
RouterUtils.insertogExecuteRecord(listFlowChildren, as.getId());
// 封装 审批详情
......
......@@ -20,7 +20,7 @@ public class AppraisalUpdateSts {
private Integer id;
@NotNull(message = ValidationMsg.NOTNULL)
@ApiModelProperty(value = "状态", example = "")
@ApiModelProperty(value = "状态 0目标制定 1绩效评分 2结果确认 3绩效归档 4终止考核", example = "0")
private Integer sts;
}
......@@ -363,11 +363,15 @@ public class RouterUtils {
Router router;
if (listRouter != null && listRouter.size() == 1) {
router = listRouter.get(0);
if (router.getFlow()) {
FlowChildren fc = FlowChildren.builder().build();
BeanUtil.copyProperties(router, fc, "condition","children");
listFlowChildren.add(fc);
getIsFlowChildren(router.getChildren(), listFlowChildren);
Relation relation = CollectionUtil.getFirst(router.getRelation());
if (relation != null && CollectionUtil.isNotEmpty(relation.getUsers())) {
if (router.getFlow()) {
FlowChildren fc = FlowChildren.builder().build();
BeanUtil.copyProperties(router, fc, "condition","children");
listFlowChildren.add(fc);
getIsFlowChildren(router.getChildren(), listFlowChildren);
}
}
}else if (listRouter != null && listRouter.size() > 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment