|
|
@@ -179,6 +179,9 @@ public class ErpProdIODetailServiceImpl implements ErpProdIODetailService {
|
|
|
// 统计发货数量
|
|
|
Double sendQty = details.stream().mapToDouble(ErpProdIODetail::getQty).sum();
|
|
|
group.setSendQty(sendQty);
|
|
|
+ // 统计对账数量
|
|
|
+ Double checkQty = details.stream().mapToDouble(ErpProdIODetail::getThischeckqty).sum();
|
|
|
+ group.setCheckQty(checkQty);
|
|
|
// 明细筛选币别
|
|
|
Set<String> currencySet = details.stream().map(ErpProdIODetail::getCurrency).collect(Collectors.toSet());
|
|
|
// 根据币别统计金额
|