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
|
||||
$data = $this->paymentDetails($paymentMethod);
|
||||
// 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)
|
||||
->setItems($items)
|
||||
->send();
|
||||
|
Loading…
x
Reference in New Issue
Block a user