This commit is contained in:
mash 2023-02-24 15:24:53 +08:00
parent a675032257
commit 609ba9cd7d
1 changed files with 3 additions and 0 deletions

View File

@ -251,6 +251,9 @@ public class PersonnelServiceImpl extends BaseService<PersonnelMapper, Personnel
if ("1".equals(per.getAlterationSign())) {
return AjaxResult.fail().msg("该人员修改的资料未审批完成,请联系管理员!");
}
if ("1".equals(per.getChangeAlterationSign())) {
return AjaxResult.fail().msg("该人员在变更中,资料未完成审批,请等待领导审批!");
}
String type = ArgsConst.PERSONNEL;
per.setAlterationSign("1");
boolean update = updateById(per);