38ae75d9 刘嘉

菠萝派接口-订单下载,注订单获取实际付款的贷款金额

1 个父辈 3c7d28f4
......@@ -107,6 +107,9 @@ public class PlatformOrderToPineAppleOrderConverter implements Converter<DoingOr
return source.getOrder1s()
.stream()
.map(p -> {
if (p.getDiscountLinePrice() != null) {
return p.getDiscountLinePrice();
}
return p.getLinePrice();
})
.reduce(new BigDecimal(0), (a, b) -> a.add(b))
......