调整红包使用逻辑

This commit is contained in:
luofei 2024-01-24 18:06:20 +08:00
parent e00c5e1a39
commit d2f3feb307

View File

@ -629,7 +629,7 @@ class StoreOrderCreateRepository extends StoreOrderRepository
if ($consumption_id > 0 && $this->store_consumption_user && $source == 103) {
if ($this->store_consumption_user['type'] == 2 && $order_total_price >= 6) {
if ($this->payType != 'balance') {
throw new \Exception('余额支付时,不能使用抵扣红包');
throw new ValidateException('余额支付时,不能使用抵扣红包');
}
$consumptionTotal = bcdiv($order_total_price, 6, 2);
}