Commit 263094eb authored by fangxinjiang's avatar fangxinjiang

公积金自动化-fxj

parent 62a65621
......@@ -840,7 +840,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
//(公积金待办为在途在保)流程中的公积金数据不能修改
//查已购买公积金明细
if (null != employeeRegistrationPre.getDispatchInfoFundPreVo()
if (null != employeeRegistrationPre.getDispatchInfoFundPreVo()
&& !Common.isEmpty(employeeRegistrationPre.getDispatchInfoFundPreVo().getId())
&& null != employeeRegistrationPre.getDispatchInfoFundPreVo().getFundUpdateFlag()
&& employeeRegistrationPre.getDispatchInfoFundPreVo().getFundUpdateFlag().booleanValue()) {
......
......@@ -637,7 +637,12 @@ public class TEmployeePreLogServiceImpl extends ServiceImpl<TEmployeePreLogMappe
} else {
initFundPreInfo(preVo, preVo.getDispatchInfoFundPreVo(), user, empPreId);
}
socialDaprUtils.saveFundPreInfo(preVo);
//如果页面传承为不修改则不更新数据
if (null != preVo && null != preVo.getDispatchInfoFundPreVo()
&& null != preVo.getDispatchInfoFundPreVo().getFundUpdateFlag()
&& preVo.getDispatchInfoFundPreVo().getFundUpdateFlag().booleanValue()){
socialDaprUtils.saveFundPreInfo(preVo);
}
}
if (!saveOrUpdateList.isEmpty()) {
HttpDaprUtil.invokeMethodPost(daprInsurancesProperties.getAppUrl(), daprInsurancesProperties.getAppId()
......
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