1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Turning on token billing for PayFast

This commit is contained in:
David Bomba 2021-09-23 13:19:06 +10:00
parent c0d7b07f17
commit d2735df1c3

View File

@ -86,12 +86,16 @@ class Token
$body = [
'merchant_id' => $this->payfast->company_gateway->getConfigField('merchantId'),
'merchant_key' => $this->payfast->company_gateway->getConfigField('merchantKey'),
'passphrase' => $this->payfast->company_gateway->getConfigField('passPhrase'),
'return_url' => route('client.payment_methods.index'),
'cancel_url' => route('client.payment_methods.index'),
'notify_url' => $this->payfast->genericWebhookUrl(),
'm_payment_id' => $payment_hash->hash,
'amount' => $amount,
'item_name' => 'purchase',
'm_payment_id' => $payment_hash->hash,
// 'item_description' => ctrans('texts.invoices') . ': ' . collect($payment_hash->invoices())->pluck('invoice_number'),
// 'passphrase' => $this->payfast->company_gateway->getConfigField('passphrase'),
'item_description' => 'Purchase',
'subscription_type' => 1,
'passphrase' => $this->payfast->company_gateway->getConfigField('passphrase'),
];
$header['signature'] = $this->payfast->generateSignature($body);