Commit 33131eb8 authored by hongguangwu's avatar hongguangwu

MVP1.7.9-非工资类型,放开商险购买限制

parent afa5c16d
......@@ -197,6 +197,12 @@ public class TSalaryStandardController {
if (Common.isNotNull(s.getIsCheckRisk()) && CommonConstants.ONE_INT == s.getIsCheckRisk()) {
return R.ok();
}
if (!CommonConstants.ZERO_STRING.equals(s.getFormType())) {
s.setIsCheckRisk(CommonConstants.ONE_INT);
s.setCheckRiskRemark("非工资类型,放开限制");
this.updateById(s);
return R.ok();
}
YifuUser user = SecurityUtils.getUser();
if (user != null) {
// 2025-1-14 10:59:37 提交前拦截:
......@@ -225,7 +231,8 @@ public class TSalaryStandardController {
|| s.getStatus() == SalaryConstants.STATUS[5]
|| s.getStatus() == SalaryConstants.STATUS[6]
|| s.getStatus() == SalaryConstants.STATUS[7]) {
if (Common.isEmpty(s.getIsCheckRisk()) || CommonConstants.ZERO_INT == s.getIsCheckRisk()) {
if (CommonConstants.ZERO_STRING.equals(s.getFormType())
&& (Common.isEmpty(s.getIsCheckRisk()) || CommonConstants.ZERO_INT == s.getIsCheckRisk())) {
return R.failed("请先校验商险信息!");
}
......
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