|
@@ -4824,8 +4824,7 @@ public class OrderServiceImpl implements OrderService {
|
|
|
BigDecimal actualPaymentAmount = goodsDetailsDto.getActualPaymentAmount()
|
|
|
.multiply(BigDecimal.valueOf(goodsDetailsDto.getSellVolume()));
|
|
|
// 当前商品最大支持抵扣的金额
|
|
|
- BigDecimal currentSkuMaxDeductionPrice = actualPaymentAmount.multiply(BigDecimal.valueOf(goodsDetailsDto.getSellVolume()))
|
|
|
- .multiply(scoreRatio).setScale(0, BigDecimal.ROUND_FLOOR);
|
|
|
+ BigDecimal currentSkuMaxDeductionPrice = actualPaymentAmount.multiply(scoreRatio).setScale(0, BigDecimal.ROUND_FLOOR);
|
|
|
// 其他活动优惠金额
|
|
|
BigDecimal otherDiscountedPrice = Objects.isNull(goodsDetailsDto.getDiscountedPrice()) ? BigDecimal.ZERO : goodsDetailsDto.getDiscountedPrice();
|
|
|
|