Commit f4462039 authored by fangxinjiang's avatar fangxinjiang

Merge remote-tracking branch 'origin/MVP1.7.21' into MVP1.7.21

parents 9788c3db 582ae4fa
......@@ -552,9 +552,12 @@ public class DoJointInsuranceTask {
**/
@Async
public void updateEmpInfp(List<TInsuranceDetail> sourceList, String status) {
if (sourceList == null || sourceList.isEmpty()) {
return;
}
EmpStatusVo empStatusVo = new EmpStatusVo();
EmpIdCardAndDeptVo empIdCardAndDeptVo;
List<EmpIdCardAndDeptVo> voList = new ArrayList<>();
List<EmpIdCardAndDeptVo> voList = new ArrayList<>(sourceList.size());
for (TInsuranceDetail d : sourceList) {
empIdCardAndDeptVo = new EmpIdCardAndDeptVo();
empIdCardAndDeptVo.setIdCard(d.getEmpIdcardNo());
......@@ -575,6 +578,9 @@ public class DoJointInsuranceTask {
**/
@Async
public void pushEstime(List<TInsuranceDetail> successList) {
if (successList == null || successList.isEmpty()) {
return;
}
//根据结算类型是合并结算,推送预估保费到ekp(上面已经算好,这里直接判断有预估保费的就推送)
for (TInsuranceDetail tInsuranceDetail : successList) {
//如果是合并计算或见费出单则推送至EKP
......
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