This commit is contained in:
2025-09-09 10:12:15 +05:00
parent 5b4fa96956
commit c54535e197

View File

@@ -206,11 +206,12 @@ class MakeSberPaymentAction extends Action
$orderNumber = $onlinePaymentRepo->generateOrderNumber($resource);
$amount = '001';
$final_amount = number_format($amount, 2, '', '');
$final_amount = '001';
$paymentResponse = Http::get('https://mpi.gov.tm/payment/rest/register.do', [
'orderNumber' => $orderNumber,
'amount' => number_format($amount, 2, '', ''),
'amount' => $final_amount,
'currency' => 934,
'language' => 'ru',
'userName' => $resource->branch->billing_sber_username,