diff --git a/.github/workflows/icons.yml b/.github/workflows/icons.yml
index aad12a079..d71cf4adc 100644
--- a/.github/workflows/icons.yml
+++ b/.github/workflows/icons.yml
@@ -22,7 +22,7 @@ jobs:
- name: Copy payment method icons
run: |
cd "${{ github.workspace }}/Media/Payment methods/SVG/"
- rm -f ideal-qr.svg knaken.svg paylink.svg paybybank.svg pos-nfc.svg
+ rm -f ideal-qr.svg knaken.svg paylink.svg paybybank.svg pos-nfc.svg giropay.svg sofort.svg
cd ${{ github.workspace }}/Media
cp -R "Payment methods/SVG/." ${{ github.workspace }}/view/base/web/images/svg/
- name: Copy creditcards icons
@@ -35,7 +35,7 @@ jobs:
rm -f vvvlekkerweg.svg vvvshopchill.svg
cd ${{ github.workspace }}/Media
cp -R "Giftcards/SVG/." ${{ github.workspace }}/view/base/web/images/giftcards/
-
+
- name: Copy payment issuers icons
run: |
cd Media
diff --git a/Block/Info.php b/Block/Info.php
index b76f5194e..9d9be2a52 100644
--- a/Block/Info.php
+++ b/Block/Info.php
@@ -106,7 +106,6 @@ public function getPaymentLogo(string $method): string
"mrcash" => "svg/bancontact.svg",
"p24" => "svg/przelewy24.svg",
"sepadirectdebit" => "svg/sepa-directdebit.svg",
- "sofortbanking" => "svg/sofort.svg",
"emandate" => "emandate.png",
"pospayment" => "pos.png",
"transfer" => "svg/sepa-credittransfer.svg",
diff --git a/Block/Widget/Button/Toolbar.php b/Block/Widget/Button/Toolbar.php
index 708ee16d6..f2d28fbb8 100644
--- a/Block/Widget/Button/Toolbar.php
+++ b/Block/Widget/Button/Toolbar.php
@@ -44,7 +44,6 @@ class Toolbar
'buckaroo_magento2_paypal',
'buckaroo_magento2_payconiq',
'buckaroo_magento2_sepadirectdebit',
- 'buckaroo_magento2_sofortbanking',
'buckaroo_magento2_belfius',
'buckaroo_magento2_transfer',
'buckaroo_magento2_eps',
diff --git a/Controller/Redirect/Process.php b/Controller/Redirect/Process.php
index a78c6f241..92d9b0dba 100755
--- a/Controller/Redirect/Process.php
+++ b/Controller/Redirect/Process.php
@@ -346,9 +346,7 @@ private function redirectProcess() {
}
$pendingCode = $this->helper->getStatusCode('BUCKAROO_MAGENTO2_STATUSCODE_PENDING_PROCESSING');
- if (($statusCode == $pendingCode)
- && !$this->hasPostData('brq_payment_method', 'sofortueberweisung')
- ) {
+ if ($statusCode == $pendingCode) {
$this->addErrorMessage(
__(
'Unfortunately an error occurred while processing your payment.' .
diff --git a/Helper/Data.php b/Helper/Data.php
index 3b5ff508d..2b3de3220 100644
--- a/Helper/Data.php
+++ b/Helper/Data.php
@@ -435,7 +435,6 @@ public function getPaymentMethodsList()
['value' => 'payperemail', 'label' => __('PayPerEmail')],
['value' => 'pospayment', 'label' => __('Point of Sale')],
['value' => 'sepadirectdebit', 'label' => __('SEPA direct debit')],
- ['value' => 'sofortbanking', 'label' => __('SOFORT')],
['value' => 'belfius', 'label' => __('Belfius')],
['value' => 'transfer', 'label' => __('Bank Transfer')],
['value' => 'trustly', 'label' => __('Trustly')],
diff --git a/Model/Config/Source/PaymentMethods/AfterExpiry.php b/Model/Config/Source/PaymentMethods/AfterExpiry.php
index ab15b983c..623fa1b76 100644
--- a/Model/Config/Source/PaymentMethods/AfterExpiry.php
+++ b/Model/Config/Source/PaymentMethods/AfterExpiry.php
@@ -44,7 +44,6 @@ public function toOptionArray()
['value' => 'nexi', 'label' => __('Nexi')],
['value' => 'postepay', 'label' => __('PostePay')],
['value' => 'paypal', 'label' => __('PayPal')],
- ['value' => 'sofortueberweisung', 'label' => __('Sofort Banking')],
['value' => 'belfius', 'label' => __('Belfius')],
['value' => 'visa', 'label' => __('Visa')],
['value' => 'visaelectron', 'label' => __('Visa Electron')],
diff --git a/Model/Config/Source/PaymentMethods/PayLink.php b/Model/Config/Source/PaymentMethods/PayLink.php
index 8c558c2be..1f615f65a 100644
--- a/Model/Config/Source/PaymentMethods/PayLink.php
+++ b/Model/Config/Source/PaymentMethods/PayLink.php
@@ -44,7 +44,6 @@ public function toOptionArray()
['value' => 'mastercard', 'label' => __('Mastercard')],
['value' => 'paypal', 'label' => __('PayPal')],
['value' => 'sepadirectdebit', 'label' => __('SEPA Direct Debit')],
- ['value' => 'sofortueberweisung', 'label' => __('Sofort Banking')],
['value' => 'belfius', 'label' => __('Belfius')],
['value' => 'visa', 'label' => __('Visa')],
['value' => 'visaelectron', 'label' => __('Visa Electron')],
diff --git a/Model/Config/Source/PaymentMethods/PayPerEmail.php b/Model/Config/Source/PaymentMethods/PayPerEmail.php
index 8f65f5351..ebd092174 100644
--- a/Model/Config/Source/PaymentMethods/PayPerEmail.php
+++ b/Model/Config/Source/PaymentMethods/PayPerEmail.php
@@ -100,11 +100,6 @@ public function toOptionArray()
'label' => __('SEPA Direct Debit'),
'code' => 'buckaroo_magento2_sepadirectdebit'
],
- [
- 'value' => 'sofortueberweisung',
- 'label' => __('Sofort Banking'),
- 'code' => 'buckaroo_magento2_sofortbanking'
- ],
[
'value' => 'belfius',
'label' => __('Belfius'),
diff --git a/Model/ConfigProvider/Method/Sofortbanking.php b/Model/ConfigProvider/Method/Sofortbanking.php
deleted file mode 100644
index 975c0d0d0..000000000
--- a/Model/ConfigProvider/Method/Sofortbanking.php
+++ /dev/null
@@ -1,81 +0,0 @@
-getBuckarooPaymentFeeLabel(
- \Buckaroo\Magento2\Model\Method\Sofortbanking::PAYMENT_METHOD_CODE
- );
-
- return [
- 'payment' => [
- 'buckaroo' => [
- 'sofortbanking' => [
- 'paymentFeeLabel' => $paymentFeeLabel,
- 'subtext' => $this->getSubtext(),
- 'subtext_style' => $this->getSubtextStyle(),
- 'subtext_color' => $this->getSubtextColor(),
- 'allowedCurrencies' => $this->getAllowedCurrencies(),
- ],
- ],
- ],
- ];
- }
-
- /**
- * @param null|int $storeId
- *
- * @return float
- */
- public function getPaymentFee($storeId = null)
- {
- $paymentFee = $this->scopeConfig->getValue(
- self::XPATH_SOFORTBANKING_PAYMENT_FEE,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE,
- $storeId
- );
-
- return $paymentFee ? $paymentFee : false;
- }
-}
diff --git a/Model/Method/Sofortbanking.php b/Model/Method/Sofortbanking.php
deleted file mode 100644
index 1a2d32b82..000000000
--- a/Model/Method/Sofortbanking.php
+++ /dev/null
@@ -1,98 +0,0 @@
-transactionBuilderFactory->get('order');
-
- $services = [
- 'Name' => 'Sofortueberweisung',
- 'Action' => 'Pay',
- 'Version' => 1,
- ];
-
- /**
- * @noinspection PhpUndefinedMethodInspection
- */
- $transactionBuilder->setOrder($payment->getOrder())
- ->setServices($services)
- ->setMethod('TransactionRequest');
-
- return $transactionBuilder;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getCaptureTransactionBuilder($payment)
- {
- return false;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getAuthorizeTransactionBuilder($payment)
- {
- return false;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getVoidTransactionBuilder($payment)
- {
- return true;
- }
-
- /**
- * @param \Magento\Sales\Api\Data\OrderPaymentInterface|\Magento\Payment\Model\InfoInterface $payment
- *
- * @return bool|string
- */
- public function getPaymentMethodName($payment)
- {
- return 'sofortueberweisung';
- }
-}
diff --git a/Model/Push.php b/Model/Push.php
index 396a8b360..2beb5cf63 100644
--- a/Model/Push.php
+++ b/Model/Push.php
@@ -39,7 +39,6 @@
use Buckaroo\Magento2\Model\Method\Paypal;
use Buckaroo\Magento2\Model\Method\PayPerEmail;
use Buckaroo\Magento2\Model\Method\SepaDirectDebit;
-use Buckaroo\Magento2\Model\Method\Sofortbanking;
use Buckaroo\Magento2\Model\Method\Transfer;
use Buckaroo\Magento2\Model\Method\Voucher;
use Buckaroo\Magento2\Model\Refund\Push as RefundPush;
@@ -1610,7 +1609,6 @@ public function processPendingPaymentPush($newStatus, $message)
if (!$this->order->getEmailSent()
&& in_array($payment->getMethod(), [Transfer::PAYMENT_METHOD_CODE,
SepaDirectDebit::PAYMENT_METHOD_CODE,
- Sofortbanking::PAYMENT_METHOD_CODE,
PayPerEmail::PAYMENT_METHOD_CODE,
])
&& ($this->configAccount->getOrderConfirmationEmail($store)
diff --git a/Test/Fixtures/buckaroo-magento2-fixture.sql b/Test/Fixtures/buckaroo-magento2-fixture.sql
index cc45c782f..1232d7416 100644
--- a/Test/Fixtures/buckaroo-magento2-fixture.sql
+++ b/Test/Fixtures/buckaroo-magento2-fixture.sql
@@ -105,7 +105,7 @@ CREATE TABLE `admin_user` (
LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
-INSERT INTO `admin_user` VALUES (1,'a','a','support@buckaroo.nl','a','e4a2e09527334efad0ab5ac95c7848a25a38606e1540988479753571af429512:ehfP8C4APW1COFJ3Tqwdiw0U7flaLPtY:1','2015-12-08 10:48:47','2016-01-20 10:20:32','2016-01-20 10:20:32',28,0,1,'a:1:{s:11:\"configState\";a:164:{s:44:\"payment_us_buckaroo_magento2_section_buckaroo_magento2\";s:1:\"1\";s:38:\"payment_us_braintree_section_braintree\";s:1:\"0\";s:18:\"payment_us_checkmo\";s:1:\"0\";s:25:\"payment_us_cashondelivery\";s:1:\"0\";s:23:\"payment_us_banktransfer\";s:1:\"0\";s:15:\"payment_us_free\";s:1:\"0\";s:24:\"payment_us_purchaseorder\";s:1:\"0\";s:34:\"payment_us_authorizenet_directpost\";s:1:\"0\";s:18:\"payment_us_account\";s:1:\"1\";s:31:\"payment_us_buckaroo_magento2_section\";s:1:\"1\";s:28:\"payment_us_braintree_section\";s:1:\"0\";s:57:\"payment_us_braintree_section_braintree_braintree_required\";s:1:\"1\";s:57:\"payment_us_braintree_section_braintree_braintree_advanced\";s:1:\"0\";s:65:\"payment_us_braintree_section_braintree_braintree_country_specific\";s:1:\"0\";s:55:\"payment_us_braintree_section_braintree_braintree_paypal\";s:1:\"0\";s:57:\"payment_us_braintree_section_braintree_braintree_3dsecure\";s:1:\"0\";s:31:\"payment_us_braintreetwo_section\";s:1:\"0\";s:44:\"payment_us_braintreetwo_section_braintreetwo\";s:1:\"0\";s:66:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_required\";s:1:\"1\";s:66:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_advanced\";s:1:\"0\";s:74:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_country_specific\";s:1:\"0\";s:34:\"payment_us_paypal_group_all_in_one\";s:1:\"0\";s:51:\"payment_us_paypal_group_all_in_one_payflow_advanced\";s:1:\"0\";s:69:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings\";s:1:\"1\";s:87:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_payments_advanced\";s:1:\"1\";s:92:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_homepage\";s:1:\"0\";s:127:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_categorypage\";s:1:\"0\";s:126:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_productpage\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_checkout\";s:1:\"0\";s:78:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced\";s:1:\"1\";s:114:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced\";s:1:\"0\";s:132:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced_settlement_report\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced_frontend\";s:1:\"0\";s:77:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_express_checkout\";s:1:\"1\";s:112:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_express_checkout_settings_express_checkout_advanced\";s:1:\"0\";s:43:\"payment_us_paypal_group_all_in_one_wpp_usuk\";s:1:\"0\";s:67:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required\";s:1:\"1\";s:95:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_api_settings\";s:1:\"1\";s:96:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_homepage\";s:1:\"0\";s:137:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_categorypage\";s:1:\"0\";s:136:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_productpage\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_checkout\";s:1:\"0\";s:67:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow\";s:1:\"1\";s:100:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced\";s:1:\"0\";s:125:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_avs_check\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_settlement_report\";s:1:\"0\";s:124:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_frontend\";s:1:\"0\";s:75:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_express_checkout\";s:1:\"1\";s:116:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_express_checkout_paypal_payflow_express_checkout_advanced\";s:1:\"0\";s:46:\"payment_us_paypal_group_all_in_one_wps_express\";s:1:\"0\";s:72:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required\";s:1:\"1\";s:115:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_express_checkout_required_express_checkout\";s:1:\"1\";s:86:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml\";s:1:\"0\";s:108:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_homepage\";s:1:\"0\";s:112:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_categorypage\";s:1:\"0\";s:111:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_productpage\";s:1:\"0\";s:108:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_checkout\";s:1:\"0\";s:58:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec\";s:1:\"1\";s:79:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced\";s:1:\"0\";s:114:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_billing_agreement\";s:1:\"0\";s:114:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_settlement_report\";s:1:\"0\";s:105:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_frontend\";s:1:\"0\";s:34:\"payment_us_paypal_payment_gateways\";s:1:\"0\";s:74:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout\";s:1:\"0\";s:98:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required\";s:1:\"1\";s:126:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_api_settings\";s:1:\"1\";s:127:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_homepage\";s:1:\"0\";s:168:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_categorypage\";s:1:\"0\";s:167:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_productpage\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_checkout\";s:1:\"0\";s:98:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow\";s:1:\"1\";s:131:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced\";s:1:\"1\";s:156:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_avs_check\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_settlement_report\";s:1:\"0\";s:155:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_frontend\";s:1:\"0\";s:106:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_express_checkout\";s:1:\"1\";s:147:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_express_checkout_paypal_payflow_express_checkout_advanced\";s:1:\"0\";s:50:\"payment_us_paypal_payment_gateways_payflow_link_us\";s:1:\"0\";s:72:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required\";s:1:\"1\";s:98:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_payflow_link\";s:1:\"1\";s:99:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml\";s:1:\"1\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_homepage\";s:1:\"0\";s:138:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_categorypage\";s:1:\"0\";s:137:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_productpage\";s:1:\"0\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_checkout\";s:1:\"0\";s:72:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link\";s:1:\"1\";s:103:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced\";s:1:\"1\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced_payflow_link_settlement_report\";s:1:\"0\";s:125:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced_payflow_link_frontend\";s:1:\"0\";s:89:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_express_checkout\";s:1:\"1\";s:137:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_express_checkout_settings_payflow_link_express_checkout_advanced\";s:1:\"1\";s:45:\"payment_us_paypal_alternative_payment_methods\";s:1:\"0\";s:65:\"payment_us_paypal_alternative_payment_methods_express_checkout_us\";s:1:\"0\";s:91:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required\";s:1:\"1\";s:134:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_express_checkout_required_express_checkout\";s:1:\"1\";s:105:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml\";s:1:\"1\";s:127:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_homepage\";s:1:\"1\";s:131:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_categorypage\";s:1:\"1\";s:130:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_productpage\";s:1:\"1\";s:127:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_checkout\";s:1:\"1\";s:77:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec\";s:1:\"1\";s:98:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced\";s:1:\"1\";s:133:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_billing_agreement\";s:1:\"1\";s:133:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_settlement_report\";s:1:\"1\";s:124:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_frontend\";s:1:\"1\";s:25:\"general_single_store_mode\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:14:\"general_region\";s:1:\"1\";s:15:\"general_country\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_account_section\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_payment_section\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_support_section\";s:1:\"1\";s:63:\"buckaroo_magento2_buckaroo_magento2_account_section_buckaroo_magento2_advanced\";s:1:\"1\";s:60:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_ideal\";s:1:\"1\";s:82:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_ideal_buckaroo_magento2_advanced\";s:1:\"1\";s:66:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcards\";s:1:\"0\";s:88:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcards_buckaroo_magento2_advanced\";s:1:\"0\";s:61:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_paypal\";s:1:\"0\";s:83:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_paypal_buckaroo_magento2_advanced\";s:1:\"1\";s:68:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bank_transfer\";s:1:\"0\";s:90:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bank_transfer_buckaroo_magento2_advanced\";s:1:\"0\";s:66:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_directdebit\";s:1:\"0\";s:88:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_directdebit_buckaroo_magento2_advanced\";s:1:\"0\";s:71:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bancontactmrcash\";s:1:\"0\";s:93:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bancontactmrcash_buckaroo_magento2_advanced\";s:1:\"0\";s:65:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcard\";s:1:\"0\";s:87:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcard_buckaroo_magento2_advanced\";s:1:\"1\";s:63:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_transfer\";s:1:\"0\";s:85:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_transfer_buckaroo_magento2_advanced\";s:1:\"1\";s:70:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sepadirectdebit\";s:1:\"0\";s:92:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sepadirectdebit_buckaroo_magento2_advanced\";s:1:\"1\";s:61:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_mrcash\";s:1:\"0\";s:83:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_mrcash_buckaroo_magento2_advanced\";s:1:\"1\";s:68:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sofortbanking\";s:1:\"0\";s:90:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sofortbanking_buckaroo_magento2_advanced\";s:1:\"0\";s:62:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_giropay\";s:1:\"0\";s:84:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_giropay_buckaroo_magento2_advanced\";s:1:\"0\";s:40:\"buckaroo_magento2_buckaroo_magento2_refund_section\";s:1:\"0\";s:14:\"admin_security\";s:1:\"1\";s:15:\"admin_dashboard\";s:1:\"1\";s:13:\"admin_captcha\";s:1:\"1\";s:9:\"admin_url\";s:1:\"1\";s:13:\"admin_startup\";s:1:\"1\";s:12:\"admin_emails\";s:1:\"1\";s:34:\"system_media_storage_configuration\";s:1:\"0\";s:11:\"system_smtp\";s:1:\"0\";s:11:\"system_cron\";s:1:\"0\";s:19:\"system_cron_default\";s:1:\"0\";s:12:\"dev_restrict\";s:1:\"1\";s:34:\"dev_front_end_development_workflow\";s:1:\"0\";s:9:\"dev_debug\";s:1:\"0\";s:12:\"dev_template\";s:1:\"0\";s:20:\"dev_translate_inline\";s:1:\"0\";s:6:\"dev_js\";s:1:\"0\";s:7:\"dev_css\";s:1:\"0\";s:9:\"dev_image\";s:1:\"0\";s:10:\"dev_static\";s:1:\"0\";s:8:\"dev_grid\";s:1:\"0\";s:15:\"tax_calculation\";s:1:\"1\";s:12:\"tax_defaults\";s:1:\"0\";}}',NULL,NULL,'en_US',0,NULL,NULL);
+INSERT INTO `admin_user` VALUES (1,'a','a','support@buckaroo.nl','a','e4a2e09527334efad0ab5ac95c7848a25a38606e1540988479753571af429512:ehfP8C4APW1COFJ3Tqwdiw0U7flaLPtY:1','2015-12-08 10:48:47','2016-01-20 10:20:32','2016-01-20 10:20:32',28,0,1,'a:1:{s:11:\"configState\";a:164:{s:44:\"payment_us_buckaroo_magento2_section_buckaroo_magento2\";s:1:\"1\";s:38:\"payment_us_braintree_section_braintree\";s:1:\"0\";s:18:\"payment_us_checkmo\";s:1:\"0\";s:25:\"payment_us_cashondelivery\";s:1:\"0\";s:23:\"payment_us_banktransfer\";s:1:\"0\";s:15:\"payment_us_free\";s:1:\"0\";s:24:\"payment_us_purchaseorder\";s:1:\"0\";s:34:\"payment_us_authorizenet_directpost\";s:1:\"0\";s:18:\"payment_us_account\";s:1:\"1\";s:31:\"payment_us_buckaroo_magento2_section\";s:1:\"1\";s:28:\"payment_us_braintree_section\";s:1:\"0\";s:57:\"payment_us_braintree_section_braintree_braintree_required\";s:1:\"1\";s:57:\"payment_us_braintree_section_braintree_braintree_advanced\";s:1:\"0\";s:65:\"payment_us_braintree_section_braintree_braintree_country_specific\";s:1:\"0\";s:55:\"payment_us_braintree_section_braintree_braintree_paypal\";s:1:\"0\";s:57:\"payment_us_braintree_section_braintree_braintree_3dsecure\";s:1:\"0\";s:31:\"payment_us_braintreetwo_section\";s:1:\"0\";s:44:\"payment_us_braintreetwo_section_braintreetwo\";s:1:\"0\";s:66:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_required\";s:1:\"1\";s:66:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_advanced\";s:1:\"0\";s:74:\"payment_us_braintreetwo_section_braintreetwo_braintreetwo_country_specific\";s:1:\"0\";s:34:\"payment_us_paypal_group_all_in_one\";s:1:\"0\";s:51:\"payment_us_paypal_group_all_in_one_payflow_advanced\";s:1:\"0\";s:69:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings\";s:1:\"1\";s:87:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_payments_advanced\";s:1:\"1\";s:92:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_homepage\";s:1:\"0\";s:127:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_categorypage\";s:1:\"0\";s:126:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_productpage\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_required_settings_advanced_advertise_bml_advanced_settings_bml_checkout\";s:1:\"0\";s:78:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced\";s:1:\"1\";s:114:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced\";s:1:\"0\";s:132:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced_settlement_report\";s:1:\"0\";s:123:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_payments_advanced_settings_payments_advanced_advanced_frontend\";s:1:\"0\";s:77:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_express_checkout\";s:1:\"1\";s:112:\"payment_us_paypal_group_all_in_one_payflow_advanced_settings_express_checkout_settings_express_checkout_advanced\";s:1:\"0\";s:43:\"payment_us_paypal_group_all_in_one_wpp_usuk\";s:1:\"0\";s:67:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required\";s:1:\"1\";s:95:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_api_settings\";s:1:\"1\";s:96:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_homepage\";s:1:\"0\";s:137:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_categorypage\";s:1:\"0\";s:136:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_productpage\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_checkout\";s:1:\"0\";s:67:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow\";s:1:\"1\";s:100:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced\";s:1:\"0\";s:125:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_avs_check\";s:1:\"0\";s:133:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_settlement_report\";s:1:\"0\";s:124:\"payment_us_paypal_group_all_in_one_wpp_usuk_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_frontend\";s:1:\"0\";s:75:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_express_checkout\";s:1:\"1\";s:116:\"payment_us_paypal_group_all_in_one_wpp_usuk_paypal_payflow_express_checkout_paypal_payflow_express_checkout_advanced\";s:1:\"0\";s:46:\"payment_us_paypal_group_all_in_one_wps_express\";s:1:\"0\";s:72:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required\";s:1:\"1\";s:115:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_express_checkout_required_express_checkout\";s:1:\"1\";s:86:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml\";s:1:\"0\";s:108:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_homepage\";s:1:\"0\";s:112:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_categorypage\";s:1:\"0\";s:111:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_productpage\";s:1:\"0\";s:108:\"payment_us_paypal_group_all_in_one_wps_express_express_checkout_required_advertise_bml_settings_bml_checkout\";s:1:\"0\";s:58:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec\";s:1:\"1\";s:79:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced\";s:1:\"0\";s:114:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_billing_agreement\";s:1:\"0\";s:114:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_settlement_report\";s:1:\"0\";s:105:\"payment_us_paypal_group_all_in_one_wps_express_settings_ec_settings_ec_advanced_express_checkout_frontend\";s:1:\"0\";s:34:\"payment_us_paypal_payment_gateways\";s:1:\"0\";s:74:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout\";s:1:\"0\";s:98:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required\";s:1:\"1\";s:126:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_api_settings\";s:1:\"1\";s:127:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_homepage\";s:1:\"0\";s:168:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_categorypage\";s:1:\"0\";s:167:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_productpage\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_required_paypal_payflow_advertise_bml_paypal_payflow_settings_bml_checkout\";s:1:\"0\";s:98:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow\";s:1:\"1\";s:131:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced\";s:1:\"1\";s:156:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_avs_check\";s:1:\"0\";s:164:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_settlement_report\";s:1:\"0\";s:155:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_settings_paypal_payflow_settings_paypal_payflow_advanced_paypal_payflow_frontend\";s:1:\"0\";s:106:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_express_checkout\";s:1:\"1\";s:147:\"payment_us_paypal_payment_gateways_paypal_payflowpro_with_express_checkout_paypal_payflow_express_checkout_paypal_payflow_express_checkout_advanced\";s:1:\"0\";s:50:\"payment_us_paypal_payment_gateways_payflow_link_us\";s:1:\"0\";s:72:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required\";s:1:\"1\";s:98:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_payflow_link\";s:1:\"1\";s:99:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml\";s:1:\"1\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_homepage\";s:1:\"0\";s:138:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_categorypage\";s:1:\"0\";s:137:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_productpage\";s:1:\"0\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_payflow_link_required_payflow_link_advertise_bml_payflow_link_settings_bml_checkout\";s:1:\"0\";s:72:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link\";s:1:\"1\";s:103:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced\";s:1:\"1\";s:134:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced_payflow_link_settlement_report\";s:1:\"0\";s:125:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_settings_payflow_link_advanced_payflow_link_frontend\";s:1:\"0\";s:89:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_express_checkout\";s:1:\"1\";s:137:\"payment_us_paypal_payment_gateways_payflow_link_us_settings_payflow_link_express_checkout_settings_payflow_link_express_checkout_advanced\";s:1:\"1\";s:45:\"payment_us_paypal_alternative_payment_methods\";s:1:\"0\";s:65:\"payment_us_paypal_alternative_payment_methods_express_checkout_us\";s:1:\"0\";s:91:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required\";s:1:\"1\";s:134:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_express_checkout_required_express_checkout\";s:1:\"1\";s:105:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml\";s:1:\"1\";s:127:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_homepage\";s:1:\"1\";s:131:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_categorypage\";s:1:\"1\";s:130:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_productpage\";s:1:\"1\";s:127:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_express_checkout_required_advertise_bml_settings_bml_checkout\";s:1:\"1\";s:77:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec\";s:1:\"1\";s:98:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced\";s:1:\"1\";s:133:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_billing_agreement\";s:1:\"1\";s:133:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_settlement_report\";s:1:\"1\";s:124:\"payment_us_paypal_alternative_payment_methods_express_checkout_us_settings_ec_settings_ec_advanced_express_checkout_frontend\";s:1:\"1\";s:25:\"general_single_store_mode\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:14:\"general_region\";s:1:\"1\";s:15:\"general_country\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_account_section\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_payment_section\";s:1:\"1\";s:41:\"buckaroo_magento2_buckaroo_magento2_support_section\";s:1:\"1\";s:63:\"buckaroo_magento2_buckaroo_magento2_account_section_buckaroo_magento2_advanced\";s:1:\"1\";s:60:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_ideal\";s:1:\"1\";s:82:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_ideal_buckaroo_magento2_advanced\";s:1:\"1\";s:66:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcards\";s:1:\"0\";s:88:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcards_buckaroo_magento2_advanced\";s:1:\"0\";s:61:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_paypal\";s:1:\"0\";s:83:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_paypal_buckaroo_magento2_advanced\";s:1:\"1\";s:68:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bank_transfer\";s:1:\"0\";s:90:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bank_transfer_buckaroo_magento2_advanced\";s:1:\"0\";s:66:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_directdebit\";s:1:\"0\";s:88:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_directdebit_buckaroo_magento2_advanced\";s:1:\"0\";s:71:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bancontactmrcash\";s:1:\"0\";s:93:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_bancontactmrcash_buckaroo_magento2_advanced\";s:1:\"0\";s:65:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcard\";s:1:\"0\";s:87:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_creditcard_buckaroo_magento2_advanced\";s:1:\"1\";s:63:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_transfer\";s:1:\"0\";s:85:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_transfer_buckaroo_magento2_advanced\";s:1:\"1\";s:70:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sepadirectdebit\";s:1:\"0\";s:92:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_sepadirectdebit_buckaroo_magento2_advanced\";s:1:\"1\";s:61:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_mrcash\";s:1:\"0\";s:83:\"buckaroo_magento2_buckaroo_magento2_payment_section_buckaroo_magento2_mrcash_buckaroo_magento2_advanced\";s:1:\"1\";s:1:\"0\";s:1:\"0\";s:1:\"0\";s:1:\"0\";s:40:\"buckaroo_magento2_buckaroo_magento2_refund_section\";s:1:\"0\";s:14:\"admin_security\";s:1:\"1\";s:15:\"admin_dashboard\";s:1:\"1\";s:13:\"admin_captcha\";s:1:\"1\";s:9:\"admin_url\";s:1:\"1\";s:13:\"admin_startup\";s:1:\"1\";s:12:\"admin_emails\";s:1:\"1\";s:34:\"system_media_storage_configuration\";s:1:\"0\";s:11:\"system_smtp\";s:1:\"0\";s:11:\"system_cron\";s:1:\"0\";s:19:\"system_cron_default\";s:1:\"0\";s:12:\"dev_restrict\";s:1:\"1\";s:34:\"dev_front_end_development_workflow\";s:1:\"0\";s:9:\"dev_debug\";s:1:\"0\";s:12:\"dev_template\";s:1:\"0\";s:20:\"dev_translate_inline\";s:1:\"0\";s:6:\"dev_js\";s:1:\"0\";s:7:\"dev_css\";s:1:\"0\";s:9:\"dev_image\";s:1:\"0\";s:10:\"dev_static\";s:1:\"0\";s:8:\"dev_grid\";s:1:\"0\";s:15:\"tax_calculation\";s:1:\"1\";s:12:\"tax_defaults\";s:1:\"0\";}}',NULL,NULL,'en_US',0,NULL,NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;
@@ -3156,7 +3156,7 @@ CREATE TABLE `core_config_data` (
LOCK TABLES `core_config_data` WRITE;
/*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
-INSERT INTO `core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1'),(2,'default',0,'web/unsecure/base_url','http://buckaroo.jenkins/'),(3,'default',0,'web/secure/base_url','https://buckaroo.jenkins/'),(4,'default',0,'general/locale/code','nl-NL'),(5,'default',0,'web/secure/use_in_frontend',NULL),(6,'default',0,'web/secure/use_in_adminhtml',NULL),(7,'default',0,'general/locale/timezone','Europe/Amsterdam'),(8,'default',0,'currency/options/base','EUR'),(9,'default',0,'currency/options/default','EUR'),(10,'default',0,'currency/options/allow','EUR'),(11,'default',0,'general/region/display_all','1'),(12,'default',0,'general/region/state_required','AT,BR,CA,CH,DE,EE,ES,FI,FR,LT,LV,RO,US'),(13,'default',0,'catalog/category/root_id',NULL),(14,'default',0,'paypal/general/merchant_country','NL'),(15,'default',0,'payment/buckaroo_magento2_ideal/active','1'),(16,'default',0,'payment/braintree/active','0'),(17,'default',0,'payment/braintree_paypal/active','1'),(18,'default',0,'payment/braintree/title','Credit Card (Braintree)'),(19,'default',0,'payment/braintree/environment','sandbox'),(20,'default',0,'payment/braintree/payment_action','authorize'),(21,'default',0,'payment/braintree/merchant_account_id','bart.buckaroo'),(22,'default',0,'payment/braintree/merchant_id','4qzzt63rc7krn522'),(23,'default',0,'payment/braintree/debug','0'),(24,'default',0,'payment/braintree/capture_action','invoice'),(25,'default',0,'payment/braintree/order_status','processing'),(26,'default',0,'payment/braintree/use_vault','0'),(27,'default',0,'payment/braintree/duplicate_card','0'),(28,'default',0,'payment/braintree/useccv','1'),(29,'default',0,'payment/braintree/cctypes','AE,VI,MC,DI,JCB'),(30,'default',0,'payment/braintree/enable_cc_detection','1'),(31,'default',0,'payment/braintree/fraudprotection','0'),(32,'default',0,'payment/braintree/kount_id',NULL),(33,'default',0,'payment/braintree/usecache','0'),(34,'default',0,'payment/braintree/sort_order',NULL),(35,'default',0,'payment/braintree/allowspecific','0'),(36,'default',0,'payment/braintree/specificcountry',NULL),(37,'default',0,'payment/braintree/countrycreditcard','a:0:{}'),(38,'default',0,'payment/braintree_paypal/title','PayPal (Braintree)'),(39,'default',0,'payment/braintree_paypal/sort_order',NULL),(40,'default',0,'payment/braintree_paypal/merchant_name_override',NULL),(41,'default',0,'payment/braintree_paypal/payment_action','authorize'),(42,'default',0,'payment/braintree_paypal/order_status','processing'),(43,'default',0,'payment/braintree_paypal/allowspecific','0'),(44,'default',0,'payment/braintree_paypal/specificcountry',NULL),(45,'default',0,'payment/braintree_paypal/require_billing_address','0'),(46,'default',0,'payment/braintree_paypal/display_on_shopping_cart','0'),(47,'default',0,'payment/braintree_paypal/allow_shipping_address_override','0'),(48,'default',0,'payment/braintree_paypal/debug','0'),(49,'default',0,'payment/braintree/verify_3dsecure','0'),(50,'default',0,'payment/braintreetwo/active','0'),(51,'default',0,'payment/braintreetwo/title','Credit Card (BraintreeTwo)'),(52,'default',0,'payment/braintreetwo/environment','sandbox'),(53,'default',0,'payment/braintreetwo/payment_action','authorize'),(54,'default',0,'payment/braintreetwo/merchant_id',NULL),(55,'default',0,'payment/braintreetwo/merchant_account_id',NULL),(56,'default',0,'payment/braintreetwo/debug','0'),(57,'default',0,'payment/braintreetwo/useccv','1'),(58,'default',0,'payment/braintreetwo/cctypes','CUP,AE,VI,MC,DI,JCB,DN,MI'),(59,'default',0,'payment/braintreetwo/sort_order',NULL),(60,'default',0,'payment/braintreetwo/allowspecific','0'),(61,'default',0,'payment/braintreetwo/specificcountry',NULL),(62,'default',0,'payment/braintreetwo/countrycreditcard','a:0:{}'),(63,'default',0,'payment/payflow_express/active','0'),(64,'default',0,'payment/payflow_advanced/active','0'),(65,'default',0,'payment/payflow_express_bml/active','0'),(66,'default',0,'paypal/general/business_account',NULL),(67,'default',0,'payment/payflow_advanced/partner','PayPal'),(68,'default',0,'payment/payflow_advanced/vendor','PayPal'),(69,'default',0,'payment/payflow_advanced/sandbox_flag','0'),(70,'default',0,'payment/payflow_advanced/use_proxy','0'),(71,'default',0,'payment/paypal_express_bml/publisher_id',NULL),(72,'default',0,'payment/paypal_express_bml/homepage_display','0'),(73,'default',0,'payment/paypal_express_bml/homepage_position','0'),(74,'default',0,'payment/paypal_express_bml/homepage_size','190x100'),(75,'default',0,'payment/paypal_express_bml/categorypage_display','0'),(76,'default',0,'payment/paypal_express_bml/categorypage_position','0'),(77,'default',0,'payment/paypal_express_bml/categorypage_size','190x100'),(78,'default',0,'payment/paypal_express_bml/productpage_display','0'),(79,'default',0,'payment/paypal_express_bml/productpage_position','0'),(80,'default',0,'payment/paypal_express_bml/productpage_size','190x100'),(81,'default',0,'payment/paypal_express_bml/checkout_display','0'),(82,'default',0,'payment/paypal_express_bml/checkout_position','0'),(83,'default',0,'payment/paypal_express_bml/checkout_size','234x60'),(84,'default',0,'payment/payflow_advanced/title','Credit Card'),(85,'default',0,'payment/payflow_advanced/sort_order',NULL),(86,'default',0,'payment/payflow_advanced/payment_action','Authorization'),(87,'default',0,'payment/payflow_advanced/allowspecific','0'),(88,'default',0,'payment/payflow_advanced/debug','0'),(89,'default',0,'payment/payflow_advanced/verify_peer','1'),(90,'default',0,'payment/payflow_advanced/csc_editable','1'),(91,'default',0,'payment/payflow_advanced/csc_required','1'),(92,'default',0,'payment/payflow_advanced/email_confirmation','0'),(93,'default',0,'payment/payflow_advanced/url_method','GET'),(94,'default',0,'paypal/fetch_reports/ftp_sandbox','0'),(95,'default',0,'paypal/fetch_reports/ftp_ip',NULL),(96,'default',0,'paypal/fetch_reports/ftp_path',NULL),(97,'default',0,'paypal/fetch_reports/active','0'),(98,'default',0,'paypal/fetch_reports/schedule','1'),(99,'default',0,'paypal/fetch_reports/time','00,00,00'),(100,'default',0,'paypal/style/logo',NULL),(101,'default',0,'paypal/style/page_style',NULL),(102,'default',0,'paypal/style/paypal_hdrimg',NULL),(103,'default',0,'paypal/style/paypal_hdrbackcolor',NULL),(104,'default',0,'paypal/style/paypal_hdrbordercolor',NULL),(105,'default',0,'paypal/style/paypal_payflowcolor',NULL),(106,'default',0,'payment/payflow_express/title','PayPal Express Checkout Payflow Edition'),(107,'default',0,'payment/payflow_express/sort_order',NULL),(108,'default',0,'payment/payflow_express/payment_action','Authorization'),(109,'default',0,'payment/payflow_express/visible_on_product','1'),(110,'default',0,'payment/payflow_express/visible_on_cart','1'),(111,'default',0,'payment/payflow_express/allowspecific','0'),(112,'default',0,'payment/payflow_express/debug','0'),(113,'default',0,'payment/payflow_express/verify_peer','1'),(114,'default',0,'payment/payflow_express/line_items_enabled','1'),(115,'default',0,'payment/paypal_express/skip_order_review_step','1'),(116,'default',0,'payment/paypal_payment_pro/active','0'),(117,'default',0,'payment/payflowpro/partner',NULL),(118,'default',0,'payment/payflowpro/vendor',NULL),(119,'default',0,'payment/payflowpro/sandbox_flag','0'),(120,'default',0,'payment/payflowpro/use_proxy','0'),(121,'default',0,'payment/payflowpro/title','Credit Card'),(122,'default',0,'payment/payflowpro/sort_order',NULL),(123,'default',0,'payment/payflowpro/payment_action','Authorization'),(124,'default',0,'payment/payflowpro/cctypes','AE,VI'),(125,'default',0,'payment/payflowpro/allowspecific','0'),(126,'default',0,'payment/payflowpro/debug','0'),(127,'default',0,'payment/payflowpro/verify_peer','1'),(128,'default',0,'payment/payflowpro/useccv','1'),(129,'default',0,'payment/payflowpro/avs_street','0'),(130,'default',0,'payment/payflowpro/avs_zip','0'),(131,'default',0,'payment/payflowpro/avs_international','0'),(132,'default',0,'payment/payflowpro/avs_security_code','1'),(133,'default',0,'payment/wps_express/active','0'),(134,'default',0,'payment/wps_express_bml/active','0'),(135,'default',0,'paypal/wpp/api_authentication','0'),(136,'default',0,'paypal/wpp/sandbox_flag','0'),(137,'default',0,'paypal/wpp/use_proxy','0'),(138,'default',0,'payment/paypal_express/title','PayPal Express Checkout'),(139,'default',0,'payment/paypal_express/sort_order',NULL),(140,'default',0,'payment/paypal_express/payment_action','Authorization'),(141,'default',0,'payment/paypal_express/visible_on_product','1'),(142,'default',0,'payment/paypal_express/visible_on_cart','1'),(143,'default',0,'payment/paypal_express/allowspecific','0'),(144,'default',0,'payment/paypal_express/debug','0'),(145,'default',0,'payment/paypal_express/verify_peer','1'),(146,'default',0,'payment/paypal_express/line_items_enabled','1'),(147,'default',0,'payment/paypal_express/transfer_shipping_options','0'),(148,'default',0,'paypal/wpp/button_flavor','dynamic'),(149,'default',0,'payment/paypal_express/solution_type','Mark'),(150,'default',0,'payment/paypal_express/require_billing_address','0'),(151,'default',0,'payment/paypal_express/allow_ba_signup','never'),(152,'default',0,'payment/paypal_billing_agreement/active','1'),(153,'default',0,'payment/paypal_billing_agreement/title','PayPal Billing Agreement'),(154,'default',0,'payment/paypal_billing_agreement/sort_order',NULL),(155,'default',0,'payment/paypal_billing_agreement/payment_action','Authorization'),(156,'default',0,'payment/paypal_billing_agreement/allowspecific','0'),(157,'default',0,'payment/paypal_billing_agreement/debug','0'),(158,'default',0,'payment/paypal_billing_agreement/verify_peer','1'),(159,'default',0,'payment/paypal_billing_agreement/line_items_enabled','0'),(160,'default',0,'payment/paypal_billing_agreement/allow_billing_agreement_wizard','1'),(161,'default',0,'payment/payflowpro/active','0'),(162,'default',0,'payment/payflow_link/active','0'),(163,'default',0,'payment/payflow_link/partner','PayPal'),(164,'default',0,'payment/payflow_link/vendor',NULL),(165,'default',0,'payment/payflow_link/sandbox_flag','0'),(166,'default',0,'payment/payflow_link/use_proxy','0'),(167,'default',0,'payment/payflow_link/title','Credit Card'),(168,'default',0,'payment/payflow_link/sort_order',NULL),(169,'default',0,'payment/payflow_link/payment_action','Authorization'),(170,'default',0,'payment/payflow_link/allowspecific','0'),(171,'default',0,'payment/payflow_link/debug','0'),(172,'default',0,'payment/payflow_link/verify_peer','1'),(173,'default',0,'payment/payflow_link/csc_editable','1'),(174,'default',0,'payment/payflow_link/csc_required','1'),(175,'default',0,'payment/payflow_link/email_confirmation','0'),(176,'default',0,'payment/payflow_link/url_method','GET'),(177,'default',0,'payment/paypal_express/active','0'),(178,'default',0,'payment/paypal_express_bml/active','0'),(179,'default',0,'payment/checkmo/active','1'),(180,'default',0,'payment/checkmo/title','Check / Money order'),(181,'default',0,'payment/checkmo/order_status','pending'),(182,'default',0,'payment/checkmo/allowspecific','0'),(183,'default',0,'payment/checkmo/specificcountry',NULL),(184,'default',0,'payment/checkmo/payable_to',NULL),(185,'default',0,'payment/checkmo/mailing_address',NULL),(186,'default',0,'payment/checkmo/min_order_total',NULL),(187,'default',0,'payment/checkmo/max_order_total',NULL),(188,'default',0,'payment/checkmo/sort_order',NULL),(189,'default',0,'payment/cashondelivery/active','1'),(190,'default',0,'payment/cashondelivery/title','Cash On Delivery'),(191,'default',0,'payment/cashondelivery/order_status','pending'),(192,'default',0,'payment/cashondelivery/allowspecific','0'),(193,'default',0,'payment/cashondelivery/specificcountry',NULL),(194,'default',0,'payment/cashondelivery/instructions',NULL),(195,'default',0,'payment/cashondelivery/min_order_total',NULL),(196,'default',0,'payment/cashondelivery/max_order_total',NULL),(197,'default',0,'payment/cashondelivery/sort_order',NULL),(198,'default',0,'payment/banktransfer/active','1'),(199,'default',0,'payment/banktransfer/title','Bank Transfer Payment'),(200,'default',0,'payment/banktransfer/order_status','pending'),(201,'default',0,'payment/banktransfer/allowspecific','0'),(202,'default',0,'payment/banktransfer/specificcountry',NULL),(203,'default',0,'payment/banktransfer/instructions',NULL),(204,'default',0,'payment/banktransfer/min_order_total',NULL),(205,'default',0,'payment/banktransfer/max_order_total',NULL),(206,'default',0,'payment/banktransfer/sort_order',NULL),(207,'default',0,'payment/free/title','No Payment Information Required'),(208,'default',0,'payment/free/active','1'),(209,'default',0,'payment/free/order_status','pending'),(210,'default',0,'payment/free/allowspecific','0'),(211,'default',0,'payment/free/specificcountry',NULL),(212,'default',0,'payment/free/sort_order','1'),(213,'default',0,'payment/purchaseorder/active','1'),(214,'default',0,'payment/purchaseorder/title','Purchase Order'),(215,'default',0,'payment/purchaseorder/order_status','pending'),(216,'default',0,'payment/purchaseorder/allowspecific','0'),(217,'default',0,'payment/purchaseorder/specificcountry',NULL),(218,'default',0,'payment/purchaseorder/min_order_total',NULL),(219,'default',0,'payment/purchaseorder/max_order_total',NULL),(220,'default',0,'payment/purchaseorder/sort_order',NULL),(221,'default',0,'payment/authorizenet_directpost/active','1'),(222,'default',0,'payment/authorizenet_directpost/payment_action','authorize'),(223,'default',0,'payment/authorizenet_directpost/title','Credit Card Direct Post (Authorize.net)'),(224,'default',0,'payment/authorizenet_directpost/order_status','processing'),(225,'default',0,'payment/authorizenet_directpost/test','1'),(226,'default',0,'payment/authorizenet_directpost/cgi_url','https://secure.authorize.net/gateway/transact.dll'),(227,'default',0,'payment/authorizenet_directpost/cgi_url_td','https://api2.authorize.net/xml/v1/request.api'),(228,'default',0,'payment/authorizenet_directpost/currency','USD'),(229,'default',0,'payment/authorizenet_directpost/debug','0'),(230,'default',0,'payment/authorizenet_directpost/email_customer','0'),(231,'default',0,'payment/authorizenet_directpost/merchant_email',NULL),(232,'default',0,'payment/authorizenet_directpost/cctypes','AE,VI,MC,DI'),(233,'default',0,'payment/authorizenet_directpost/useccv','0'),(234,'default',0,'payment/authorizenet_directpost/allowspecific','0'),(235,'default',0,'payment/authorizenet_directpost/min_order_total',NULL),(236,'default',0,'payment/authorizenet_directpost/max_order_total',NULL),(237,'default',0,'payment/authorizenet_directpost/sort_order',NULL),(238,'default',0,'payment/braintree/public_key','0:2:N0QO0UMZO2fsUYqjGHCgiPxapsDxdfQR:YS66eAz1MQA12iu/ErWE0C1U1qK7fWvo+bmGA+PWY2k='),(239,'default',0,'payment/braintree/private_key','0:2:xvVh7LV0QeKEvUa3mhb1FchXFE1LlIGI:ri1BZsG4nOF1SsM23YLFojAwNPxu9IWFeh/SI/2Tkdw='),(240,'default',0,'payment/buckaroo_magento2_account/active','1'),(241,'default',0,'payment/buckaroo_magento2_account/secret_key',NULL),(242,'default',0,'payment/buckaroo_magento2_account/merchant_key',NULL),(243,'default',0,'payment/buckaroo_magento2_account/transaction_label',NULL),(244,'default',0,'payment/buckaroo_magento2_account/certificate_file','1'),(245,'default',0,'payment/buckaroo_magento2_account/advanced',NULL),(246,'default',0,'payment/buckaroo_magento2_ideal/title','Buckaroo iDEAL'),(247,'default',0,'payment/buckaroo_magento2_ideal/sort_order','1'),(248,'default',0,'payment/buckaroo_magento2_ideal/order_email','0'),(249,'default',0,'payment/buckaroo_magento2_ideal/payment_fee',NULL),(250,'default',0,'payment/buckaroo_magento2_ideal/payment_fee_label',NULL),(251,'default',0,'payment/buckaroo_magento2_ideal/max_amount',NULL),(252,'default',0,'payment/buckaroo_magento2_ideal/min_amount',NULL),(253,'default',0,'payment/buckaroo_magento2_ideal/active_status','0'),(254,'default',0,'payment/buckaroo_magento2_ideal/allowspecific','0'),(255,'default',0,'payment/buckaroo_magento2_ideal/limit_by_ip','0'),(256,'default',0,'payment/buckaroo_magento2_creditcards/active','0'),(257,'default',0,'payment/buckaroo_magento2_creditcards/title',NULL),(258,'default',0,'payment/buckaroo_magento2_creditcards/sort_order',NULL),(259,'default',0,'payment/buckaroo_magento2_creditcards/max_amount',NULL),(260,'default',0,'payment/buckaroo_magento2_creditcards/min_amount',NULL),(261,'default',0,'payment/buckaroo_magento2_creditcards/active_status','0'),(262,'default',0,'payment/buckaroo_magento2_creditcards/allowspecific','0'),(263,'default',0,'payment/buckaroo_magento2_creditcards/limit_by_ip','0'),(264,'default',0,'payment/buckaroo_magento2_creditcards/amex_payment_fee',NULL),(265,'default',0,'payment/buckaroo_magento2_creditcards/amex_payment_fee_label',NULL),(266,'default',0,'payment/buckaroo_magento2_creditcards/maestro_payment_fee',NULL),(267,'default',0,'payment/buckaroo_magento2_creditcards/maestro_payment_fee_label',NULL),(268,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_unsecure_status_processing',NULL),(269,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_unsecure_hold','0'),(270,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_payment_fee',NULL),(271,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_payment_fee_label',NULL),(272,'default',0,'payment/buckaroo_magento2_creditcards/visa_unsecure_status_processing',NULL),(273,'default',0,'payment/buckaroo_magento2_creditcards/visa_unsecure_hold','0'),(274,'default',0,'payment/buckaroo_magento2_creditcards/visa_payment_fee',NULL),(275,'default',0,'payment/buckaroo_magento2_creditcards/visa_payment_fee_label',NULL),(276,'default',0,'payment/buckaroo_magento2_paypal/active','1'),(277,'default',0,'payment/buckaroo_magento2_paypal/title','Buckaroo PayPal'),(278,'default',0,'payment/buckaroo_magento2_paypal/sort_order','1'),(279,'default',0,'payment/buckaroo_magento2_paypal/sellers_protection','0'),(280,'default',0,'payment/buckaroo_magento2_paypal/order_email','0'),(281,'default',0,'payment/buckaroo_magento2_paypal/payment_fee',NULL),(282,'default',0,'payment/buckaroo_magento2_paypal/payment_fee_label',NULL),(283,'default',0,'payment/buckaroo_magento2_paypal/max_amount',NULL),(284,'default',0,'payment/buckaroo_magento2_paypal/min_amount',NULL),(285,'default',0,'payment/buckaroo_magento2_paypal/active_status','0'),(286,'default',0,'payment/buckaroo_magento2_paypal/allowspecific','0'),(287,'default',0,'payment/buckaroo_magento2_paypal/limit_by_ip','0'),(288,'default',0,'payment/buckaroo_magento2_bank_transfer/active','0'),(289,'default',0,'payment/buckaroo_magento2_bank_transfer/title',NULL),(290,'default',0,'payment/buckaroo_magento2_bank_transfer/sort_order',NULL),(291,'default',0,'payment/buckaroo_magento2_bank_transfer/send_email','0'),(292,'default',0,'payment/buckaroo_magento2_bank_transfer/due_date',NULL),(293,'default',0,'payment/buckaroo_magento2_bank_transfer/use_creditmanagement','0'),(294,'default',0,'payment/buckaroo_magento2_bank_transfer/order_email','0'),(295,'default',0,'payment/buckaroo_magento2_bank_transfer/payment_fee',NULL),(296,'default',0,'payment/buckaroo_magento2_bank_transfer/payment_fee_label',NULL),(297,'default',0,'payment/buckaroo_magento2_bank_transfer/max_amount',NULL),(298,'default',0,'payment/buckaroo_magento2_bank_transfer/min_amount',NULL),(299,'default',0,'payment/buckaroo_magento2_bank_transfer/active_status','0'),(300,'default',0,'payment/buckaroo_magento2_bank_transfer/allowspecific','0'),(301,'default',0,'payment/buckaroo_magento2_bank_transfer/limit_by_ip','0'),(302,'default',0,'payment/buckaroo_magento2_directdebit/active','0'),(303,'default',0,'payment/buckaroo_magento2_directdebit/title',NULL),(304,'default',0,'payment/buckaroo_magento2_directdebit/sort_order',NULL),(305,'default',0,'payment/buckaroo_magento2_directdebit/send_email','0'),(306,'default',0,'payment/buckaroo_magento2_directdebit/use_creditmanagement','0'),(307,'default',0,'payment/buckaroo_magento2_directdebit/order_email','0'),(308,'default',0,'payment/buckaroo_magento2_directdebit/payment_fee',NULL),(309,'default',0,'payment/buckaroo_magento2_directdebit/payment_fee_label',NULL),(310,'default',0,'payment/buckaroo_magento2_directdebit/max_amount',NULL),(311,'default',0,'payment/buckaroo_magento2_directdebit/min_amount',NULL),(312,'default',0,'payment/buckaroo_magento2_directdebit/active_status','0'),(313,'default',0,'payment/buckaroo_magento2_directdebit/allowspecific','0'),(314,'default',0,'payment/buckaroo_magento2_directdebit/limit_by_ip','0'),(315,'default',0,'payment/buckaroo_magento2_bancontactmrcash/active','0'),(316,'default',0,'payment/buckaroo_magento2_bancontactmrcash/title',NULL),(317,'default',0,'payment/buckaroo_magento2_bancontactmrcash/sort_order',NULL),(318,'default',0,'payment/buckaroo_magento2_bancontactmrcash/payment_fee',NULL),(319,'default',0,'payment/buckaroo_magento2_bancontactmrcash/payment_fee_label',NULL),(320,'default',0,'payment/buckaroo_magento2_bancontactmrcash/max_amount',NULL),(321,'default',0,'payment/buckaroo_magento2_bancontactmrcash/min_amount',NULL),(322,'default',0,'payment/buckaroo_magento2_bancontactmrcash/active_status','0'),(323,'default',0,'payment/buckaroo_magento2_bancontactmrcash/allowspecific','0'),(324,'default',0,'payment/buckaroo_magento2_bancontactmrcash/limit_by_ip','0'),(325,'default',0,'buckaroo_magento2/account/active','1'),(326,'default',0,'buckaroo_magento2/account/secret_key',NULL),(327,'default',0,'buckaroo_magento2/account/merchant_key',NULL),(328,'default',0,'buckaroo_magento2/account/transaction_label','Magento Buckaroo'),(329,'default',0,'buckaroo_magento2/account/certificate_file','1'),(330,'default',0,'buckaroo_magento2/account/order_state_new',NULL),(331,'default',0,'buckaroo_magento2/account/order_state_pending',NULL),(332,'default',0,'buckaroo_magento2/account/order_state_success',NULL),(333,'default',0,'buckaroo_magento2/account/order_state_failed',NULL),(334,'default',0,'buckaroo_magento2/account/invoice_email','1'),(335,'default',0,'buckaroo_magento2/account/auto_invoice','1'),(336,'default',0,'buckaroo_magento2/account/auto_invoice_status','pending'),(337,'default',0,'buckaroo_magento2/account/success_redirect','checkout/onepage/success'),(338,'default',0,'buckaroo_magento2/account/failure_redirect','checkout/onepage'),(339,'default',0,'buckaroo_magento2/account/cancel_on_failed','1'),(340,'default',0,'buckaroo_magento2/account/debug_mode',NULL),(341,'default',0,'buckaroo_magento2/account/debug_email',NULL),(342,'default',0,'buckaroo_magento2/account/limit_by_ip','0'),(343,'default',0,'buckaroo_magento2/account/fee_percentage_mode','subtotal'),(344,'default',0,'payment/buckaroo_magento2_creditcard/active','1'),(345,'default',0,'payment/buckaroo_magento2_creditcard/title','Buckaroo Creditcard and Debit Card'),(346,'default',0,'payment/buckaroo_magento2_creditcard/sort_order','30'),(347,'default',0,'payment/buckaroo_magento2_creditcard/max_amount',NULL),(348,'default',0,'payment/buckaroo_magento2_creditcard/min_amount',NULL),(349,'default',0,'payment/buckaroo_magento2_creditcard/active_status','0'),(350,'default',0,'payment/buckaroo_magento2_creditcard/allowspecific','0'),(351,'default',0,'payment/buckaroo_magento2_creditcard/limit_by_ip','0'),(352,'default',0,'payment/buckaroo_magento2_creditcard/amex_payment_fee',NULL),(353,'default',0,'payment/buckaroo_magento2_creditcard/amex_payment_fee_label','Fee'),(354,'default',0,'payment/buckaroo_magento2_creditcard/maestro_payment_fee',NULL),(355,'default',0,'payment/buckaroo_magento2_creditcard/maestro_payment_fee_label','Fee'),(356,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_unsecure_status_processing',NULL),(357,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_unsecure_hold','0'),(358,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_payment_fee',NULL),(359,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_payment_fee_label','Fee'),(360,'default',0,'payment/buckaroo_magento2_creditcard/visa_unsecure_status_processing',NULL),(361,'default',0,'payment/buckaroo_magento2_creditcard/visa_unsecure_hold','0'),(362,'default',0,'payment/buckaroo_magento2_creditcard/visa_payment_fee',NULL),(363,'default',0,'payment/buckaroo_magento2_creditcard/visa_payment_fee_label','Fee'),(364,'default',0,'payment/buckaroo_magento2_transfer/active','1'),(365,'default',0,'payment/buckaroo_magento2_transfer/title','Buckaroo Transfer'),(366,'default',0,'payment/buckaroo_magento2_transfer/sort_order','100'),(367,'default',0,'payment/buckaroo_magento2_transfer/send_email','0'),(368,'default',0,'payment/buckaroo_magento2_transfer/due_date','7'),(369,'default',0,'payment/buckaroo_magento2_transfer/use_creditmanagement','0'),(370,'default',0,'payment/buckaroo_magento2_transfer/order_email','1'),(371,'default',0,'payment/buckaroo_magento2_transfer/payment_fee',NULL),(372,'default',0,'payment/buckaroo_magento2_transfer/payment_fee_label','Fee'),(373,'default',0,'payment/buckaroo_magento2_transfer/max_amount',NULL),(374,'default',0,'payment/buckaroo_magento2_transfer/min_amount',NULL),(375,'default',0,'payment/buckaroo_magento2_transfer/active_status','0'),(376,'default',0,'payment/buckaroo_magento2_transfer/allowspecific','0'),(377,'default',0,'payment/buckaroo_magento2_transfer/limit_by_ip','0'),(378,'default',0,'payment/buckaroo_magento2_sepadirectdebit/active','1'),(379,'default',0,'payment/buckaroo_magento2_sepadirectdebit/title','Buckaroo SEPA Direct Debit'),(380,'default',0,'payment/buckaroo_magento2_sepadirectdebit/sort_order','110'),(381,'default',0,'payment/buckaroo_magento2_sepadirectdebit/send_email','1'),(382,'default',0,'payment/buckaroo_magento2_sepadirectdebit/use_creditmanagement','0'),(383,'default',0,'payment/buckaroo_magento2_sepadirectdebit/order_email','1'),(384,'default',0,'payment/buckaroo_magento2_sepadirectdebit/payment_fee',NULL),(385,'default',0,'payment/buckaroo_magento2_sepadirectdebit/payment_fee_label',NULL),(386,'default',0,'payment/buckaroo_magento2_sepadirectdebit/max_amount',NULL),(387,'default',0,'payment/buckaroo_magento2_sepadirectdebit/min_amount',NULL),(388,'default',0,'payment/buckaroo_magento2_sepadirectdebit/active_status','0'),(389,'default',0,'payment/buckaroo_magento2_sepadirectdebit/allowspecific','0'),(390,'default',0,'payment/buckaroo_magento2_sepadirectdebit/limit_by_ip','0'),(391,'default',0,'payment/buckaroo_magento2_mrcash/active','1'),(392,'default',0,'payment/buckaroo_magento2_mrcash/title','Buckaroo Mrcash'),(393,'default',0,'payment/buckaroo_magento2_mrcash/sort_order','140'),(394,'default',0,'payment/buckaroo_magento2_mrcash/payment_fee',NULL),(395,'default',0,'payment/buckaroo_magento2_mrcash/payment_fee_label','Fee'),(396,'default',0,'payment/buckaroo_magento2_mrcash/max_amount',NULL),(397,'default',0,'payment/buckaroo_magento2_mrcash/min_amount',NULL),(398,'default',0,'payment/buckaroo_magento2_mrcash/active_status','0'),(399,'default',0,'payment/buckaroo_magento2_mrcash/allowspecific','0'),(400,'default',0,'payment/buckaroo_magento2_mrcash/limit_by_ip','0'),(401,'default',0,'payment/buckaroo_magento2_sofortbanking/active','1'),(402,'default',0,'payment/buckaroo_magento2_sofortbanking/title','Buckaroo Sofortbanking'),(403,'default',0,'payment/buckaroo_magento2_sofortbanking/sort_order','150'),(404,'default',0,'payment/buckaroo_magento2_sofortbanking/payment_fee',NULL),(405,'default',0,'payment/buckaroo_magento2_sofortbanking/payment_fee_label','Fee'),(406,'default',0,'payment/buckaroo_magento2_sofortbanking/max_amount',NULL),(407,'default',0,'payment/buckaroo_magento2_sofortbanking/min_amount',NULL),(408,'default',0,'payment/buckaroo_magento2_sofortbanking/active_status','0'),(409,'default',0,'payment/buckaroo_magento2_sofortbanking/allowspecific','0'),(410,'default',0,'payment/buckaroo_magento2_sofortbanking/limit_by_ip','0'),(411,'default',0,'payment/buckaroo_magento2_giropay/active','1'),(412,'default',0,'payment/buckaroo_magento2_giropay/title','Buckaroo Giropay'),(413,'default',0,'payment/buckaroo_magento2_giropay/sort_order','160'),(414,'default',0,'payment/buckaroo_magento2_giropay/payment_fee',NULL),(415,'default',0,'payment/buckaroo_magento2_giropay/payment_fee_label','Fee'),(416,'default',0,'payment/buckaroo_magento2_giropay/max_amount',NULL),(417,'default',0,'payment/buckaroo_magento2_giropay/min_amount',NULL),(418,'default',0,'payment/buckaroo_magento2_giropay/active_status','0'),(419,'default',0,'payment/buckaroo_magento2_giropay/allowspecific','0'),(420,'default',0,'payment/buckaroo_magento2_giropay/limit_by_ip','0'),(421,'default',0,'buckaroo_magento2/refund/active','0'),(422,'default',0,'system/full_page_cache/varnish/access_list','localhost'),(423,'default',0,'system/full_page_cache/varnish/backend_host','localhost'),(424,'default',0,'system/full_page_cache/varnish/backend_port','8080'),(425,'default',0,'dev/front_end_development_workflow/type','server_side_compilation'),(426,'default',0,'dev/restrict/allow_ips','127.0.0.2,::2'),(427,'default',0,'dev/debug/template_hints_storefront','0'),(428,'default',0,'dev/debug/template_hints_admin','0'),(429,'default',0,'dev/debug/template_hints_blocks','0'),(430,'default',0,'dev/template/allow_symlink','0'),(431,'default',0,'dev/template/minify_html','0'),(432,'default',0,'dev/translate_inline/active','0'),(433,'default',0,'dev/translate_inline/active_admin','0'),(434,'default',0,'dev/js/enable_js_bundling','0'),(435,'default',0,'dev/js/merge_files','0'),(436,'default',0,'dev/js/minify_files','0'),(437,'default',0,'dev/js/translate_strategy','dictionary'),(438,'default',0,'dev/js/session_storage_logging','0'),(439,'default',0,'dev/js/session_storage_key','collected_errors'),(440,'default',0,'dev/css/merge_css_files','0'),(441,'default',0,'dev/css/minify_files','0'),(442,'default',0,'dev/image/default_adapter','GD2'),(443,'default',0,'dev/static/sign','0'),(444,'default',0,'dev/grid/async_indexing','0'),(445,'default',0,'payment/buckaroo_magento2_creditcard/allowed_issuers','cartebleuevisa,maestro,mastercard,visa'),(446,'default',0,'admin/emails/forgot_email_template','admin_emails_forgot_email_template'),(447,'default',0,'admin/emails/forgot_email_identity','general'),(448,'default',0,'admin/emails/password_reset_link_expiration_period','1'),(449,'default',0,'admin/emails/reset_password_template','admin_emails_reset_password_template'),(450,'default',0,'admin/startup/menu_item_id','Magento_Backend::dashboard'),(451,'default',0,'admin/url/use_custom','0'),(452,'default',0,'admin/url/use_custom_path','0'),(453,'default',0,'admin/security/use_form_key','1'),(454,'default',0,'admin/security/use_case_sensitive_login','0'),(455,'default',0,'admin/security/session_lifetime','999999'),(456,'default',0,'admin/security/lockout_failures','6'),(457,'default',0,'admin/security/lockout_threshold','30'),(458,'default',0,'admin/security/password_lifetime','90'),(459,'default',0,'admin/security/password_is_forced','1'),(460,'default',0,'admin/dashboard/enable_charts','0'),(461,'default',0,'admin/captcha/enable','0'),(462,'default',0,'payment/buckaroo_magento2_ideal/specificcountry','AF'),(465,'default',0,'buckaroo_magento2/account/order_status_new',NULL),(466,'default',0,'buckaroo_magento2/account/order_status_pending',NULL),(467,'default',0,'buckaroo_magento2/account/order_status_success',NULL),(468,'default',0,'buckaroo_magento2/account/order_status_failed',NULL),(469,'default',0,'payment/buckaroo_magento2_ideal/allowed_currencies','ARS,AUD,BRL,CAD,CHF,CNY,CZK,DKK,EUR,GBP,HRK,LTL,LVL,MXN,MXP,NOK,PLN,SEK,TRL,TRY,USD');
+INSERT INTO `core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1'),(2,'default',0,'web/unsecure/base_url','http://buckaroo.jenkins/'),(3,'default',0,'web/secure/base_url','https://buckaroo.jenkins/'),(4,'default',0,'general/locale/code','nl-NL'),(5,'default',0,'web/secure/use_in_frontend',NULL),(6,'default',0,'web/secure/use_in_adminhtml',NULL),(7,'default',0,'general/locale/timezone','Europe/Amsterdam'),(8,'default',0,'currency/options/base','EUR'),(9,'default',0,'currency/options/default','EUR'),(10,'default',0,'currency/options/allow','EUR'),(11,'default',0,'general/region/display_all','1'),(12,'default',0,'general/region/state_required','AT,BR,CA,CH,DE,EE,ES,FI,FR,LT,LV,RO,US'),(13,'default',0,'catalog/category/root_id',NULL),(14,'default',0,'paypal/general/merchant_country','NL'),(15,'default',0,'payment/buckaroo_magento2_ideal/active','1'),(16,'default',0,'payment/braintree/active','0'),(17,'default',0,'payment/braintree_paypal/active','1'),(18,'default',0,'payment/braintree/title','Credit Card (Braintree)'),(19,'default',0,'payment/braintree/environment','sandbox'),(20,'default',0,'payment/braintree/payment_action','authorize'),(21,'default',0,'payment/braintree/merchant_account_id','bart.buckaroo'),(22,'default',0,'payment/braintree/merchant_id','4qzzt63rc7krn522'),(23,'default',0,'payment/braintree/debug','0'),(24,'default',0,'payment/braintree/capture_action','invoice'),(25,'default',0,'payment/braintree/order_status','processing'),(26,'default',0,'payment/braintree/use_vault','0'),(27,'default',0,'payment/braintree/duplicate_card','0'),(28,'default',0,'payment/braintree/useccv','1'),(29,'default',0,'payment/braintree/cctypes','AE,VI,MC,DI,JCB'),(30,'default',0,'payment/braintree/enable_cc_detection','1'),(31,'default',0,'payment/braintree/fraudprotection','0'),(32,'default',0,'payment/braintree/kount_id',NULL),(33,'default',0,'payment/braintree/usecache','0'),(34,'default',0,'payment/braintree/sort_order',NULL),(35,'default',0,'payment/braintree/allowspecific','0'),(36,'default',0,'payment/braintree/specificcountry',NULL),(37,'default',0,'payment/braintree/countrycreditcard','a:0:{}'),(38,'default',0,'payment/braintree_paypal/title','PayPal (Braintree)'),(39,'default',0,'payment/braintree_paypal/sort_order',NULL),(40,'default',0,'payment/braintree_paypal/merchant_name_override',NULL),(41,'default',0,'payment/braintree_paypal/payment_action','authorize'),(42,'default',0,'payment/braintree_paypal/order_status','processing'),(43,'default',0,'payment/braintree_paypal/allowspecific','0'),(44,'default',0,'payment/braintree_paypal/specificcountry',NULL),(45,'default',0,'payment/braintree_paypal/require_billing_address','0'),(46,'default',0,'payment/braintree_paypal/display_on_shopping_cart','0'),(47,'default',0,'payment/braintree_paypal/allow_shipping_address_override','0'),(48,'default',0,'payment/braintree_paypal/debug','0'),(49,'default',0,'payment/braintree/verify_3dsecure','0'),(50,'default',0,'payment/braintreetwo/active','0'),(51,'default',0,'payment/braintreetwo/title','Credit Card (BraintreeTwo)'),(52,'default',0,'payment/braintreetwo/environment','sandbox'),(53,'default',0,'payment/braintreetwo/payment_action','authorize'),(54,'default',0,'payment/braintreetwo/merchant_id',NULL),(55,'default',0,'payment/braintreetwo/merchant_account_id',NULL),(56,'default',0,'payment/braintreetwo/debug','0'),(57,'default',0,'payment/braintreetwo/useccv','1'),(58,'default',0,'payment/braintreetwo/cctypes','CUP,AE,VI,MC,DI,JCB,DN,MI'),(59,'default',0,'payment/braintreetwo/sort_order',NULL),(60,'default',0,'payment/braintreetwo/allowspecific','0'),(61,'default',0,'payment/braintreetwo/specificcountry',NULL),(62,'default',0,'payment/braintreetwo/countrycreditcard','a:0:{}'),(63,'default',0,'payment/payflow_express/active','0'),(64,'default',0,'payment/payflow_advanced/active','0'),(65,'default',0,'payment/payflow_express_bml/active','0'),(66,'default',0,'paypal/general/business_account',NULL),(67,'default',0,'payment/payflow_advanced/partner','PayPal'),(68,'default',0,'payment/payflow_advanced/vendor','PayPal'),(69,'default',0,'payment/payflow_advanced/sandbox_flag','0'),(70,'default',0,'payment/payflow_advanced/use_proxy','0'),(71,'default',0,'payment/paypal_express_bml/publisher_id',NULL),(72,'default',0,'payment/paypal_express_bml/homepage_display','0'),(73,'default',0,'payment/paypal_express_bml/homepage_position','0'),(74,'default',0,'payment/paypal_express_bml/homepage_size','190x100'),(75,'default',0,'payment/paypal_express_bml/categorypage_display','0'),(76,'default',0,'payment/paypal_express_bml/categorypage_position','0'),(77,'default',0,'payment/paypal_express_bml/categorypage_size','190x100'),(78,'default',0,'payment/paypal_express_bml/productpage_display','0'),(79,'default',0,'payment/paypal_express_bml/productpage_position','0'),(80,'default',0,'payment/paypal_express_bml/productpage_size','190x100'),(81,'default',0,'payment/paypal_express_bml/checkout_display','0'),(82,'default',0,'payment/paypal_express_bml/checkout_position','0'),(83,'default',0,'payment/paypal_express_bml/checkout_size','234x60'),(84,'default',0,'payment/payflow_advanced/title','Credit Card'),(85,'default',0,'payment/payflow_advanced/sort_order',NULL),(86,'default',0,'payment/payflow_advanced/payment_action','Authorization'),(87,'default',0,'payment/payflow_advanced/allowspecific','0'),(88,'default',0,'payment/payflow_advanced/debug','0'),(89,'default',0,'payment/payflow_advanced/verify_peer','1'),(90,'default',0,'payment/payflow_advanced/csc_editable','1'),(91,'default',0,'payment/payflow_advanced/csc_required','1'),(92,'default',0,'payment/payflow_advanced/email_confirmation','0'),(93,'default',0,'payment/payflow_advanced/url_method','GET'),(94,'default',0,'paypal/fetch_reports/ftp_sandbox','0'),(95,'default',0,'paypal/fetch_reports/ftp_ip',NULL),(96,'default',0,'paypal/fetch_reports/ftp_path',NULL),(97,'default',0,'paypal/fetch_reports/active','0'),(98,'default',0,'paypal/fetch_reports/schedule','1'),(99,'default',0,'paypal/fetch_reports/time','00,00,00'),(100,'default',0,'paypal/style/logo',NULL),(101,'default',0,'paypal/style/page_style',NULL),(102,'default',0,'paypal/style/paypal_hdrimg',NULL),(103,'default',0,'paypal/style/paypal_hdrbackcolor',NULL),(104,'default',0,'paypal/style/paypal_hdrbordercolor',NULL),(105,'default',0,'paypal/style/paypal_payflowcolor',NULL),(106,'default',0,'payment/payflow_express/title','PayPal Express Checkout Payflow Edition'),(107,'default',0,'payment/payflow_express/sort_order',NULL),(108,'default',0,'payment/payflow_express/payment_action','Authorization'),(109,'default',0,'payment/payflow_express/visible_on_product','1'),(110,'default',0,'payment/payflow_express/visible_on_cart','1'),(111,'default',0,'payment/payflow_express/allowspecific','0'),(112,'default',0,'payment/payflow_express/debug','0'),(113,'default',0,'payment/payflow_express/verify_peer','1'),(114,'default',0,'payment/payflow_express/line_items_enabled','1'),(115,'default',0,'payment/paypal_express/skip_order_review_step','1'),(116,'default',0,'payment/paypal_payment_pro/active','0'),(117,'default',0,'payment/payflowpro/partner',NULL),(118,'default',0,'payment/payflowpro/vendor',NULL),(119,'default',0,'payment/payflowpro/sandbox_flag','0'),(120,'default',0,'payment/payflowpro/use_proxy','0'),(121,'default',0,'payment/payflowpro/title','Credit Card'),(122,'default',0,'payment/payflowpro/sort_order',NULL),(123,'default',0,'payment/payflowpro/payment_action','Authorization'),(124,'default',0,'payment/payflowpro/cctypes','AE,VI'),(125,'default',0,'payment/payflowpro/allowspecific','0'),(126,'default',0,'payment/payflowpro/debug','0'),(127,'default',0,'payment/payflowpro/verify_peer','1'),(128,'default',0,'payment/payflowpro/useccv','1'),(129,'default',0,'payment/payflowpro/avs_street','0'),(130,'default',0,'payment/payflowpro/avs_zip','0'),(131,'default',0,'payment/payflowpro/avs_international','0'),(132,'default',0,'payment/payflowpro/avs_security_code','1'),(133,'default',0,'payment/wps_express/active','0'),(134,'default',0,'payment/wps_express_bml/active','0'),(135,'default',0,'paypal/wpp/api_authentication','0'),(136,'default',0,'paypal/wpp/sandbox_flag','0'),(137,'default',0,'paypal/wpp/use_proxy','0'),(138,'default',0,'payment/paypal_express/title','PayPal Express Checkout'),(139,'default',0,'payment/paypal_express/sort_order',NULL),(140,'default',0,'payment/paypal_express/payment_action','Authorization'),(141,'default',0,'payment/paypal_express/visible_on_product','1'),(142,'default',0,'payment/paypal_express/visible_on_cart','1'),(143,'default',0,'payment/paypal_express/allowspecific','0'),(144,'default',0,'payment/paypal_express/debug','0'),(145,'default',0,'payment/paypal_express/verify_peer','1'),(146,'default',0,'payment/paypal_express/line_items_enabled','1'),(147,'default',0,'payment/paypal_express/transfer_shipping_options','0'),(148,'default',0,'paypal/wpp/button_flavor','dynamic'),(149,'default',0,'payment/paypal_express/solution_type','Mark'),(150,'default',0,'payment/paypal_express/require_billing_address','0'),(151,'default',0,'payment/paypal_express/allow_ba_signup','never'),(152,'default',0,'payment/paypal_billing_agreement/active','1'),(153,'default',0,'payment/paypal_billing_agreement/title','PayPal Billing Agreement'),(154,'default',0,'payment/paypal_billing_agreement/sort_order',NULL),(155,'default',0,'payment/paypal_billing_agreement/payment_action','Authorization'),(156,'default',0,'payment/paypal_billing_agreement/allowspecific','0'),(157,'default',0,'payment/paypal_billing_agreement/debug','0'),(158,'default',0,'payment/paypal_billing_agreement/verify_peer','1'),(159,'default',0,'payment/paypal_billing_agreement/line_items_enabled','0'),(160,'default',0,'payment/paypal_billing_agreement/allow_billing_agreement_wizard','1'),(161,'default',0,'payment/payflowpro/active','0'),(162,'default',0,'payment/payflow_link/active','0'),(163,'default',0,'payment/payflow_link/partner','PayPal'),(164,'default',0,'payment/payflow_link/vendor',NULL),(165,'default',0,'payment/payflow_link/sandbox_flag','0'),(166,'default',0,'payment/payflow_link/use_proxy','0'),(167,'default',0,'payment/payflow_link/title','Credit Card'),(168,'default',0,'payment/payflow_link/sort_order',NULL),(169,'default',0,'payment/payflow_link/payment_action','Authorization'),(170,'default',0,'payment/payflow_link/allowspecific','0'),(171,'default',0,'payment/payflow_link/debug','0'),(172,'default',0,'payment/payflow_link/verify_peer','1'),(173,'default',0,'payment/payflow_link/csc_editable','1'),(174,'default',0,'payment/payflow_link/csc_required','1'),(175,'default',0,'payment/payflow_link/email_confirmation','0'),(176,'default',0,'payment/payflow_link/url_method','GET'),(177,'default',0,'payment/paypal_express/active','0'),(178,'default',0,'payment/paypal_express_bml/active','0'),(179,'default',0,'payment/checkmo/active','1'),(180,'default',0,'payment/checkmo/title','Check / Money order'),(181,'default',0,'payment/checkmo/order_status','pending'),(182,'default',0,'payment/checkmo/allowspecific','0'),(183,'default',0,'payment/checkmo/specificcountry',NULL),(184,'default',0,'payment/checkmo/payable_to',NULL),(185,'default',0,'payment/checkmo/mailing_address',NULL),(186,'default',0,'payment/checkmo/min_order_total',NULL),(187,'default',0,'payment/checkmo/max_order_total',NULL),(188,'default',0,'payment/checkmo/sort_order',NULL),(189,'default',0,'payment/cashondelivery/active','1'),(190,'default',0,'payment/cashondelivery/title','Cash On Delivery'),(191,'default',0,'payment/cashondelivery/order_status','pending'),(192,'default',0,'payment/cashondelivery/allowspecific','0'),(193,'default',0,'payment/cashondelivery/specificcountry',NULL),(194,'default',0,'payment/cashondelivery/instructions',NULL),(195,'default',0,'payment/cashondelivery/min_order_total',NULL),(196,'default',0,'payment/cashondelivery/max_order_total',NULL),(197,'default',0,'payment/cashondelivery/sort_order',NULL),(198,'default',0,'payment/banktransfer/active','1'),(199,'default',0,'payment/banktransfer/title','Bank Transfer Payment'),(200,'default',0,'payment/banktransfer/order_status','pending'),(201,'default',0,'payment/banktransfer/allowspecific','0'),(202,'default',0,'payment/banktransfer/specificcountry',NULL),(203,'default',0,'payment/banktransfer/instructions',NULL),(204,'default',0,'payment/banktransfer/min_order_total',NULL),(205,'default',0,'payment/banktransfer/max_order_total',NULL),(206,'default',0,'payment/banktransfer/sort_order',NULL),(207,'default',0,'payment/free/title','No Payment Information Required'),(208,'default',0,'payment/free/active','1'),(209,'default',0,'payment/free/order_status','pending'),(210,'default',0,'payment/free/allowspecific','0'),(211,'default',0,'payment/free/specificcountry',NULL),(212,'default',0,'payment/free/sort_order','1'),(213,'default',0,'payment/purchaseorder/active','1'),(214,'default',0,'payment/purchaseorder/title','Purchase Order'),(215,'default',0,'payment/purchaseorder/order_status','pending'),(216,'default',0,'payment/purchaseorder/allowspecific','0'),(217,'default',0,'payment/purchaseorder/specificcountry',NULL),(218,'default',0,'payment/purchaseorder/min_order_total',NULL),(219,'default',0,'payment/purchaseorder/max_order_total',NULL),(220,'default',0,'payment/purchaseorder/sort_order',NULL),(221,'default',0,'payment/authorizenet_directpost/active','1'),(222,'default',0,'payment/authorizenet_directpost/payment_action','authorize'),(223,'default',0,'payment/authorizenet_directpost/title','Credit Card Direct Post (Authorize.net)'),(224,'default',0,'payment/authorizenet_directpost/order_status','processing'),(225,'default',0,'payment/authorizenet_directpost/test','1'),(226,'default',0,'payment/authorizenet_directpost/cgi_url','https://secure.authorize.net/gateway/transact.dll'),(227,'default',0,'payment/authorizenet_directpost/cgi_url_td','https://api2.authorize.net/xml/v1/request.api'),(228,'default',0,'payment/authorizenet_directpost/currency','USD'),(229,'default',0,'payment/authorizenet_directpost/debug','0'),(230,'default',0,'payment/authorizenet_directpost/email_customer','0'),(231,'default',0,'payment/authorizenet_directpost/merchant_email',NULL),(232,'default',0,'payment/authorizenet_directpost/cctypes','AE,VI,MC,DI'),(233,'default',0,'payment/authorizenet_directpost/useccv','0'),(234,'default',0,'payment/authorizenet_directpost/allowspecific','0'),(235,'default',0,'payment/authorizenet_directpost/min_order_total',NULL),(236,'default',0,'payment/authorizenet_directpost/max_order_total',NULL),(237,'default',0,'payment/authorizenet_directpost/sort_order',NULL),(238,'default',0,'payment/braintree/public_key','0:2:N0QO0UMZO2fsUYqjGHCgiPxapsDxdfQR:YS66eAz1MQA12iu/ErWE0C1U1qK7fWvo+bmGA+PWY2k='),(239,'default',0,'payment/braintree/private_key','0:2:xvVh7LV0QeKEvUa3mhb1FchXFE1LlIGI:ri1BZsG4nOF1SsM23YLFojAwNPxu9IWFeh/SI/2Tkdw='),(240,'default',0,'payment/buckaroo_magento2_account/active','1'),(241,'default',0,'payment/buckaroo_magento2_account/secret_key',NULL),(242,'default',0,'payment/buckaroo_magento2_account/merchant_key',NULL),(243,'default',0,'payment/buckaroo_magento2_account/transaction_label',NULL),(244,'default',0,'payment/buckaroo_magento2_account/certificate_file','1'),(245,'default',0,'payment/buckaroo_magento2_account/advanced',NULL),(246,'default',0,'payment/buckaroo_magento2_ideal/title','Buckaroo iDEAL'),(247,'default',0,'payment/buckaroo_magento2_ideal/sort_order','1'),(248,'default',0,'payment/buckaroo_magento2_ideal/order_email','0'),(249,'default',0,'payment/buckaroo_magento2_ideal/payment_fee',NULL),(250,'default',0,'payment/buckaroo_magento2_ideal/payment_fee_label',NULL),(251,'default',0,'payment/buckaroo_magento2_ideal/max_amount',NULL),(252,'default',0,'payment/buckaroo_magento2_ideal/min_amount',NULL),(253,'default',0,'payment/buckaroo_magento2_ideal/active_status','0'),(254,'default',0,'payment/buckaroo_magento2_ideal/allowspecific','0'),(255,'default',0,'payment/buckaroo_magento2_ideal/limit_by_ip','0'),(256,'default',0,'payment/buckaroo_magento2_creditcards/active','0'),(257,'default',0,'payment/buckaroo_magento2_creditcards/title',NULL),(258,'default',0,'payment/buckaroo_magento2_creditcards/sort_order',NULL),(259,'default',0,'payment/buckaroo_magento2_creditcards/max_amount',NULL),(260,'default',0,'payment/buckaroo_magento2_creditcards/min_amount',NULL),(261,'default',0,'payment/buckaroo_magento2_creditcards/active_status','0'),(262,'default',0,'payment/buckaroo_magento2_creditcards/allowspecific','0'),(263,'default',0,'payment/buckaroo_magento2_creditcards/limit_by_ip','0'),(264,'default',0,'payment/buckaroo_magento2_creditcards/amex_payment_fee',NULL),(265,'default',0,'payment/buckaroo_magento2_creditcards/amex_payment_fee_label',NULL),(266,'default',0,'payment/buckaroo_magento2_creditcards/maestro_payment_fee',NULL),(267,'default',0,'payment/buckaroo_magento2_creditcards/maestro_payment_fee_label',NULL),(268,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_unsecure_status_processing',NULL),(269,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_unsecure_hold','0'),(270,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_payment_fee',NULL),(271,'default',0,'payment/buckaroo_magento2_creditcards/mastercard_payment_fee_label',NULL),(272,'default',0,'payment/buckaroo_magento2_creditcards/visa_unsecure_status_processing',NULL),(273,'default',0,'payment/buckaroo_magento2_creditcards/visa_unsecure_hold','0'),(274,'default',0,'payment/buckaroo_magento2_creditcards/visa_payment_fee',NULL),(275,'default',0,'payment/buckaroo_magento2_creditcards/visa_payment_fee_label',NULL),(276,'default',0,'payment/buckaroo_magento2_paypal/active','1'),(277,'default',0,'payment/buckaroo_magento2_paypal/title','Buckaroo PayPal'),(278,'default',0,'payment/buckaroo_magento2_paypal/sort_order','1'),(279,'default',0,'payment/buckaroo_magento2_paypal/sellers_protection','0'),(280,'default',0,'payment/buckaroo_magento2_paypal/order_email','0'),(281,'default',0,'payment/buckaroo_magento2_paypal/payment_fee',NULL),(282,'default',0,'payment/buckaroo_magento2_paypal/payment_fee_label',NULL),(283,'default',0,'payment/buckaroo_magento2_paypal/max_amount',NULL),(284,'default',0,'payment/buckaroo_magento2_paypal/min_amount',NULL),(285,'default',0,'payment/buckaroo_magento2_paypal/active_status','0'),(286,'default',0,'payment/buckaroo_magento2_paypal/allowspecific','0'),(287,'default',0,'payment/buckaroo_magento2_paypal/limit_by_ip','0'),(288,'default',0,'payment/buckaroo_magento2_bank_transfer/active','0'),(289,'default',0,'payment/buckaroo_magento2_bank_transfer/title',NULL),(290,'default',0,'payment/buckaroo_magento2_bank_transfer/sort_order',NULL),(291,'default',0,'payment/buckaroo_magento2_bank_transfer/send_email','0'),(292,'default',0,'payment/buckaroo_magento2_bank_transfer/due_date',NULL),(293,'default',0,'payment/buckaroo_magento2_bank_transfer/use_creditmanagement','0'),(294,'default',0,'payment/buckaroo_magento2_bank_transfer/order_email','0'),(295,'default',0,'payment/buckaroo_magento2_bank_transfer/payment_fee',NULL),(296,'default',0,'payment/buckaroo_magento2_bank_transfer/payment_fee_label',NULL),(297,'default',0,'payment/buckaroo_magento2_bank_transfer/max_amount',NULL),(298,'default',0,'payment/buckaroo_magento2_bank_transfer/min_amount',NULL),(299,'default',0,'payment/buckaroo_magento2_bank_transfer/active_status','0'),(300,'default',0,'payment/buckaroo_magento2_bank_transfer/allowspecific','0'),(301,'default',0,'payment/buckaroo_magento2_bank_transfer/limit_by_ip','0'),(302,'default',0,'payment/buckaroo_magento2_directdebit/active','0'),(303,'default',0,'payment/buckaroo_magento2_directdebit/title',NULL),(304,'default',0,'payment/buckaroo_magento2_directdebit/sort_order',NULL),(305,'default',0,'payment/buckaroo_magento2_directdebit/send_email','0'),(306,'default',0,'payment/buckaroo_magento2_directdebit/use_creditmanagement','0'),(307,'default',0,'payment/buckaroo_magento2_directdebit/order_email','0'),(308,'default',0,'payment/buckaroo_magento2_directdebit/payment_fee',NULL),(309,'default',0,'payment/buckaroo_magento2_directdebit/payment_fee_label',NULL),(310,'default',0,'payment/buckaroo_magento2_directdebit/max_amount',NULL),(311,'default',0,'payment/buckaroo_magento2_directdebit/min_amount',NULL),(312,'default',0,'payment/buckaroo_magento2_directdebit/active_status','0'),(313,'default',0,'payment/buckaroo_magento2_directdebit/allowspecific','0'),(314,'default',0,'payment/buckaroo_magento2_directdebit/limit_by_ip','0'),(315,'default',0,'payment/buckaroo_magento2_bancontactmrcash/active','0'),(316,'default',0,'payment/buckaroo_magento2_bancontactmrcash/title',NULL),(317,'default',0,'payment/buckaroo_magento2_bancontactmrcash/sort_order',NULL),(318,'default',0,'payment/buckaroo_magento2_bancontactmrcash/payment_fee',NULL),(319,'default',0,'payment/buckaroo_magento2_bancontactmrcash/payment_fee_label',NULL),(320,'default',0,'payment/buckaroo_magento2_bancontactmrcash/max_amount',NULL),(321,'default',0,'payment/buckaroo_magento2_bancontactmrcash/min_amount',NULL),(322,'default',0,'payment/buckaroo_magento2_bancontactmrcash/active_status','0'),(323,'default',0,'payment/buckaroo_magento2_bancontactmrcash/allowspecific','0'),(324,'default',0,'payment/buckaroo_magento2_bancontactmrcash/limit_by_ip','0'),(325,'default',0,'buckaroo_magento2/account/active','1'),(326,'default',0,'buckaroo_magento2/account/secret_key',NULL),(327,'default',0,'buckaroo_magento2/account/merchant_key',NULL),(328,'default',0,'buckaroo_magento2/account/transaction_label','Magento Buckaroo'),(329,'default',0,'buckaroo_magento2/account/certificate_file','1'),(330,'default',0,'buckaroo_magento2/account/order_state_new',NULL),(331,'default',0,'buckaroo_magento2/account/order_state_pending',NULL),(332,'default',0,'buckaroo_magento2/account/order_state_success',NULL),(333,'default',0,'buckaroo_magento2/account/order_state_failed',NULL),(334,'default',0,'buckaroo_magento2/account/invoice_email','1'),(335,'default',0,'buckaroo_magento2/account/auto_invoice','1'),(336,'default',0,'buckaroo_magento2/account/auto_invoice_status','pending'),(337,'default',0,'buckaroo_magento2/account/success_redirect','checkout/onepage/success'),(338,'default',0,'buckaroo_magento2/account/failure_redirect','checkout/onepage'),(339,'default',0,'buckaroo_magento2/account/cancel_on_failed','1'),(340,'default',0,'buckaroo_magento2/account/debug_mode',NULL),(341,'default',0,'buckaroo_magento2/account/debug_email',NULL),(342,'default',0,'buckaroo_magento2/account/limit_by_ip','0'),(343,'default',0,'buckaroo_magento2/account/fee_percentage_mode','subtotal'),(344,'default',0,'payment/buckaroo_magento2_creditcard/active','1'),(345,'default',0,'payment/buckaroo_magento2_creditcard/title','Buckaroo Creditcard and Debit Card'),(346,'default',0,'payment/buckaroo_magento2_creditcard/sort_order','30'),(347,'default',0,'payment/buckaroo_magento2_creditcard/max_amount',NULL),(348,'default',0,'payment/buckaroo_magento2_creditcard/min_amount',NULL),(349,'default',0,'payment/buckaroo_magento2_creditcard/active_status','0'),(350,'default',0,'payment/buckaroo_magento2_creditcard/allowspecific','0'),(351,'default',0,'payment/buckaroo_magento2_creditcard/limit_by_ip','0'),(352,'default',0,'payment/buckaroo_magento2_creditcard/amex_payment_fee',NULL),(353,'default',0,'payment/buckaroo_magento2_creditcard/amex_payment_fee_label','Fee'),(354,'default',0,'payment/buckaroo_magento2_creditcard/maestro_payment_fee',NULL),(355,'default',0,'payment/buckaroo_magento2_creditcard/maestro_payment_fee_label','Fee'),(356,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_unsecure_status_processing',NULL),(357,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_unsecure_hold','0'),(358,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_payment_fee',NULL),(359,'default',0,'payment/buckaroo_magento2_creditcard/mastercard_payment_fee_label','Fee'),(360,'default',0,'payment/buckaroo_magento2_creditcard/visa_unsecure_status_processing',NULL),(361,'default',0,'payment/buckaroo_magento2_creditcard/visa_unsecure_hold','0'),(362,'default',0,'payment/buckaroo_magento2_creditcard/visa_payment_fee',NULL),(363,'default',0,'payment/buckaroo_magento2_creditcard/visa_payment_fee_label','Fee'),(364,'default',0,'payment/buckaroo_magento2_transfer/active','1'),(365,'default',0,'payment/buckaroo_magento2_transfer/title','Buckaroo Transfer'),(366,'default',0,'payment/buckaroo_magento2_transfer/sort_order','100'),(367,'default',0,'payment/buckaroo_magento2_transfer/send_email','0'),(368,'default',0,'payment/buckaroo_magento2_transfer/due_date','7'),(369,'default',0,'payment/buckaroo_magento2_transfer/use_creditmanagement','0'),(370,'default',0,'payment/buckaroo_magento2_transfer/order_email','1'),(371,'default',0,'payment/buckaroo_magento2_transfer/payment_fee',NULL),(372,'default',0,'payment/buckaroo_magento2_transfer/payment_fee_label','Fee'),(373,'default',0,'payment/buckaroo_magento2_transfer/max_amount',NULL),(374,'default',0,'payment/buckaroo_magento2_transfer/min_amount',NULL),(375,'default',0,'payment/buckaroo_magento2_transfer/active_status','0'),(376,'default',0,'payment/buckaroo_magento2_transfer/allowspecific','0'),(377,'default',0,'payment/buckaroo_magento2_transfer/limit_by_ip','0'),(378,'default',0,'payment/buckaroo_magento2_sepadirectdebit/active','1'),(379,'default',0,'payment/buckaroo_magento2_sepadirectdebit/title','Buckaroo SEPA Direct Debit'),(380,'default',0,'payment/buckaroo_magento2_sepadirectdebit/sort_order','110'),(381,'default',0,'payment/buckaroo_magento2_sepadirectdebit/send_email','1'),(382,'default',0,'payment/buckaroo_magento2_sepadirectdebit/use_creditmanagement','0'),(383,'default',0,'payment/buckaroo_magento2_sepadirectdebit/order_email','1'),(384,'default',0,'payment/buckaroo_magento2_sepadirectdebit/payment_fee',NULL),(385,'default',0,'payment/buckaroo_magento2_sepadirectdebit/payment_fee_label',NULL),(386,'default',0,'payment/buckaroo_magento2_sepadirectdebit/max_amount',NULL),(387,'default',0,'payment/buckaroo_magento2_sepadirectdebit/min_amount',NULL),(388,'default',0,'payment/buckaroo_magento2_sepadirectdebit/active_status','0'),(389,'default',0,'payment/buckaroo_magento2_sepadirectdebit/allowspecific','0'),(390,'default',0,'payment/buckaroo_magento2_sepadirectdebit/limit_by_ip','0'),(391,'default',0,'payment/buckaroo_magento2_mrcash/active','1'),(392,'default',0,'payment/buckaroo_magento2_mrcash/title','Buckaroo Mrcash'),(393,'default',0,'payment/buckaroo_magento2_mrcash/sort_order','140'),(394,'default',0,'payment/buckaroo_magento2_mrcash/payment_fee',NULL),(395,'default',0,'payment/buckaroo_magento2_mrcash/payment_fee_label','Fee'),(396,'default',0,'payment/buckaroo_magento2_mrcash/max_amount',NULL),(397,'default',0,'payment/buckaroo_magento2_mrcash/min_amount',NULL),(398,'default',0,'payment/buckaroo_magento2_mrcash/active_status','0'),(399,'default',0,'payment/buckaroo_magento2_mrcash/allowspecific','0'),(400,'default',0,'payment/buckaroo_magento2_mrcash/limit_by_ip','0'),(421,'default',0,'buckaroo_magento2/refund/active','0'),(422,'default',0,'system/full_page_cache/varnish/access_list','localhost'),(423,'default',0,'system/full_page_cache/varnish/backend_host','localhost'),(424,'default',0,'system/full_page_cache/varnish/backend_port','8080'),(425,'default',0,'dev/front_end_development_workflow/type','server_side_compilation'),(426,'default',0,'dev/restrict/allow_ips','127.0.0.2,::2'),(427,'default',0,'dev/debug/template_hints_storefront','0'),(428,'default',0,'dev/debug/template_hints_admin','0'),(429,'default',0,'dev/debug/template_hints_blocks','0'),(430,'default',0,'dev/template/allow_symlink','0'),(431,'default',0,'dev/template/minify_html','0'),(432,'default',0,'dev/translate_inline/active','0'),(433,'default',0,'dev/translate_inline/active_admin','0'),(434,'default',0,'dev/js/enable_js_bundling','0'),(435,'default',0,'dev/js/merge_files','0'),(436,'default',0,'dev/js/minify_files','0'),(437,'default',0,'dev/js/translate_strategy','dictionary'),(438,'default',0,'dev/js/session_storage_logging','0'),(439,'default',0,'dev/js/session_storage_key','collected_errors'),(440,'default',0,'dev/css/merge_css_files','0'),(441,'default',0,'dev/css/minify_files','0'),(442,'default',0,'dev/image/default_adapter','GD2'),(443,'default',0,'dev/static/sign','0'),(444,'default',0,'dev/grid/async_indexing','0'),(445,'default',0,'payment/buckaroo_magento2_creditcard/allowed_issuers','cartebleuevisa,maestro,mastercard,visa'),(446,'default',0,'admin/emails/forgot_email_template','admin_emails_forgot_email_template'),(447,'default',0,'admin/emails/forgot_email_identity','general'),(448,'default',0,'admin/emails/password_reset_link_expiration_period','1'),(449,'default',0,'admin/emails/reset_password_template','admin_emails_reset_password_template'),(450,'default',0,'admin/startup/menu_item_id','Magento_Backend::dashboard'),(451,'default',0,'admin/url/use_custom','0'),(452,'default',0,'admin/url/use_custom_path','0'),(453,'default',0,'admin/security/use_form_key','1'),(454,'default',0,'admin/security/use_case_sensitive_login','0'),(455,'default',0,'admin/security/session_lifetime','999999'),(456,'default',0,'admin/security/lockout_failures','6'),(457,'default',0,'admin/security/lockout_threshold','30'),(458,'default',0,'admin/security/password_lifetime','90'),(459,'default',0,'admin/security/password_is_forced','1'),(460,'default',0,'admin/dashboard/enable_charts','0'),(461,'default',0,'admin/captcha/enable','0'),(462,'default',0,'payment/buckaroo_magento2_ideal/specificcountry','AF'),(465,'default',0,'buckaroo_magento2/account/order_status_new',NULL),(466,'default',0,'buckaroo_magento2/account/order_status_pending',NULL),(467,'default',0,'buckaroo_magento2/account/order_status_success',NULL),(468,'default',0,'buckaroo_magento2/account/order_status_failed',NULL),(469,'default',0,'payment/buckaroo_magento2_ideal/allowed_currencies','ARS,AUD,BRL,CAD,CHF,CNY,CZK,DKK,EUR,GBP,HRK,LTL,LVL,MXN,MXP,NOK,PLN,SEK,TRL,TRY,USD');
/*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;
UNLOCK TABLES;
@@ -6189,7 +6189,7 @@ CREATE TABLE `quote_payment` (
LOCK TABLES `quote_payment` WRITE;
/*!40000 ALTER TABLE `quote_payment` DISABLE KEYS */;
-INSERT INTO `quote_payment` VALUES (1,4,'2015-12-10 08:26:08','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:6:\"232039\";}',NULL,NULL,NULL),(2,12,'2015-12-11 07:32:08','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:23:\"een twee drie vier vijf\";}',NULL,NULL,NULL),(3,15,'2015-12-14 13:13:37','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"ABNANL2A\";}',NULL,NULL,NULL),(4,27,'2015-12-14 15:15:56','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abcdef2a\";}',NULL,NULL,NULL),(5,28,'2015-12-14 15:23:55','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abcdef2a\";}',NULL,NULL,NULL),(6,29,'2015-12-16 10:58:40','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"SNSBNL2A\";}',NULL,NULL,NULL),(7,32,'2015-12-16 12:19:05','0000-00-00 00:00:00','buckaroo_magento2_giropay',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abasde2d\";}',NULL,NULL,NULL),(8,33,'2015-12-16 12:48:12','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(9,34,'2015-12-16 14:32:26','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(10,35,'2015-12-16 14:52:56','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(11,36,'2015-12-17 11:01:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,37,'2015-12-17 12:22:05','0000-00-00 00:00:00','buckaroo_magento2_sepadirectdebit',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:3:{s:12:\"customer_bic\";s:8:\"abcdef2a\";s:13:\"customer_iban\";s:0:\"\";s:21:\"customer_account_name\";s:9:\"piet henk\";}',NULL,NULL,NULL),(13,38,'2015-12-21 10:55:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,39,'2015-12-28 12:18:18','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:6:\"issuer\";N;}',NULL,NULL,NULL),(15,40,'2015-12-28 15:19:32','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,41,'2015-12-29 08:49:03','0000-00-00 00:00:00','buckaroo_magento2_creditcard',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:9:\"card_type\";N;}',NULL,NULL,NULL),(17,42,'2015-12-29 13:25:40','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,43,'2015-12-30 10:01:24','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:6:\"issuer\";N;}',NULL,NULL,NULL),(19,44,'2015-12-30 13:30:06','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,45,'2015-12-31 08:25:37','0000-00-00 00:00:00','buckaroo_magento2_transfer',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";}',NULL,NULL,NULL),(21,46,'2016-01-07 15:22:34','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,47,'2016-01-13 09:42:30','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,48,'2016-01-14 13:04:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,49,'2016-02-01 14:27:00','0000-00-00 00:00:00','buckaroo_magento2_paypal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:24:\"buckaroo_skip_validation\";N;}',NULL,NULL,NULL),(25,50,'2016-02-02 07:40:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,51,'2016-02-02 07:43:33','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,52,'2016-02-02 07:44:53','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,53,'2016-02-02 07:45:06','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,54,'2016-02-02 07:46:32','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,55,'2016-02-02 07:51:16','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,56,'2016-02-02 07:52:26','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,57,'2016-02-02 07:54:54','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,58,'2016-02-02 07:55:57','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
+INSERT INTO `quote_payment` VALUES (1,4,'2015-12-10 08:26:08','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:6:\"232039\";}',NULL,NULL,NULL),(2,12,'2015-12-11 07:32:08','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:23:\"een twee drie vier vijf\";}',NULL,NULL,NULL),(3,15,'2015-12-14 13:13:37','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"ABNANL2A\";}',NULL,NULL,NULL),(4,27,'2015-12-14 15:15:56','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abcdef2a\";}',NULL,NULL,NULL),(5,28,'2015-12-14 15:23:55','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abcdef2a\";}',NULL,NULL,NULL),(6,29,'2015-12-16 10:58:40','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"SNSBNL2A\";}',NULL,NULL,NULL),(7,32,'2015-12-16 12:19:05','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:12:\"customer_bic\";s:8:\"abasde2d\";}',NULL,NULL,NULL),(8,33,'2015-12-16 12:48:12','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(9,34,'2015-12-16 14:32:26','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(10,35,'2015-12-16 14:52:56','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:6:\"issuer\";s:8:\"RABONL2U\";}',NULL,NULL,NULL),(11,36,'2015-12-17 11:01:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,37,'2015-12-17 12:22:05','0000-00-00 00:00:00','buckaroo_magento2_sepadirectdebit',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:3:{s:12:\"customer_bic\";s:8:\"abcdef2a\";s:13:\"customer_iban\";s:0:\"\";s:21:\"customer_account_name\";s:9:\"piet henk\";}',NULL,NULL,NULL),(13,38,'2015-12-21 10:55:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,39,'2015-12-28 12:18:18','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:6:\"issuer\";N;}',NULL,NULL,NULL),(15,40,'2015-12-28 15:19:32','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,41,'2015-12-29 08:49:03','0000-00-00 00:00:00','buckaroo_magento2_creditcard',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:9:\"card_type\";N;}',NULL,NULL,NULL),(17,42,'2015-12-29 13:25:40','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,43,'2015-12-30 10:01:24','0000-00-00 00:00:00','buckaroo_magento2_ideal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:2:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";s:6:\"issuer\";N;}',NULL,NULL,NULL),(19,44,'2015-12-30 13:30:06','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,45,'2015-12-31 08:25:37','0000-00-00 00:00:00','buckaroo_magento2_transfer',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:24:\"buckaroo_skip_validation\";s:1:\"1\";}',NULL,NULL,NULL),(21,46,'2016-01-07 15:22:34','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,47,'2016-01-13 09:42:30','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,48,'2016-01-14 13:04:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,49,'2016-02-01 14:27:00','0000-00-00 00:00:00','buckaroo_magento2_paypal',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'a:1:{s:24:\"buckaroo_skip_validation\";N;}',NULL,NULL,NULL),(25,50,'2016-02-02 07:40:50','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,51,'2016-02-02 07:43:33','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,52,'2016-02-02 07:44:53','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,53,'2016-02-02 07:45:06','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,54,'2016-02-02 07:46:32','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,55,'2016-02-02 07:51:16','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,56,'2016-02-02 07:52:26','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,57,'2016-02-02 07:54:54','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,58,'2016-02-02 07:55:57','0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_payment` ENABLE KEYS */;
UNLOCK TABLES;
diff --git a/Test/Unit/Model/Config/Source/PaymentMethods/AfterExpiryTest.php b/Test/Unit/Model/Config/Source/PaymentMethods/AfterExpiryTest.php
index 5fb49443f..b6c021869 100644
--- a/Test/Unit/Model/Config/Source/PaymentMethods/AfterExpiryTest.php
+++ b/Test/Unit/Model/Config/Source/PaymentMethods/AfterExpiryTest.php
@@ -53,9 +53,6 @@ public function toOptionArrayProvider()
[
['value' => 'paypal', 'label' => 'PayPal']
],
- [
- ['value' => 'sofortueberweisung', 'label' => 'Sofort Banking']
- ],
[
['value' => 'transfer', 'label' => 'Bank Transfer']
],
diff --git a/Test/Unit/Model/Config/Source/PaymentMethods/PayPerEmailTest.php b/Test/Unit/Model/Config/Source/PaymentMethods/PayPerEmailTest.php
index 2d3dd894f..aca28a612 100644
--- a/Test/Unit/Model/Config/Source/PaymentMethods/PayPerEmailTest.php
+++ b/Test/Unit/Model/Config/Source/PaymentMethods/PayPerEmailTest.php
@@ -56,9 +56,6 @@ public function toOptionArrayProvider()
[
['value' => 'paypal', 'label' => 'PayPal']
],
- [
- ['value' => 'sofortueberweisung', 'label' => 'Sofort Banking']
- ],
[
['value' => 'transfer', 'label' => 'Bank Transfer']
],
diff --git a/Test/Unit/Model/ConfigProvider/Method/SofortbankingTest.php b/Test/Unit/Model/ConfigProvider/Method/SofortbankingTest.php
deleted file mode 100644
index 2aae8c45f..000000000
--- a/Test/Unit/Model/ConfigProvider/Method/SofortbankingTest.php
+++ /dev/null
@@ -1,137 +0,0 @@
- [
- [
- 'payment' => [
- 'buckaroo' => [
- 'sofortbanking' => [
- 'paymentFeeLabel' => 'Fee',
- 'allowedCurrencies' => ['EUR']
- ]
- ]
- ]
- ]
- ]
- ];
- }
-
- /**
- * @param $expected
- *
- * @dataProvider getConfigProvider
- */
- public function testGetConfig($expected)
- {
- $scopeConfigMock = $this->getFakeMock(ScopeConfigInterface::class)
- ->setMethods(['getValue'])
- ->getMockForAbstractClass();
- $scopeConfigMock->expects($this->atLeastOnce())
- ->method('getValue')
- ->withConsecutive(
- [Sofortbanking::XPATH_ALLOWED_CURRENCIES, ScopeInterface::SCOPE_STORE, null]
- )
- ->willReturnOnConsecutiveCalls('EUR');
-
- $paymentFeeMock = $this->getFakeMock(PaymentFee::class)->setMethods(['getBuckarooPaymentFeeLabel'])->getMock();
- $paymentFeeMock->method('getBuckarooPaymentFeeLabel')->with(SofortbankingMethod::PAYMENT_METHOD_CODE)->willReturn('Fee');
-
- $instance = $this->getInstance(['scopeConfig' => $scopeConfigMock, 'paymentFeeHelper' => $paymentFeeMock]);
- $result = $instance->getConfig();
-
- $this->assertEquals($expected, $result);
- }
-
- public function getPaymentFeeProvider()
- {
- return [
- 'null value' => [
- null,
- false
- ],
- 'false value' => [
- false,
- false
- ],
- 'empty int value' => [
- 0,
- false
- ],
- 'empty float value' => [
- 0.00,
- false
- ],
- 'empty string value' => [
- '',
- false
- ],
- 'int value' => [
- 1,
- 1
- ],
- 'float value' => [
- 2.34,
- 2.34
- ],
- 'string value' => [
- '5.67',
- 5.67
- ],
- ];
- }
-
- /**
- * @param $value
- * @param $expected
- *
- * @dataProvider getPaymentFeeProvider
- */
- public function testGetPaymentFee($value, $expected)
- {
- $scopeConfigMock = $this->getFakeMock(ScopeConfigInterface::class)
- ->setMethods(['getValue'])
- ->getMockForAbstractClass();
- $scopeConfigMock->expects($this->once())
- ->method('getValue')
- ->with(Sofortbanking::XPATH_SOFORTBANKING_PAYMENT_FEE, ScopeInterface::SCOPE_STORE)
- ->willReturn($value);
-
- $instance = $this->getInstance(['scopeConfig' => $scopeConfigMock]);
- $result = $instance->getPaymentFee();
-
- $this->assertEquals($expected, $result);
- }
-}
diff --git a/Test/Unit/Model/Method/SofortbankingTest.php b/Test/Unit/Model/Method/SofortbankingTest.php
deleted file mode 100644
index 8c6891bc3..000000000
--- a/Test/Unit/Model/Method/SofortbankingTest.php
+++ /dev/null
@@ -1,142 +0,0 @@
- 'orderrr!',
- ];
-
- $paymentMock = $this->getFakeMock(Payment::class)
- ->setMethods(['getOrder', 'setAdditionalInformation'])
- ->getMock();
- $paymentMock->expects($this->once())->method('getOrder')->willReturn($fixture['order']);
-
- $orderMock = $this->getFakeMock(Order::class)->setMethods(['setOrder', 'setMethod', 'setServices'])->getMock();
- $orderMock->expects($this->once())->method('setOrder')->with($fixture['order'])->willReturnSelf();
- $orderMock->expects($this->once())->method('setMethod')->with('TransactionRequest')->willReturnSelf();
- $orderMock->expects($this->once())->method('setServices')->willReturnCallback(
- function ($services) use ($fixture, $orderMock) {
- $this->assertEquals('Sofortueberweisung', $services['Name']);
- $this->assertEquals('Pay', $services['Action']);
-
- return $orderMock;
- }
- );
-
- $trxFactoryMock = $this->getFakeMock(TransactionBuilderFactory::class)->setMethods(['get'])->getMock();
- $trxFactoryMock->expects($this->once())->method('get')->with('order')->willReturn($orderMock);
-
- $infoInterface = $this->getFakeMock(InfoInterface::class)->getMockForAbstractClass();
-
- $instance = $this->getInstance(['transactionBuilderFactory' => $trxFactoryMock]);
-
- $instance->setData('info_instance', $infoInterface);
- $this->assertEquals($orderMock, $instance->getOrderTransactionBuilder($paymentMock));
- }
-
- /**
- * Test the getCaptureTransactionBuilder method.
- */
- public function testGetCaptureTransactionBuilder()
- {
- $infoInterface = $this->getFakeMock(InfoInterface::class)->getMockForAbstractClass();
- $instance = $this->getInstance();
- $this->assertFalse($instance->getCaptureTransactionBuilder($infoInterface));
- }
-
- /**
- * Test the getAuthorizeTransactionBuild method.
- */
- public function testGetAuthorizeTransactionBuilder()
- {
- $infoInterface = $this->getFakeMock(InfoInterface::class)->getMockForAbstractClass();
- $instance = $this->getInstance();
- $this->assertFalse($instance->getAuthorizeTransactionBuilder($infoInterface));
- }
-
- /**
- * Test the getRefundTransactionBuilder method.
- */
- public function testGetRefundTransactionBuilder()
- {
- $fixture = [
- 'card_type' => 'fooname',
- 'order' => 'orderrr!',
- ];
-
- $paymentMock = $this->getFakeMock(Payment::class)
- ->setMethods(['getOrder', 'getAdditionalInformation'])
- ->getMock();
- $paymentMock->expects($this->once())->method('getOrder')->willReturn($fixture['order']);
- $paymentMock->expects($this->once())
- ->method('getAdditionalInformation')
- ->with(Sofortbanking::BUCKAROO_ORIGINAL_TRANSACTION_KEY_KEY)
- ->willReturn('getAdditionalInformation');
-
- $trxFactoryMock = $this->getFakeMock(TransactionBuilderFactory::class)
- ->setMethods(['get', 'setOrder', 'setMethod', 'setChannel', 'setOriginalTransactionKey', 'setServices'])
- ->getMock();
- $trxFactoryMock->expects($this->once())->method('get')->with('refund')->willReturnSelf();
- $trxFactoryMock->expects($this->once())->method('setOrder')->with($fixture['order'])->willReturnSelf();
- $trxFactoryMock->expects($this->once())->method('setMethod')->with('TransactionRequest')->willReturnSelf();
- $trxFactoryMock->expects($this->once())->method('setChannel')->with('CallCenter')->willReturnSelf();
- $trxFactoryMock->expects($this->once())
- ->method('setOriginalTransactionKey')
- ->with('getAdditionalInformation')
- ->willReturnSelf();
- $trxFactoryMock->expects($this->once())->method('setServices')->willReturnCallback(
- function ($services) use ($trxFactoryMock) {
- $services['Name'] = 'sofortbanking';
- $services['Action'] = 'Refund';
-
- return $trxFactoryMock;
- }
- );
-
- $instance = $this->getInstance(['transactionBuilderFactory' => $trxFactoryMock]);
-
- $this->assertEquals($trxFactoryMock, $instance->getRefundTransactionBuilder($paymentMock));
- }
-
- /**
- * Test the getVoidTransactionBuild method.
- */
- public function testGetVoidTransactionBuilder()
- {
- $instance = $this->getInstance();
- $this->assertTrue($instance->getVoidTransactionBuilder(''));
- }
-}
diff --git a/Test/Unit/Model/Method/TransferTest.php b/Test/Unit/Model/Method/TransferTest.php
index ca8d05d3d..afdd8f292 100644
--- a/Test/Unit/Model/Method/TransferTest.php
+++ b/Test/Unit/Model/Method/TransferTest.php
@@ -350,7 +350,6 @@ public function testGetRefundTransactionBuilder()
->willReturnSelf();
$trxFactoryMock->expects($this->once())->method('setServices')->willReturnCallback(
function ($services) use ($trxFactoryMock) {
- $services['Name'] = 'sofortbanking';
$services['Action'] = 'Refund';
return $trxFactoryMock;
diff --git a/Ui/Component/Listing/Column/Method/Filter.php b/Ui/Component/Listing/Column/Method/Filter.php
index 981590392..12de372ab 100644
--- a/Ui/Component/Listing/Column/Method/Filter.php
+++ b/Ui/Component/Listing/Column/Method/Filter.php
@@ -35,24 +35,24 @@ public function toOptionArray()
*/
$result = $db->query(
'
- SELECT
- method,
+ SELECT
+ method,
group_concat(distinct(' .
$this->resourceConnection->getTableName('buckaroo_magento2_giftcard') .
'.servicecode) SEPARATOR "-") as giftcard_codes,
group_concat(distinct(' .
$this->resourceConnection->getTableName('buckaroo_magento2_giftcard') .
- '.label) SEPARATOR "-") as giftcard_titles
+ '.label) SEPARATOR "-") as giftcard_titles
from ' .
$this->resourceConnection->getTableName('sales_order_payment') .
- '
+ '
inner join ' .
$this->resourceConnection->getTableName('sales_order') .
' on ' .
$this->resourceConnection->getTableName('sales_order') .
'.entity_id = ' .
$this->resourceConnection->getTableName('sales_order_payment') .
- '.parent_id
+ '.parent_id
inner join ' .
$this->resourceConnection->getTableName(
'buckaroo_magento2_group_transaction'
@@ -63,7 +63,7 @@ public function toOptionArray()
) .
'.order_id=' .
$this->resourceConnection->getTableName('sales_order') .
- '.increment_id
+ '.increment_id
inner join ' .
$this->resourceConnection->getTableName('buckaroo_magento2_giftcard') .
' on ' .
@@ -72,7 +72,7 @@ public function toOptionArray()
$this->resourceConnection->getTableName(
'buckaroo_magento2_group_transaction'
) .
- '.servicecode
+ '.servicecode
group by ' .
$this->resourceConnection->getTableName(
'buckaroo_magento2_group_transaction'
@@ -105,8 +105,7 @@ public function toOptionArray()
$options = new \Buckaroo\Magento2\Model\Config\Source\PaymentMethods\PayPerEmail();
$option = $options->toOptionArray();
$option = array_merge($option, [
- ['value' => 'creditcards', 'label' => __('Creditcards')],
- ['value' => 'sofortbanking', 'label' => __('Sofort')],
+ ['value' => 'creditcards', 'label' => __('Creditcards')]
]);
foreach ($option as $item) {
$this->options[] = [
diff --git a/etc/adminhtml/system/payment_methods.xml b/etc/adminhtml/system/payment_methods.xml
index 1cba40e38..3db61196a 100644
--- a/etc/adminhtml/system/payment_methods.xml
+++ b/etc/adminhtml/system/payment_methods.xml
@@ -62,8 +62,6 @@
-
-
diff --git a/etc/adminhtml/system/payment_methods/sofort_banking.xml b/etc/adminhtml/system/payment_methods/sofort_banking.xml
deleted file mode 100644
index 0e62bc223..000000000
--- a/etc/adminhtml/system/payment_methods/sofort_banking.xml
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
- Buckaroo\Magento2\Block\Config\Form\Field\Fieldset
-
-
-
-
- Buckaroo\Magento2\Model\Config\Source\Enablemode
- payment/buckaroo_magento2_sofortbanking/active
-
-
-
-
-
- payment/buckaroo_magento2_sofortbanking/title
-
-
-
-
-
- payment/buckaroo_magento2_sofortbanking/subtext
-
-
-
-
-
- Buckaroo\Magento2\Model\Config\Source\SubtextStyle
- payment/buckaroo_magento2_sofortbanking/subtext_style
-
-
-
-
-
- payment/buckaroo_magento2_sofortbanking/subtext_color
- Buckaroo\Magento2\Block\Config\Form\Field\ColorPicker
-
-
-
-
-
-
- payment/buckaroo_magento2_sofortbanking/sort_order
-
-
-
-
-
-
-
-
- Magento\Config\Model\Config\Source\Yesno
- payment/buckaroo_magento2_sofortbanking/order_email
-
-
-
-
- Configuration > Sales > Tax.]]>
- payment/buckaroo_magento2_sofortbanking/payment_fee
- Buckaroo\Magento2\Model\Config\Backend\PaymentFee
-
-
-
-
-
- payment/buckaroo_magento2_sofortbanking/payment_fee_label
-
-
-
-
-
- The payment method shows only for orders with an order amount greater than the minimum amount.
- payment/buckaroo_magento2_sofortbanking/min_amount
- Buckaroo\Magento2\Model\Config\Backend\Price
-
-
-
-
-
- The payment method shows only for orders with an order amount smaller than the maximum amount.
- payment/buckaroo_magento2_sofortbanking/max_amount
- Buckaroo\Magento2\Model\Config\Backend\Price
-
-
-
-
-
- Magento\Config\Model\Config\Source\Yesno
- payment/buckaroo_magento2_sofortbanking/active_status
-
-
-
-
-
- To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.
- Buckaroo\Magento2\Model\Config\Source\StatusesSuccess
- payment/buckaroo_magento2_sofortbanking/order_status_success
-
- 1
-
-
-
-
-
-
- To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.
- Buckaroo\Magento2\Model\Config\Source\StatusesFailed
- payment/buckaroo_magento2_sofortbanking/order_status_failed
-
- 1
-
-
-
-
-
-
- Your contract with Buckaroo must allow for the selected currencies to be used with this payment method.
- payment/buckaroo_magento2_sofortbanking/allowed_currencies
- Buckaroo\Magento2\Model\Config\Source\AllowedCurrencies::sofortbanking
- Buckaroo\Magento2\Model\Config\Backend\AllowedCurrencies
-
-
-
-
- Buckaroo\Magento2\Model\Config\Source\AllOrSpecificCountries
- payment/buckaroo_magento2_sofortbanking/allowspecific
-
-
-
-
-
- Magento\Config\Model\Config\Source\Locale\Country
- payment/buckaroo_magento2_sofortbanking/specificcountry
-
- 1
-
-
-
-
-
-
- Magento developer client restrictions.
- Magento\Config\Model\Config\Source\Yesno
- payment/buckaroo_magento2_sofortbanking/limit_by_ip
-
-
-
-
- Buckaroo\Magento2\Model\Config\Source\SpecificCustomerGroups
- 1
- payment/buckaroo_magento2_sofortbanking/specificcustomergroup
-
-
-
-
diff --git a/etc/config.xml b/etc/config.xml
index fcf21e94c..cbc5d0d23 100644
--- a/etc/config.xml
+++ b/etc/config.xml
@@ -95,7 +95,7 @@
buckaroo_magento2
order
0
- amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,sofortueberweisung,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
+ amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
@@ -161,7 +161,7 @@
buckaroo_magento2
order
1
- amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,sofortueberweisung,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
+ amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
@@ -181,20 +181,6 @@
0
-
- 0
- Buckaroo\Magento2\Model\Method\Sofortbanking
- pending
- Sofort
- 0
- 150
- 1
- Fee
- buckaroo_magento2
- order
- 0
-
-
0
Buckaroo\Magento2\Model\Method\Belfius
@@ -255,8 +241,8 @@
1
1
1
- amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,sepadirectdebit,giftcard,ideal,mastercard,paypal,sofortueberweisung,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
- amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,sofortueberweisung,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
+ amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,sepadirectdebit,giftcard,ideal,mastercard,paypal,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
+ amex,bancontactmrcash,cartebancaire,cartebleuevisa,nexi,postepay,dankort,eps,giftcard,ideal,mastercard,paypal,transfer,visa,maestro,visaelectron,vpay,alipay,wechatpay,p24,trustly,belfius,blik
7
1
diff --git a/etc/di.xml b/etc/di.xml
index 75be01dc6..0282f31d5 100644
--- a/etc/di.xml
+++ b/etc/di.xml
@@ -260,10 +260,6 @@
- sepadirectdebit
- Buckaroo\Magento2\Model\ConfigProvider\Method\SepaDirectDebit
- -
-
- sofortbanking
- - Buckaroo\Magento2\Model\ConfigProvider\Method\Sofortbanking
-
-
- belfius
- Buckaroo\Magento2\Model\ConfigProvider\Method\Belfius
diff --git a/etc/frontend/di.xml b/etc/frontend/di.xml
index 3bb1985b3..e562d7843 100644
--- a/etc/frontend/di.xml
+++ b/etc/frontend/di.xml
@@ -33,7 +33,6 @@
- Buckaroo\Magento2\Model\ConfigProvider\Method\Paypal
- Buckaroo\Magento2\Model\ConfigProvider\Method\SepaDirectDebit
- Buckaroo\Magento2\Model\ConfigProvider\Method\Mrcash
- - Buckaroo\Magento2\Model\ConfigProvider\Method\Sofortbanking
- Buckaroo\Magento2\Model\ConfigProvider\Method\Belfius
- Buckaroo\Magento2\Model\ConfigProvider\Method\Afterpay
- Buckaroo\Magento2\Model\ConfigProvider\Method\Afterpay2
diff --git a/etc/payment.xml b/etc/payment.xml
index 7e03c3606..ca6ae4ce4 100644
--- a/etc/payment.xml
+++ b/etc/payment.xml
@@ -51,9 +51,6 @@
0
-
- 0
-
0
diff --git a/i18n/de_DE.csv b/i18n/de_DE.csv
index 8ee1957a9..69bf86e4a 100644
--- a/i18n/de_DE.csv
+++ b/i18n/de_DE.csv
@@ -84,8 +84,6 @@
"Enable Bancontact / Mister Cash","Bancontact / Mister Cash activieren"
"Please enter a valid BIC number","Bitte geben Sie eine gültige BIC-Nummer ein"
"Please select a issuer from the list","Wählen Sie eine Bank aus der Liste aus"
-"SOFORT","SOFORT"
-"Enable SOFORT","SOFORT activieren"
"Belfius","Belfius"
"Enable Belfius","Belfius activieren"
"Alipay","Alipay"
diff --git a/i18n/es_ES.csv b/i18n/es_ES.csv
index 25943735f..1bb63200d 100644
--- a/i18n/es_ES.csv
+++ b/i18n/es_ES.csv
@@ -84,8 +84,6 @@
"Enable Bancontact / Mister Cash","Activar Bancontact/Mister Cash"
"Please enter a valid BIC number","Introduzca un número BIC válido"
"Please select a issuer from the list","Seleccione un emisor de la lista"
-"SOFORT","SOFORT"
-"Enable SOFORT","Activar SOFORT"
"Belfius","Belfius"
"Enable Belfius","Activar Belfius"
"Alipay","Alipay"
diff --git a/i18n/fr_FR.csv b/i18n/fr_FR.csv
index 76b72f06a..7f99888f6 100644
--- a/i18n/fr_FR.csv
+++ b/i18n/fr_FR.csv
@@ -84,8 +84,6 @@
"Enable Bancontact / Mister Cash","Activer Bancontact / Mister Cash"
"Please enter a valid BIC number","Veuillez entrer un numéro BIC valide"
"Please select a issuer from the list","Sélectionnez une banque dans la liste"
-"SOFORT","SOFORT"
-"Enable SOFORT","Activer SOFORT"
"Belfius","Belfius"
"Enable Belfius","Activer Belfius"
"Alipay","Alipay"
diff --git a/i18n/nl_BE.csv b/i18n/nl_BE.csv
index bd82c60ab..cfcc0c2ee 100644
--- a/i18n/nl_BE.csv
+++ b/i18n/nl_BE.csv
@@ -84,8 +84,6 @@
"Enable Bancontact / Mister Cash","Bancontact / Mister Cash inschakelen"
"Please enter a valid BIC number","Voer een geldig BIC nummer in"
"Please select a issuer from the list","Selecteer een bank uit de lijst"
-"SOFORT","SOFORT"
-"Enable SOFORT","SOFORT inschakelen"
"Belfius","Belfius"
"Enable Belfius","Belfius inschakelen"
"Alipay","Alipay"
diff --git a/i18n/nl_NL.csv b/i18n/nl_NL.csv
index 289b66ed4..bc328bc7e 100644
--- a/i18n/nl_NL.csv
+++ b/i18n/nl_NL.csv
@@ -86,8 +86,6 @@
"Enable Bancontact / Mister Cash","Bancontact / Mister Cash inschakelen"
"Please enter a valid BIC number","Voer een geldig BIC nummer in"
"Please select a issuer from the list","Selecteer een bank uit de lijst"
-"SOFORT","SOFORT"
-"Enable SOFORT","SOFORT inschakelen"
"Belfius","Belfius"
"Enable Belfius","Belfius inschakelen"
"Alipay","Alipay"
diff --git a/view/frontend/layout/checkout_index_index.xml b/view/frontend/layout/checkout_index_index.xml
index 18d1211f4..79fd2e81f 100644
--- a/view/frontend/layout/checkout_index_index.xml
+++ b/view/frontend/layout/checkout_index_index.xml
@@ -123,9 +123,6 @@
-
- true
- -
-
- true
-
-
- true
diff --git a/view/frontend/web/js/view/payment/buckaroo-payments.js b/view/frontend/web/js/view/payment/buckaroo-payments.js
index 3ee78d827..0e1b39510 100644
--- a/view/frontend/web/js/view/payment/buckaroo-payments.js
+++ b/view/frontend/web/js/view/payment/buckaroo-payments.js
@@ -93,10 +93,6 @@ define(
type: 'buckaroo_magento2_mrcash',
component: 'Buckaroo_Magento2/js/view/payment/method-renderer/mrcash'
},
- {
- type: 'buckaroo_magento2_sofortbanking',
- component: 'Buckaroo_Magento2/js/view/payment/method-renderer/sofortbanking'
- },
{
type: 'buckaroo_magento2_belfius',
component: 'Buckaroo_Magento2/js/view/payment/method-renderer/belfius'
diff --git a/view/frontend/web/js/view/payment/method-renderer/giftcards.js b/view/frontend/web/js/view/payment/method-renderer/giftcards.js
index ced797fd1..1a9823017 100644
--- a/view/frontend/web/js/view/payment/method-renderer/giftcards.js
+++ b/view/frontend/web/js/view/payment/method-renderer/giftcards.js
@@ -66,7 +66,7 @@ define(
}
function checkPayments(){
- var p = ["billink","klarnakp","capayableinstallments","sofortbanking","transfer","sepadirectdebit","capayablein3","creditcard","mrcash","payperemail","emandate"];
+ var p = ["billink","klarnakp","capayableinstallments","transfer","sepadirectdebit","capayablein3","creditcard","mrcash","payperemail","emandate"];
p.forEach(function(item) {
$('.buckaroo_magento2_'+item).remove();
});
diff --git a/view/frontend/web/js/view/payment/method-renderer/sofortbanking.js b/view/frontend/web/js/view/payment/method-renderer/sofortbanking.js
deleted file mode 100644
index e3a84db63..000000000
--- a/view/frontend/web/js/view/payment/method-renderer/sofortbanking.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/**
- * NOTICE OF LICENSE
- *
- * This source file is subject to the MIT License
- * It is available through the world-wide-web at this URL:
- * https://tldrlegal.com/license/mit-license
- * If you are unable to obtain it through the world-wide-web, please send an email
- * to support@buckaroo.nl so we can send you a copy immediately.
- *
- * DISCLAIMER
- *
- * Do not edit or add to this file if you wish to upgrade this module to newer
- * versions in the future. If you wish to customize this module for your
- * needs please contact support@buckaroo.nl for more information.
- *
- * @copyright Copyright (c) Buckaroo B.V.
- * @license https://tldrlegal.com/license/mit-license
- */
-/*browser:true*/
-/*global define*/
-define(
- [
- 'jquery',
- 'Magento_Checkout/js/view/payment/default',
- 'Magento_Checkout/js/model/payment/additional-validators',
- 'Buckaroo_Magento2/js/action/place-order',
- 'ko',
- 'Magento_Checkout/js/checkout-data',
- 'Magento_Checkout/js/action/select-payment-method',
- 'buckaroo/checkout/common'
- ],
- function (
- $,
- Component,
- additionalValidators,
- placeOrderAction,
- ko,
- checkoutData,
- selectPaymentMethodAction,
- checkoutCommon
- ) {
- 'use strict';
-
- return Component.extend(
- {
- defaults: {
- template: 'Buckaroo_Magento2/payment/buckaroo_magento2_sofortbanking'
- },
- redirectAfterPlaceOrder: false,
- paymentFeeLabel : window.checkoutConfig.payment.buckaroo.sofortbanking.paymentFeeLabel,
- subtext : window.checkoutConfig.payment.buckaroo.sofortbanking.subtext,
- subTextStyle : checkoutCommon.getSubtextStyle('sofortbanking'),
- currencyCode : window.checkoutConfig.quoteData.quote_currency_code,
- baseCurrencyCode : window.checkoutConfig.quoteData.base_currency_code,
-
- /**
- * @override
- */
- initialize : function (options) {
- if (checkoutData.getSelectedPaymentMethod() == options.index) {
- window.checkoutConfig.buckarooFee.title(this.paymentFeeLabel);
- }
-
- return this._super(options);
- },
-
- /**
- * Place order.
- *
- * placeOrderAction has been changed from Magento_Checkout/js/action/place-order to our own version
- * (Buckaroo_Magento2/js/action/place-order) to prevent redirect and handle the response.
- */
- placeOrder: function (data, event) {
- var self = this,
- placeOrder;
-
- if (event) {
- event.preventDefault();
- }
-
- if (this.validate() && additionalValidators.validate()) {
- this.isPlaceOrderActionAllowed(false);
- placeOrder = placeOrderAction(this.getData(), this.redirectAfterPlaceOrder, this.messageContainer);
-
- $.when(placeOrder).fail(
- function () {
- self.isPlaceOrderActionAllowed(true);
- }
- ).done(this.afterPlaceOrder.bind(this));
- return true;
- }
- return false;
- },
-
- afterPlaceOrder: function () {
- var response = window.checkoutConfig.payment.buckaroo.response;
- checkoutCommon.redirectHandle(response);
- },
-
- selectPaymentMethod: function () {
- window.checkoutConfig.buckarooFee.title(this.paymentFeeLabel);
-
- selectPaymentMethodAction(this.getData());
- checkoutData.setSelectedPaymentMethod(this.item.method);
- return true;
- },
-
- payWithBaseCurrency: function () {
- var allowedCurrencies = window.checkoutConfig.payment.buckaroo.sofortbanking.allowedCurrencies;
-
- return allowedCurrencies.indexOf(this.currencyCode) < 0;
- },
-
- getPayWithBaseCurrencyText: function () {
- var text = $.mage.__('The transaction will be processed using %s.');
-
- return text.replace('%s', this.baseCurrencyCode);
- }
- }
- );
- }
-);
-
-
-
-
-
-
-
-
diff --git a/view/frontend/web/template/payment/buckaroo_magento2_sofortbanking.html b/view/frontend/web/template/payment/buckaroo_magento2_sofortbanking.html
deleted file mode 100644
index fcf40224e..000000000
--- a/view/frontend/web/template/payment/buckaroo_magento2_sofortbanking.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-