mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update: fix switch payment handling fee calc
This commit is contained in:
		| @@ -191,6 +191,7 @@ class OrderController extends Controller | ||||
|         $payment = Payment::find($method); | ||||
|         if (!$payment || $payment->enable !== 1) abort(500, __('Payment method is not available')); | ||||
|         $paymentService = new PaymentService($payment->payment, $payment->id); | ||||
|         $order->handling_amount = NULL; | ||||
|         if ($payment->handling_fee_fixed || $payment->handling_fee_percent) { | ||||
|             $order->handling_amount = round(($order->total_amount * ($payment->handling_fee_percent / 100)) + $payment->handling_fee_fixed); | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user