ec023fdc 刘嘉

菠萝派接口-订单下载,贷款金额获取原始金额

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