报表支持传账套id
This commit is contained in:
parent
61cf337bde
commit
2fa5dcc384
|
|
@ -25,6 +25,7 @@ public class FsdReportRuleJSONParam {
|
|||
private List<Long> deptids;
|
||||
private List<Long> jobtitleids;
|
||||
private List<Long> subcomids;
|
||||
private List<Long> salarysobids;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1609,6 +1609,9 @@ public class SalaryAcctResultServiceImpl extends Service implements SalaryAcctRe
|
|||
resultMap.put("value", lsValSum.toString());
|
||||
return resultMap;
|
||||
}
|
||||
if (CollectionUtils.isNotEmpty(rule.getSalarysobids())) {
|
||||
salaryAcctEmployeeList = salaryAcctEmployeeList.stream().filter(salaryAcctEmployee -> rule.getSalarysobids().contains(salaryAcctEmployee.getSalarySobId())).collect(Collectors.toList());
|
||||
}
|
||||
if (CollectionUtils.isNotEmpty(rule.getSubcomids())) {
|
||||
salaryAcctEmployeeList = salaryAcctEmployeeList.stream().filter(salaryAcctEmployee -> rule.getSubcomids().contains(salaryAcctEmployee.getSubcompanyId())).collect(Collectors.toList());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue