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

Add SEPA to GoCardlessPaymentDriver

This commit is contained in:
Benjamin Beganović 2021-10-19 18:01:42 +02:00
parent 0e10e71132
commit 84009487a5

View File

@ -37,6 +37,7 @@ class GoCardlessPaymentDriver extends BaseDriver
public static $methods = [ public static $methods = [
GatewayType::BANK_TRANSFER => \App\PaymentDrivers\GoCardless\ACH::class, GatewayType::BANK_TRANSFER => \App\PaymentDrivers\GoCardless\ACH::class,
GatewayType::SEPA => \App\PaymentDrivers\GoCardless\SEPA::class,
]; ];
const SYSTEM_LOG_TYPE = SystemLog::TYPE_GOCARDLESS; const SYSTEM_LOG_TYPE = SystemLog::TYPE_GOCARDLESS;
@ -62,6 +63,10 @@ class GoCardlessPaymentDriver extends BaseDriver
$types[] = GatewayType::BANK_TRANSFER; $types[] = GatewayType::BANK_TRANSFER;
} }
if ($this->client->currency()->code === 'EUR') {
$types[] = GatewayType::SEPA;
}
return $types; return $types;
} }