Add BANK_TRANSFER to Gateway model

This commit is contained in:
Benjamin Beganović 2021-08-26 15:37:17 +02:00
parent 5641ed96c5
commit 969a76003b

View File

@ -110,7 +110,8 @@ class Gateway extends StaticModel
case 50: case 50:
return [ return [
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], //Braintree GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], //Braintree
GatewayType::PAYPAL => ['refund' => true, 'token_billing' => true] GatewayType::PAYPAL => ['refund' => true, 'token_billing' => true],
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true],
]; ];
break; break;
case 7: case 7: