...
|
...
|
@@ -150,7 +150,7 @@ public abstract class AbsOrderDetailService implements IOrderDetailService{ |
|
|
OrderDetailInfo.PriceInfo priceInfo = OrderDetailInfo.PriceInfo.builder()
|
|
|
.goodPrice(buyerOrderGoods.getGoodsPrice() == null ? "0" : buyerOrderGoods.getGoodsPrice().toPlainString() )
|
|
|
.feePrice(buyerOrder.getShipFee() == null ? "0" : buyerOrder.getShipFee().toPlainString())
|
|
|
.couponCutPrice(buyerOrderGoods.getCouponCutAmount() == null ? "0":buyerOrderGoods.getCouponCutAmount().toPlainString())
|
|
|
.couponCutPrice(buyerOrderGoods.getCouponCutAmount() == null ? "0.00":buyerOrderGoods.getCouponCutAmount().toPlainString())
|
|
|
.realPayPrice(buyerOrder.getAmount() == null ? "0" : buyerOrder.getAmount().toPlainString())
|
|
|
.build();
|
|
|
orderDetailInfo.setPriceInfo(priceInfo);
|
...
|
...
|
|