fix: cart payment/order currency ignored the selected currency

createPayment() and recordOrder() hardcoded currency: 'RUB' regardless
of LanguageService.currentCurrency() (app supports RUB/USD/EUR/AMD).
Widened CartPaymentRequest.currency from a 'RUB' literal to string and
use the actual selected currency in both calls.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
sdarbinyan
2026-08-13 07:39:35 +04:00
parent 4c4417dc1d
commit 4ef5ea2f58
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ export interface QrCreateResponse {
export interface CartPaymentRequest {
amount: number;
currency: 'RUB';
currency: string;
siteuserID: string;
siteorderID: string;
redirectUrl: string;