mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Fix for SagePay
This commit is contained in:
parent
064072ca06
commit
e4fb7faacc
@ -309,7 +309,12 @@ class BasePaymentDriver
|
|||||||
|
|
||||||
// prepare and process payment
|
// prepare and process payment
|
||||||
$data = $this->paymentDetails($paymentMethod);
|
$data = $this->paymentDetails($paymentMethod);
|
||||||
$items = $this->paymentItems();
|
// TODO move to payment driver class
|
||||||
|
if ($this->isGateway(GATEWAY_SAGE_PAY_DIRECT) || $this->isGateway(GATEWAY_SAGE_PAY_SERVER)) {
|
||||||
|
$items = null;
|
||||||
|
} else {
|
||||||
|
$items = $this->paymentItems();
|
||||||
|
}
|
||||||
$response = $gateway->purchase($data)
|
$response = $gateway->purchase($data)
|
||||||
->setItems($items)
|
->setItems($items)
|
||||||
->send();
|
->send();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user