Commit 2710a135 authored by hongguangwu's avatar hongguangwu

MVP1.7.17-离职待办-优化代码

parent aa5c96af
...@@ -336,7 +336,9 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper, ...@@ -336,7 +336,9 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
if (days != null && Common.isNotNull(days)) { if (days != null && Common.isNotNull(days)) {
// 新增逻辑 // 新增逻辑
detail.setExpectedCollectionTime(days.atTime(15, 20)); detail.setExpectedCollectionTime(days.atTime(15, 20));
detail.setPolicyStart(days.plusDays(CommonConstants.ONE_INT)); if (Common.isNotNull(vo.getPolicyStart())) {
detail.setPolicyStart(vo.getPolicyStart().plusDays(CommonConstants.ONE_INT));
}
detail.setPolicyEffect(detail.getPolicyStart()); detail.setPolicyEffect(detail.getPolicyStart());
Integer month = CommonConstants.ONE_INT; Integer month = CommonConstants.ONE_INT;
if (detailVO != null && Common.isNotNull(detailVO.getNum())) { if (detailVO != null && Common.isNotNull(detailVO.getNum())) {
......
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