Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-06 17:22:52 +04:00
parent 889f289489
commit c0b7ac08fb

View File

@@ -78,11 +78,11 @@ export class LegacyPayPage {
this.loading.set(true); this.loading.set(true);
const body = { const body = {
payment: 'sbp', qrtype: 'QRDynamic',
amount: this.amount(), amount: this.amount(),
currency: 'rub', currency: 'RUB',
id: this.paymentId(), partnerqrID: this.paymentId(),
note: this.note().trim() qrDescription: this.note().trim()
}; };
this.http.post<LegacyPayResponse>(this.LEGACY_API, body).subscribe({ this.http.post<LegacyPayResponse>(this.LEGACY_API, body).subscribe({