薪酬系统-福利台账,编辑功能带出福利项数据逻辑优化,增加缴纳对象(公司或个人)标志字段
This commit is contained in:
parent
ce8ac2c125
commit
eaa8a45376
|
|
@ -2763,6 +2763,7 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
|||
map.put("title", group.getTitle());
|
||||
map.put("titleSign", getTotalSign(group.getTitle()));
|
||||
map.put("paymentScope", "个人");
|
||||
map.put("paymentScopeSign", "per");
|
||||
map.put("insuranceName", item.getLabel());
|
||||
map.put("insuranceId", insuranceId);
|
||||
map.put("insuranceValue", dataMap.get(domkey[0]));
|
||||
|
|
@ -2775,6 +2776,7 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
|||
map.put("title", group.getTitle());
|
||||
map.put("titleSign", getTotalSign(group.getTitle()));
|
||||
map.put("paymentScope", "公司");
|
||||
map.put("paymentScopeSign", "com");
|
||||
map.put("insuranceName", item.getLabel());
|
||||
map.put("insuranceId", insuranceId);
|
||||
map.put("insuranceValue", dataMap.get(domkey[0]));
|
||||
|
|
|
|||
|
|
@ -163,6 +163,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -173,6 +174,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -193,6 +195,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -203,6 +206,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -223,6 +227,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -233,6 +238,7 @@ public class SIBalanceServiceImpl extends Service implements SIBalanceService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -236,6 +236,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -245,6 +246,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -264,6 +266,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -273,6 +276,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -292,6 +296,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -301,6 +306,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -322,6 +328,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -331,6 +338,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -356,6 +364,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -365,6 +374,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -390,6 +400,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -399,6 +410,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -424,6 +436,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -433,6 +446,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -454,6 +468,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -463,6 +478,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
@ -484,6 +500,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
comMap.put("insuranceId", k);
|
||||
comMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
comMap.put("paymentScope", "公司");
|
||||
comMap.put("paymentScopeSign", "com");
|
||||
resultList.add(comMap);
|
||||
}
|
||||
if (insuranceIdAndScopeList.contains(k + "-" + PaymentScopeEnum.SCOPE_PERSON.getValue())) {
|
||||
|
|
@ -493,6 +510,7 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
|||
perMap.put("insuranceId", k);
|
||||
perMap.put("insuranceName", categoryNameMap.get(Long.valueOf(k)));
|
||||
perMap.put("paymentScope", "个人");
|
||||
perMap.put("paymentScopeSign", "per");
|
||||
resultList.add(perMap);
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue