mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for base driver
This commit is contained in:
parent
becdb7c8c9
commit
812b2450ee
@ -92,8 +92,8 @@ class CreditCard
|
|||||||
'return_url' => route('client.payment_methods.index'),
|
'return_url' => route('client.payment_methods.index'),
|
||||||
'cancel_url' => route('client.payment_methods.index'),
|
'cancel_url' => route('client.payment_methods.index'),
|
||||||
'notify_url' => $this->payfast->genericWebhookUrl(),
|
'notify_url' => $this->payfast->genericWebhookUrl(),
|
||||||
'amount' => 5,
|
|
||||||
'm_payment_id' => $hash,
|
'm_payment_id' => $hash,
|
||||||
|
'amount' => 5,
|
||||||
'item_name' => 'pre-auth',
|
'item_name' => 'pre-auth',
|
||||||
'item_description' => 'Credit Card Pre Authorization',
|
'item_description' => 'Credit Card Pre Authorization',
|
||||||
'subscription_type' => 2,
|
'subscription_type' => 2,
|
||||||
|
@ -12,8 +12,10 @@
|
|||||||
<input type="hidden" name="return_url" value="{{ $return_url }}">
|
<input type="hidden" name="return_url" value="{{ $return_url }}">
|
||||||
<input type="hidden" name="cancel_url" value="{{ $cancel_url }}">
|
<input type="hidden" name="cancel_url" value="{{ $cancel_url }}">
|
||||||
<input type="hidden" name="notify_url" value="{{ $notify_url }}">
|
<input type="hidden" name="notify_url" value="{{ $notify_url }}">
|
||||||
|
<input type="hidden" name="m_payment_id" value="{{ $m_payment_id }}">
|
||||||
<input type="hidden" name="amount" value="{{ $amount }}">
|
<input type="hidden" name="amount" value="{{ $amount }}">
|
||||||
<input type="hidden" name="item_name" value="{{ $item_name }}">
|
<input type="hidden" name="item_name" value="{{ $item_name }}">
|
||||||
|
<input type="hidden" name="item_description" value="{{ $item_description}}">
|
||||||
<input type="hidden" name="subscription_type" value="{{ $subscription_type }}">
|
<input type="hidden" name="subscription_type" value="{{ $subscription_type }}">
|
||||||
<input type="hidden" name="passphrase" value="{{ $passphrase }}">
|
<input type="hidden" name="passphrase" value="{{ $passphrase }}">
|
||||||
<input type="hidden" name="signature" value="{{ $signature }}">
|
<input type="hidden" name="signature" value="{{ $signature }}">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user