Commit 1c4ef46f authored by fangxinjiang's avatar fangxinjiang

Merge remote-tracking branch 'origin/MVP1.7.9-fxj' into MVP1.7.9-fxj

parents 290ea0ec 9c2b9e6d
...@@ -1478,7 +1478,7 @@ ...@@ -1478,7 +1478,7 @@
FROM t_insurance_detail d FROM t_insurance_detail d
where DELETE_FLAG = 0 where DELETE_FLAG = 0
and (d.BUY_HANDLE_STATUS in (1,2) or (d.BUY_HANDLE_STATUS = 3 and d.IS_EFFECT = 0 and (d.BUY_HANDLE_STATUS in (1,2) or (d.BUY_HANDLE_STATUS = 3 and d.IS_EFFECT = 0
and d.POLICY_EFFECT <![CDATA[ <= ]]> NOW() and d.POLICY_END >= NOW() and d.POLICY_EFFECT <![CDATA[ <= ]]> DATE_ADD(NOW(),INTERVAL 1 DAY) and d.POLICY_END >= NOW()
)) ))
<if test="idCardList != null and idCardList.size > 0"> <if test="idCardList != null and idCardList.size > 0">
......
...@@ -197,6 +197,12 @@ public class TSalaryStandardController { ...@@ -197,6 +197,12 @@ public class TSalaryStandardController {
if (Common.isNotNull(s.getIsCheckRisk()) && CommonConstants.ONE_INT == s.getIsCheckRisk()) { if (Common.isNotNull(s.getIsCheckRisk()) && CommonConstants.ONE_INT == s.getIsCheckRisk()) {
return R.ok(); 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(); YifuUser user = SecurityUtils.getUser();
if (user != null) { if (user != null) {
// 2025-1-14 10:59:37 提交前拦截: // 2025-1-14 10:59:37 提交前拦截:
...@@ -225,7 +231,8 @@ public class TSalaryStandardController { ...@@ -225,7 +231,8 @@ public class TSalaryStandardController {
|| s.getStatus() == SalaryConstants.STATUS[5] || s.getStatus() == SalaryConstants.STATUS[5]
|| s.getStatus() == SalaryConstants.STATUS[6] || s.getStatus() == SalaryConstants.STATUS[6]
|| s.getStatus() == SalaryConstants.STATUS[7]) { || 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("请先校验商险信息!"); 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