1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

disable sepa & applepay

This commit is contained in:
Benjamin Beganović 2021-01-27 12:00:42 +01:00
parent e6b6175ee5
commit b11972c369

View File

@ -96,10 +96,10 @@ class StripePaymentDriver extends BaseDriver
$types = [
GatewayType::CREDIT_CARD,
GatewayType::BANK_TRANSFER,
GatewayType::SEPA,
GatewayType::CRYPTO,
GatewayType::ALIPAY,
GatewayType::APPLE_PAY,
// GatewayType::SEPA, // TODO: Missing implementation
// GatewayType::APPLE_PAY, // TODO:: Missing implementation
];
if ($this->company_gateway->getSofortEnabled() && $this->invitation && $this->client() && isset($this->client()->country) && in_array($this->client()->country, ['AUT', 'BEL', 'DEU', 'ITA', 'NLD', 'ESP'])) {