Compare commits
2 Commits
508012c82b
...
344571997f
| Author | SHA1 | Date |
|---|---|---|
|
|
344571997f | |
|
|
25c8479d53 |
|
|
@ -172,7 +172,8 @@ public class SIAComparisonResultServiceImpl extends Service implements SIACompar
|
||||||
List<InsuranceArchivesBaseInfoPO> baseInfoPOList = getInsuranceBaseInfoMapper().listAll();
|
List<InsuranceArchivesBaseInfoPO> baseInfoPOList = getInsuranceBaseInfoMapper().listAll();
|
||||||
List<Long> canAccountIds = baseInfoPOList.stream()
|
List<Long> canAccountIds = baseInfoPOList.stream()
|
||||||
.filter(f->f.getPaymentOrganization().toString().equals(queryParam.getPaymentOrganization())
|
.filter(f->f.getPaymentOrganization().toString().equals(queryParam.getPaymentOrganization())
|
||||||
&& (f.getRunStatus().equals(EmployeeStatusEnum.PAYING.getValue()) || f.getRunStatus().equals(EmployeeStatusEnum.STAY_DEL.getValue())))
|
&& !f.getRunStatus().equals(EmployeeStatusEnum.STAY_ADD.getValue())
|
||||||
|
)
|
||||||
.map(InsuranceArchivesBaseInfoPO::getEmployeeId)
|
.map(InsuranceArchivesBaseInfoPO::getEmployeeId)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
accountExportPOS = accountExportPOS.stream().filter(v -> canAccountIds.contains(v.getEmployeeId())).collect(Collectors.toList());
|
accountExportPOS = accountExportPOS.stream().filter(v -> canAccountIds.contains(v.getEmployeeId())).collect(Collectors.toList());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue