Fix
parent
acb960a952
commit
c6c5bc9b03
|
|
@ -123,7 +123,7 @@ class OrderRefundCommand extends Command
|
|||
|
||||
(new WalletService())->changeBalance(
|
||||
$order->user,
|
||||
$order->total_amount,
|
||||
$log->amount,
|
||||
$log->after_sale_id ? WalletLog::ACTION_ORDER_AFTER_SALE : WalletLog::ACTION_ORDER_CANCELLED,
|
||||
$log->after_sale_id ? '订单-售后退款' : $log->reason,
|
||||
$order
|
||||
|
|
@ -147,7 +147,7 @@ class OrderRefundCommand extends Command
|
|||
|
||||
(new BalanceService())->changeBalance(
|
||||
$order->user,
|
||||
$order->total_amount,
|
||||
$log->amount,
|
||||
$log->after_sale_id ? BalanceLog::ACTION_ORDER_AFTER_SALE : BalanceLog::ACTION_ORDER_CANCELLED,
|
||||
$log->after_sale_id ? '订单-售后退款' : $log->reason,
|
||||
$order
|
||||
|
|
|
|||
Loading…
Reference in New Issue