路维修复
This commit is contained in:
parent
b1a4d77020
commit
8fbf461cc4
|
|
@ -257,7 +257,7 @@ public class SalaryAcctManager extends Service {
|
||||||
// 5、查询薪资核算记录所用薪资账套的调薪计薪规则
|
// 5、查询薪资核算记录所用薪资账套的调薪计薪规则
|
||||||
List<SalarySobAdjustRulePO> salarySobAdjustRulePOS = getSalarySobAdjustRuleService(user).listBySalarySobId(salaryAcctRecordPO.getSalarySobId());
|
List<SalarySobAdjustRulePO> salarySobAdjustRulePOS = getSalarySobAdjustRuleService(user).listBySalarySobId(salaryAcctRecordPO.getSalarySobId());
|
||||||
// 6、查询社保福利的所有字段
|
// 6、查询社保福利的所有字段
|
||||||
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns();
|
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns(false);
|
||||||
// 7、查询考勤引用的所有字段
|
// 7、查询考勤引用的所有字段
|
||||||
List<AttendQuoteFieldListDTO> attendQuoteFieldListDTOS = getAttendQuoteFieldService(user).listAll();
|
List<AttendQuoteFieldListDTO> attendQuoteFieldListDTOS = getAttendQuoteFieldService(user).listAll();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ public interface RemoteExcelService {
|
||||||
//
|
//
|
||||||
// ExcelPage<FormulaCategory> categoryList(ExcelPage<FormulaCategory> page, Map<String, Object> extendParam, DataCollectionEmployee employee);
|
// ExcelPage<FormulaCategory> categoryList(ExcelPage<FormulaCategory> page, Map<String, Object> extendParam, DataCollectionEmployee employee);
|
||||||
|
|
||||||
List<FormulaVar> fieldList(String sourceId, Map<String, Object> extendParam);
|
List<FormulaVar> fieldList(String sourceId, Map<String, Object> extendParam, Boolean isImport);
|
||||||
|
|
||||||
List<Map<String,Object>> fieldGroupList(Map<String, Object> extendParam);
|
List<Map<String,Object>> fieldGroupList(Map<String, Object> extendParam);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,7 @@ public interface SIAccountService {
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
Map<String, String> welfareColumns();
|
Map<String, String> welfareColumns(Boolean isImport);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据条件获取所有的核算异常明细
|
* 根据条件获取所有的核算异常明细
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ public class RemoteExcelServiceImpl extends Service implements RemoteExcelServic
|
||||||
// }
|
// }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<FormulaVar> fieldList(String sourceId, Map<String, Object> extendParam) {
|
public List<FormulaVar> fieldList(String sourceId, Map<String, Object> extendParam, Boolean isImport) {
|
||||||
|
|
||||||
List<FormulaVar> vars = new ArrayList<>();
|
List<FormulaVar> vars = new ArrayList<>();
|
||||||
|
|
||||||
|
|
@ -163,7 +163,7 @@ public class RemoteExcelServiceImpl extends Service implements RemoteExcelServic
|
||||||
vars = convert2FormulaVar(OtherDeductionPO.class, referenceEnum.getValue() + "");
|
vars = convert2FormulaVar(OtherDeductionPO.class, referenceEnum.getValue() + "");
|
||||||
break;
|
break;
|
||||||
case WELFARE:
|
case WELFARE:
|
||||||
vars = welfare2FormulaVar(referenceEnum);
|
vars = welfare2FormulaVar(referenceEnum, isImport);
|
||||||
break;
|
break;
|
||||||
case ATTEND:
|
case ATTEND:
|
||||||
vars = attendData2FormulaVar(referenceEnum);
|
vars = attendData2FormulaVar(referenceEnum);
|
||||||
|
|
@ -257,7 +257,7 @@ public class RemoteExcelServiceImpl extends Service implements RemoteExcelServic
|
||||||
result.put(SalaryFormulaReferenceEnum.OTHER_DEDUCTION.getDefaultLabel(),
|
result.put(SalaryFormulaReferenceEnum.OTHER_DEDUCTION.getDefaultLabel(),
|
||||||
convert2FormulaVar(OtherDeductionPO.class, SalaryFormulaReferenceEnum.OTHER_DEDUCTION.getValue() + ""));
|
convert2FormulaVar(OtherDeductionPO.class, SalaryFormulaReferenceEnum.OTHER_DEDUCTION.getValue() + ""));
|
||||||
result.put(SalaryFormulaReferenceEnum.WELFARE.getDefaultLabel(),
|
result.put(SalaryFormulaReferenceEnum.WELFARE.getDefaultLabel(),
|
||||||
welfare2FormulaVar(SalaryFormulaReferenceEnum.WELFARE));
|
welfare2FormulaVar(SalaryFormulaReferenceEnum.WELFARE, false));
|
||||||
result.put(SalaryFormulaReferenceEnum.ATTEND.getDefaultLabel(),
|
result.put(SalaryFormulaReferenceEnum.ATTEND.getDefaultLabel(),
|
||||||
attendData2FormulaVar(SalaryFormulaReferenceEnum.ATTEND));
|
attendData2FormulaVar(SalaryFormulaReferenceEnum.ATTEND));
|
||||||
result.put(SalarySQLReferenceEnum.SALARY_ACCT_EMPLOYEE.getDefaultLabel(),
|
result.put(SalarySQLReferenceEnum.SALARY_ACCT_EMPLOYEE.getDefaultLabel(),
|
||||||
|
|
@ -458,8 +458,8 @@ public class RemoteExcelServiceImpl extends Service implements RemoteExcelServic
|
||||||
return formulaVars;
|
return formulaVars;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<FormulaVar> welfare2FormulaVar(SalaryFormulaReferenceEnum referenceEnum) {
|
private List<FormulaVar> welfare2FormulaVar(SalaryFormulaReferenceEnum referenceEnum, Boolean isImport) {
|
||||||
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns();
|
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns(isImport);
|
||||||
if (MapUtils.isEmpty(welfareColumns)) {
|
if (MapUtils.isEmpty(welfareColumns)) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1183,7 +1183,7 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Map<String, String> welfareColumns() {
|
public Map<String, String> welfareColumns(Boolean isImport) {
|
||||||
List<ICategoryPO> listAll = getICategoryMapper().listAll().stream().filter(f -> f.getIsUse().equals(IsUseEnum.START.getValue())).collect(Collectors.toList());
|
List<ICategoryPO> listAll = getICategoryMapper().listAll().stream().filter(f -> f.getIsUse().equals(IsUseEnum.START.getValue())).collect(Collectors.toList());
|
||||||
List<ICategoryPO> list = new ArrayList<>();
|
List<ICategoryPO> list = new ArrayList<>();
|
||||||
if (CollectionUtils.isNotEmpty(listAll)) {
|
if (CollectionUtils.isNotEmpty(listAll)) {
|
||||||
|
|
@ -1192,8 +1192,106 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
||||||
|
|
||||||
Map<String, String> result = new LinkedHashMap<>();
|
Map<String, String> result = new LinkedHashMap<>();
|
||||||
|
|
||||||
// 获取所有个税扣缴义务人
|
if (isImport != null && isImport.equals(true)) {
|
||||||
List<TaxAgentPO> allTaxAgentList = getTaxAgentService(user).listAll();
|
Map<String, String> commonResult = new LinkedHashMap<>();
|
||||||
|
Map<String, String> repairResult = new LinkedHashMap<>();
|
||||||
|
Map<String, String> balanceResult = new LinkedHashMap<>();
|
||||||
|
Map<String, String> baseResult = new LinkedHashMap<>();
|
||||||
|
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100393, "个人合计"), "perSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100388, "社保个人合计"), "socialPerSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100390, "公积金个人合计"), "fundPerSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100392, "其他福利个人合计"), "otherPerSum");
|
||||||
|
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "个人正常缴纳合计"), "perCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "社保个人正常缴纳合计"), "socialPerCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金个人正常缴纳合计"), "fundPerCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利个人正常缴纳合计"), "otherPerCommonSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "个人补缴合计"), "perRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "社保个人补缴合计"), "socialPerRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金个人补缴合计"), "fundPerRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利个人补缴合计"), "otherPerRepairSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "个人补差合计"), "perBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "社保个人补差合计"), "socialPerBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金个人补差合计"), "fundPerBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利个人补差合计"), "otherPerBalanceSum");
|
||||||
|
|
||||||
|
Map<String, String> categoryIdNameMap = getSICategoryService(user).categoryIdNameMap();
|
||||||
|
list.stream().forEach(item -> {
|
||||||
|
if (Objects.equals(WelfareTypeEnum.SOCIAL_SECURITY.getValue(), item.getWelfareType())) {
|
||||||
|
if (Objects.equals(DataTypeEnum.SYSTEM.getValue(), item.getDataType())) {
|
||||||
|
baseResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "申报基数"), item.getId() + "socialBase");
|
||||||
|
}
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(87159, "个人"), item.getId() + "socialPer");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳个人"), item.getId() + "socialCommonPer");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴个人"), item.getId() + "socialRepairPer");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差个人"), item.getId() + "socialBalancePer");
|
||||||
|
}
|
||||||
|
if (Objects.equals(WelfareTypeEnum.ACCUMULATION_FUND.getValue(), item.getWelfareType())) {
|
||||||
|
if (Objects.equals(DataTypeEnum.SYSTEM.getValue(), item.getDataType())) {
|
||||||
|
baseResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "申报基数"), item.getId() + "fundBase");
|
||||||
|
}
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(87159, "个人"), item.getId() + "fundPer");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳个人"), item.getId() + "fundCommonPer");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴个人"), item.getId() + "fundRepairPer");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差个人"), item.getId() + "fundBalancePer");
|
||||||
|
}
|
||||||
|
if (Objects.equals(WelfareTypeEnum.OTHER.getValue(), item.getWelfareType())) {
|
||||||
|
if (Objects.equals(DataTypeEnum.SYSTEM.getValue(), item.getDataType())) {
|
||||||
|
baseResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "申报基数"), item.getId() + "otherBase");
|
||||||
|
}
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(87159, "个人"), item.getId() + "otherPer");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳个人"), item.getId() + "otherCommonPer");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴个人"), item.getId() + "otherRepairPer");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差个人"), item.getId() + "otherBalancePer");
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100397, "单位合计"), "comSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100394, "社保单位合计"), "socialComSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100395, "公积金单位合计"), "fundComSum");
|
||||||
|
result.put(SalaryI18nUtil.getI18nLabel(100396, "其他福利单位合计"), "otherComSum");
|
||||||
|
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "单位正常缴纳合计"), "comCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "社保单位正常缴纳合计"), "socialComCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金单位正常缴纳合计"), "fundComCommonSum");
|
||||||
|
commonResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利单位正常缴纳合计"), "otherComCommonSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "单位补缴合计"), "comRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "社保单位补缴合计"), "socialComRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金单位补缴合计"), "fundComRepairSum");
|
||||||
|
repairResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利单位补缴合计"), "otherComRepairSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "单位补差合计"), "comBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "社保单位补差合计"), "socialComBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "公积金单位补差合计"), "fundComBalanceSum");
|
||||||
|
balanceResult.put(SalaryI18nUtil.getI18nLabel(0, "其他福利单位补差合计"), "otherComBalanceSum");
|
||||||
|
|
||||||
|
list.stream().forEach(item -> {
|
||||||
|
if (Objects.equals(WelfareTypeEnum.SOCIAL_SECURITY.getValue(), item.getWelfareType())) {
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(100289, "单位"), item.getId() + "socialCom");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳单位"), item.getId() + "socialCommonCom");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴单位"), item.getId() + "socialRepairCom");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差单位"), item.getId() + "socialBalanceCom");
|
||||||
|
}
|
||||||
|
if (Objects.equals(WelfareTypeEnum.ACCUMULATION_FUND.getValue(), item.getWelfareType())) {
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(100289, "单位"), item.getId() + "fundCom");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳单位"), item.getId() + "fundCommonCom");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴单位"), item.getId() + "fundRepairCom");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差单位"), item.getId() + "fundBalanceCom");
|
||||||
|
}
|
||||||
|
if (Objects.equals(WelfareTypeEnum.OTHER.getValue(), item.getWelfareType())) {
|
||||||
|
result.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(100289, "单位"), item.getId() + "otherCom");
|
||||||
|
commonResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "正常缴纳单位"), item.getId() + "otherCommonCom");
|
||||||
|
repairResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补缴单位"), item.getId() + "otherRepairCom");
|
||||||
|
balanceResult.put(categoryIdNameMap.get(String.valueOf(item.getId())) + SalaryI18nUtil.getI18nLabel(0, "补差单位"), item.getId() + "otherBalanceCom");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
result.putAll(baseResult);
|
||||||
|
result.putAll(commonResult);
|
||||||
|
result.putAll(repairResult);
|
||||||
|
result.putAll(balanceResult);
|
||||||
|
return result;
|
||||||
|
} else {
|
||||||
// 获取所有社保方案
|
// 获取所有社保方案
|
||||||
List<InsuranceSchemePO> socialSchemeList = getInsuranceSchemeMapper().listByWelfareType(WelfareTypeEnum.SOCIAL_SECURITY.getValue());
|
List<InsuranceSchemePO> socialSchemeList = getInsuranceSchemeMapper().listByWelfareType(WelfareTypeEnum.SOCIAL_SECURITY.getValue());
|
||||||
List<InsuranceSchemePO> fundSchemeList = getInsuranceSchemeMapper().listByWelfareType(WelfareTypeEnum.ACCUMULATION_FUND.getValue());
|
List<InsuranceSchemePO> fundSchemeList = getInsuranceSchemeMapper().listByWelfareType(WelfareTypeEnum.ACCUMULATION_FUND.getValue());
|
||||||
|
|
@ -1365,6 +1463,9 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
||||||
result.putAll(repairResult);
|
result.putAll(repairResult);
|
||||||
result.putAll(balanceResult);
|
result.putAll(balanceResult);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// for (TaxAgentPO taxAgentPO : allTaxAgentList) {
|
// for (TaxAgentPO taxAgentPO : allTaxAgentList) {
|
||||||
// Map<String, String> commonResult = new LinkedHashMap<>();
|
// Map<String, String> commonResult = new LinkedHashMap<>();
|
||||||
|
|
|
||||||
|
|
@ -817,7 +817,7 @@ public class SalaryAcctResultServiceImpl extends Service implements SalaryAcctRe
|
||||||
// 5、查询薪资核算记录所用薪资账套的调薪计薪规则
|
// 5、查询薪资核算记录所用薪资账套的调薪计薪规则
|
||||||
List<SalarySobAdjustRulePO> salarySobAdjustRulePOS = getSalarySobAdjustRuleService(user).listBySalarySobId(salaryAcctRecordPO.getSalarySobId());
|
List<SalarySobAdjustRulePO> salarySobAdjustRulePOS = getSalarySobAdjustRuleService(user).listBySalarySobId(salaryAcctRecordPO.getSalarySobId());
|
||||||
// 6、查询社保福利的所有字段
|
// 6、查询社保福利的所有字段
|
||||||
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns();
|
Map<String, String> welfareColumns = getSIAccountService(user).welfareColumns(false);
|
||||||
// 7、查询考勤引用的所有字段
|
// 7、查询考勤引用的所有字段
|
||||||
List<AttendQuoteFieldListDTO> attendQuoteFieldListDTOS = getAttendQuoteFieldService(user).listAll();
|
List<AttendQuoteFieldListDTO> attendQuoteFieldListDTOS = getAttendQuoteFieldService(user).listAll();
|
||||||
List<VariableItemPO> variableItemPOS = getVariableItemService(user).listAll();
|
List<VariableItemPO> variableItemPOS = getVariableItemService(user).listAll();
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ public class SalaryFormulaWrapper extends Service {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<FormulaVar> fieldList(SalaryFormulaFieldQueryParam param) {
|
public List<FormulaVar> fieldList(SalaryFormulaFieldQueryParam param) {
|
||||||
return getRemoteExcelService(user).fieldList(param.getSourceId(), param.getExtendParam());
|
return getRemoteExcelService(user).fieldList(param.getSourceId(), param.getExtendParam(), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -113,7 +113,7 @@ public class SalaryFormulaWrapper extends Service {
|
||||||
SalaryFormulaFieldQueryParam param = new SalaryFormulaFieldQueryParam();
|
SalaryFormulaFieldQueryParam param = new SalaryFormulaFieldQueryParam();
|
||||||
param.setSourceId("welfare");
|
param.setSourceId("welfare");
|
||||||
//获取福利类薪资项目
|
//获取福利类薪资项目
|
||||||
List<FormulaVar> list = getRemoteExcelService(user).fieldList(param.getSourceId(), param.getExtendParam());
|
List<FormulaVar> list = getRemoteExcelService(user).fieldList(param.getSourceId(), param.getExtendParam(), true);
|
||||||
list = list.stream().filter(f -> !(f.getName().contains("正常缴纳") || f.getName().contains("补缴") || f.getName().contains("补差") || f.getName().contains("申报基数"))).collect(Collectors.toList());
|
list = list.stream().filter(f -> !(f.getName().contains("正常缴纳") || f.getName().contains("补缴") || f.getName().contains("补差") || f.getName().contains("申报基数"))).collect(Collectors.toList());
|
||||||
//提取出福利类项目名称
|
//提取出福利类项目名称
|
||||||
for (FormulaVar formulaVar : list) {
|
for (FormulaVar formulaVar : list) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue