|
|
@@ -148,6 +148,8 @@ public class ErpProdIODetailServiceImpl implements ErpProdIODetailService {
|
|
|
setCheckAmount(erpProdIo, enUU, keyword.getCustomerUU(), checkDate, fromDate, endDate);
|
|
|
// 查询已生成的对账单(需进行转换)
|
|
|
List<PurchaseApCheckItemInfo> apCheckList = findApCheckList(enUU, keyword.getCustomerUU(), checkDate, fromDate, endDate, keyword);
|
|
|
+ apCheckList.removeIf(apCheck -> "已作废".equals(apCheck.getApCheck().getCheckStatus())
|
|
|
+ || "不同意".equals(apCheck.getApCheck().getCheckStatus()));
|
|
|
List<ErpProdIODetail> detailList = covertApCheckToErpIo(apCheckList);
|
|
|
erpProdIo.getDetails().addAll(detailList);
|
|
|
}
|