薪酬系统-福利台账,核算明细导出时企业年金单位数值有误相关问题修复

This commit is contained in:
sy 2023-02-15 09:55:33 +08:00
parent 6792b4c5aa
commit 7da1bfff6b
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ public class SIExportServiceImpl extends Service implements SIExportService {
}
record.put("fundComSum", item.getFundComSum());
if (StringUtils.isNotEmpty(item.getOtherPerJson())) {
Map<String, Object> fundPerJson = JSON.parseObject(item.getOtherPerJson(), new HashMap<String, Object>().getClass());
Map<String, Object> fundPerJson = JSON.parseObject(item.getOtherComJson(), new HashMap<String, Object>().getClass());
if (fundPerJson != null) {
fundPerJson.forEach((k, v) -> {
record.put(k + "otherCom", v);