|
|
@@ -172,8 +172,8 @@ public class AppBookImplService implements AppBookService {
|
|
|
// 满减金额
|
|
|
Double meetPrice = hotelCoupon.getMeetPrice();
|
|
|
BigDecimal meetPriceBigDecimal = new BigDecimal(meetPrice);
|
|
|
-
|
|
|
- if (meetPrice < totalPrice) {
|
|
|
+// 实际金额大于等于满减金额则可以使用
|
|
|
+ if (meetPrice <= totalPrice) {
|
|
|
// 减免金额
|
|
|
Double deductionPrice = hotelCoupon.getDeductionPrice();
|
|
|
BigDecimal deductionPriceBigDecimal = new BigDecimal(deductionPrice);
|