人员去重
This commit is contained in:
parent
7f7f4442ca
commit
b59ba320df
|
|
@ -73,6 +73,8 @@ public class SalaryEmployeeServiceImpl extends Service implements SalaryEmployee
|
|||
if (CollectionUtils.isEmpty(includeSalaryEmployees)) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
//去重
|
||||
includeSalaryEmployees = includeSalaryEmployees.stream().distinct().collect(Collectors.toList());
|
||||
// 查询薪资账套的人员范围(从范围中排除)
|
||||
List<SalarySobRangePO> excludeSalarySobRangePOS = getSalarySobRangeService(user).listBySalarySobIdAndIncludeType(salarySobId, NumberUtils.INTEGER_ZERO);
|
||||
if (CollectionUtils.isNotEmpty(excludeSalarySobRangePOS)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue