diff --git a/beike/Shop/Services/PaymentService.php b/beike/Shop/Services/PaymentService.php index af191ec8..43562b96 100644 --- a/beike/Shop/Services/PaymentService.php +++ b/beike/Shop/Services/PaymentService.php @@ -98,7 +98,7 @@ class PaymentService $total = round($this->order->total, 2) * 100; $stripeChargeParameters = array( 'amount' => $total, - 'currency' => 'USD', + 'currency' => $this->order->currency_code, 'metadata' => array( 'orderId' => $this->order->id, ),