You need to sign in or sign up before continuing.
Commit a211cf83 authored by fangxinjiang's avatar fangxinjiang

入职确认接收和修改合同优化-fxj

parent a1eee244
...@@ -1899,6 +1899,20 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -1899,6 +1899,20 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
pre.setDispatchInfoFundPreVo(fundsdr.getData().getDispatchInfoPreFundVo()); pre.setDispatchInfoFundPreVo(fundsdr.getData().getDispatchInfoPreFundVo());
} }
} }
// 查询已购买合同明细
List<TContractPreDetail> exitContractInfoList = tContractPreDetailService.list(Wrappers.<TContractPreDetail>query().lambda()
.eq(TContractPreDetail::getRegisterId, id));
if (Common.isNotNull(exitContractInfoList) && !exitContractInfoList.isEmpty()) {
List<TContractPreDetailVo> exitContractInfoListVo = exitContractInfoList.stream()
.map(detail -> {
TContractPreDetailVo vo = new TContractPreDetailVo();
BeanUtils.copyProperties(detail, vo);
return vo;
})
.collect(Collectors.toList());
pre.setExitContractInfoList(exitContractInfoListVo);
}
} }
return pre; return pre;
} }
......
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