|
|
@@ -121,6 +121,9 @@ public class HlgPaymentDetailController {
|
|
|
pageList.getRecords().get(0).setSumTaxFee(sumTaxFee);
|
|
|
pageList.getRecords().get(0).setSumPayment(sumPayment);
|
|
|
}
|
|
|
+ //新加两行代码去掉身份证照片和合同没有的数据
|
|
|
+ list=list.stream().filter(hlgPaymentDetailStatistics1 -> hlgPaymentDetailStatistics1.getWorkContract()!=null && hlgPaymentDetailStatistics1.getIdcardPicture()!=null).collect(Collectors.toList());
|
|
|
+ pageList.setRecords(list);
|
|
|
pageList.setTotal(list.size());
|
|
|
result.setSuccess(true);
|
|
|
result.setResult(pageList);
|