Version Notes
===== 4.12.0 =====
- Tweede betaalmethode Afterpay toegevoegd.
Bugfixes:
- Paymentfee label in order bevestiging wordt nu altijd goed overgenomen.
===== 4.11.0 =====
- MasterPass betaalmethode toegevoegd
- IBAN veld bij de AfterPay DigiAccept betaalmethode verwijderd
Bugfixes:
- Paymentfee label in transactionele e-mails tonen
==== 4.10.1 ====
==== Improvements ====
- Added notification for declined payments for AfterPay payment method
- Compatibility with Onestepcheckout improved
- Giftcard functionality improved for Magento Enterprise
- Updated translations
==== Bug fixes ====
- PayperEmail is available again in the backend
==== 4.10.0 ====
==== New features ====
- Added the AfterPay payment method.
- Added the ability to refund Bancontact / Mr. Cash orders.
==== Improvements ====
- Completely rewrote the Buckaroo payment fee implementation in order to increase reliability and implement several much requested features.
- Removed the BIC field for Dutch orders.
- Improved validation for orders where multiple transactions are created.
- Improved error handling for back-end orders.
==== Bug fixes ====
- Fixed a problem where the order ID would stay reserved after a payment had failed, causing errors.
Release Info
| Developer | TIG |
| Extension | tig_buckaroo3extended |
| Version | 4.12.0 |
| Comparing to | |
| See all releases | |
Code changes from version 4.10.1 to 4.12.0
- app/code/community/TIG/Buckaroo3Extended/{Model/Request/.DS_Store → .DS_Store} +0 -0
- app/code/community/TIG/Buckaroo3Extended/Block/Adminhtml/System/Config/Hint.php +2 -0
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentFee/Sales/Order/Invoice/Totals/Fee.php +3 -1
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentFee/Sales/Order/Totals/Fee.php +3 -1
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentMethods/Afterpay2/Adminhtml/System/Config/Advancedbtn.php +6 -0
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentMethods/Afterpay2/Checkout/Form.php +10 -0
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentMethods/Masterpass/Adminhtml/System/Config/Advancedbtn.php +18 -0
- app/code/community/TIG/Buckaroo3Extended/Block/PaymentMethods/Masterpass/Checkout/Form.php +9 -0
- app/code/community/TIG/Buckaroo3Extended/Helper/Data.php +1 -1
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Afterpay/Observer.php +8 -8
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Afterpay/PaymentMethod.php +10 -10
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Afterpay2/Observer.php +5 -0
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Afterpay2/PaymentMethod.php +7 -0
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Masterpass/Observer.php +225 -0
- app/code/community/TIG/Buckaroo3Extended/Model/PaymentMethods/Masterpass/PaymentMethod.php +78 -0
- app/code/community/TIG/Buckaroo3Extended/Model/Response/Abstract.php +1 -0
- app/code/community/TIG/Buckaroo3Extended/Model/Response/Push.php +5 -1
- app/code/community/TIG/Buckaroo3Extended/Model/Soap.php +19 -4
- app/code/community/TIG/Buckaroo3Extended/Model/Sources/Afterpay2/AvailableCurrencies.php +16 -0
- app/code/community/TIG/Buckaroo3Extended/Model/Sources/Masterpass/AvailableCurrencies.php +16 -0
- app/code/community/TIG/Buckaroo3Extended/etc/config.xml +107 -10
- app/code/community/TIG/Buckaroo3Extended/etc/system.xml +522 -1
- app/design/adminhtml/default/default/layout/TIG/buckaroo3extended.xml +10 -0
- app/design/adminhtml/default/default/template/buckaroo3extended/system/config/hint.phtml +30 -30
- app/design/adminhtml/default/default/template/buckaroo3extended/system/config/supportTab.phtml +12 -12
- app/design/frontend/base/default/template/buckaroo3extended/afterpay/checkout/form.phtml +3 -10
- app/design/frontend/base/default/template/buckaroo3extended/afterpay2/checkout/form.phtml +149 -0
- app/design/frontend/base/default/template/buckaroo3extended/jquery.phtml +3 -0
- app/locale/nl_NL/TIG_Buckaroo3Extended.csv +8 -8
- package.xml +18 -5
- skin/adminhtml/default/default/css/tig_buckaroo3extended/supportTab.css +8 -5
- skin/adminhtml/default/default/images/tig_buckaroo3extended/tig_logo_medium.gif +0 -0
- skin/frontend/base/default/js/TIG/Buckaroo3Extended/oneStepCheckout.js +138 -138
- skin/frontend/base/default/js/TIG/Buckaroo3Extended/saveData.js +4 -4
|
Binary file
|
|
@@ -29,6 +29,8 @@ class TIG_Buckaroo3Extended_Block_Adminhtml_System_Config_Hint
|
|
| 29 |
'bancontactmrcash',
|
| 30 |
'eps',
|
| 31 |
'afterpay',
|
|
|
|
|
|
|
| 32 |
);
|
| 33 |
|
| 34 |
public $services = array(
|
| 29 |
'bancontactmrcash',
|
| 30 |
'eps',
|
| 31 |
'afterpay',
|
| 32 |
+
'afterpay2',
|
| 33 |
+
'masterpass',
|
| 34 |
);
|
| 35 |
|
| 36 |
public $services = array(
|
|
@@ -70,8 +70,10 @@ class TIG_Buckaroo3Extended_Block_PaymentFee_Sales_Order_Invoice_Totals_Fee exte
|
|
| 70 |
return $this;
|
| 71 |
}
|
| 72 |
|
|
|
|
|
|
|
| 73 |
$displayMode = $this->getDisplayMode();
|
| 74 |
-
$baseLabel = Mage::helper('buckaroo3extended')->getBuckarooFeeLabel($invoice->getStoreId());
|
| 75 |
|
| 76 |
if ($displayMode === self::DISPLAY_MODE_EXCL || $displayMode === self::DISPLAY_MODE_BOTH) {
|
| 77 |
$label = $baseLabel;
|
| 70 |
return $this;
|
| 71 |
}
|
| 72 |
|
| 73 |
+
$paymentMethod = $invoice->getOrder()->getPayment()->getMethod();
|
| 74 |
+
|
| 75 |
$displayMode = $this->getDisplayMode();
|
| 76 |
+
$baseLabel = Mage::helper('buckaroo3extended')->getBuckarooFeeLabel($invoice->getStoreId(), $paymentMethod);
|
| 77 |
|
| 78 |
if ($displayMode === self::DISPLAY_MODE_EXCL || $displayMode === self::DISPLAY_MODE_BOTH) {
|
| 79 |
$label = $baseLabel;
|
|
@@ -67,8 +67,10 @@ class TIG_Buckaroo3Extended_Block_PaymentFee_Sales_Order_Totals_Fee extends Mage
|
|
| 67 |
return $this;
|
| 68 |
}
|
| 69 |
|
|
|
|
|
|
|
| 70 |
$displayMode = $this->getDisplayMode();
|
| 71 |
-
$baseLabel = Mage::helper('buckaroo3extended')->getBuckarooFeeLabel($order->getStoreId());
|
| 72 |
|
| 73 |
if ($displayMode === self::DISPLAY_MODE_EXCL || $displayMode === self::DISPLAY_MODE_BOTH) {
|
| 74 |
$label = $baseLabel;
|
| 67 |
return $this;
|
| 68 |
}
|
| 69 |
|
| 70 |
+
$paymentMethod = $order->getPayment()->getMethod();
|
| 71 |
+
|
| 72 |
$displayMode = $this->getDisplayMode();
|
| 73 |
+
$baseLabel = Mage::helper('buckaroo3extended')->getBuckarooFeeLabel($order->getStoreId(),$paymentMethod);
|
| 74 |
|
| 75 |
if ($displayMode === self::DISPLAY_MODE_EXCL || $displayMode === self::DISPLAY_MODE_BOTH) {
|
| 76 |
$label = $baseLabel;
|
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Block_PaymentMethods_Afterpay2_Adminhtml_System_Config_Advancedbtn
|
| 3 |
+
extends TIG_Buckaroo3Extended_Block_PaymentMethods_Afterpay_Adminhtml_System_Config_Advancedbtn
|
| 4 |
+
{
|
| 5 |
+
|
| 6 |
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Block_PaymentMethods_Afterpay2_Checkout_Form
|
| 3 |
+
extends TIG_Buckaroo3Extended_Block_PaymentMethods_Afterpay_Checkout_Form
|
| 4 |
+
{
|
| 5 |
+
public function __construct()
|
| 6 |
+
{
|
| 7 |
+
$this->setTemplate('buckaroo3extended/afterpay2/checkout/form.phtml');
|
| 8 |
+
parent::_construct();
|
| 9 |
+
}
|
| 10 |
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Block_PaymentMethods_Masterpass_Adminhtml_System_Config_Advancedbtn extends Mage_Adminhtml_Block_Abstract
|
| 3 |
+
implements Varien_Data_Form_Element_Renderer_Interface
|
| 4 |
+
{
|
| 5 |
+
protected $_template = 'buckaroo3extended/masterpass_system/config/advancedbtn.phtml';
|
| 6 |
+
|
| 7 |
+
/**
|
| 8 |
+
* Render fieldset html
|
| 9 |
+
*
|
| 10 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
| 11 |
+
* @return string
|
| 12 |
+
*/
|
| 13 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
| 14 |
+
{
|
| 15 |
+
|
| 16 |
+
return $this->toHtml();
|
| 17 |
+
}
|
| 18 |
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Block_PaymentMethods_Masterpass_Checkout_Form extends TIG_Buckaroo3Extended_Block_PaymentMethods_Checkout_Form_Abstract
|
| 3 |
+
{
|
| 4 |
+
public function __construct()
|
| 5 |
+
{
|
| 6 |
+
$this->setTemplate('buckaroo3extended/masterpass/checkout/form.phtml');
|
| 7 |
+
parent::_construct();
|
| 8 |
+
}
|
| 9 |
+
}
|
|
@@ -412,4 +412,4 @@ class TIG_Buckaroo3Extended_Helper_Data extends Mage_Core_Helper_Abstract
|
|
| 412 |
|
| 413 |
return $this;
|
| 414 |
}
|
| 415 |
-
}
|
| 412 |
|
| 413 |
return $this;
|
| 414 |
}
|
| 415 |
+
}
|
|
@@ -8,7 +8,7 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_Observer extends TIG_B
|
|
| 8 |
|
| 9 |
protected function _construct()
|
| 10 |
{
|
| 11 |
-
$this->_method = Mage::getStoreConfig('buckaroo/
|
| 12 |
$this->_helper = Mage::helper('buckaroo3extended');
|
| 13 |
}
|
| 14 |
|
|
@@ -23,7 +23,7 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_Observer extends TIG_B
|
|
| 23 |
$vars = $request->getVars();
|
| 24 |
|
| 25 |
if($this->_method == false){
|
| 26 |
-
$this->_method = Mage::getStoreConfig('buckaroo/
|
| 27 |
}
|
| 28 |
|
| 29 |
$array = array(
|
|
@@ -129,7 +129,7 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_Observer extends TIG_B
|
|
| 129 |
);
|
| 130 |
|
| 131 |
if($this->_method == false){
|
| 132 |
-
$this->_method = Mage::getStoreConfig('buckaroo/
|
| 133 |
}
|
| 134 |
|
| 135 |
if (array_key_exists('services', $vars) && is_array($vars['services'][$this->_method])) {
|
|
@@ -346,11 +346,11 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_Observer extends TIG_B
|
|
| 346 |
return 4;
|
| 347 |
}
|
| 348 |
|
| 349 |
-
$highTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/
|
| 350 |
-
$middleTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/
|
| 351 |
-
$lowTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/
|
| 352 |
-
$zeroTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/
|
| 353 |
-
$noTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/
|
| 354 |
|
| 355 |
if (in_array($taxClassId, $highTaxClasses)) {
|
| 356 |
return 1;
|
| 8 |
|
| 9 |
protected function _construct()
|
| 10 |
{
|
| 11 |
+
$this->_method = Mage::getStoreConfig('buckaroo/' . $this->_code . '/paymethod', Mage::app()->getStore()->getStoreId());
|
| 12 |
$this->_helper = Mage::helper('buckaroo3extended');
|
| 13 |
}
|
| 14 |
|
| 23 |
$vars = $request->getVars();
|
| 24 |
|
| 25 |
if($this->_method == false){
|
| 26 |
+
$this->_method = Mage::getStoreConfig('buckaroo/' . $this->_code . '/paymethod', Mage::app()->getStore()->getStoreId());
|
| 27 |
}
|
| 28 |
|
| 29 |
$array = array(
|
| 129 |
);
|
| 130 |
|
| 131 |
if($this->_method == false){
|
| 132 |
+
$this->_method = Mage::getStoreConfig('buckaroo/' . $this->_code . '/paymethod', Mage::app()->getStore()->getStoreId());
|
| 133 |
}
|
| 134 |
|
| 135 |
if (array_key_exists('services', $vars) && is_array($vars['services'][$this->_method])) {
|
| 346 |
return 4;
|
| 347 |
}
|
| 348 |
|
| 349 |
+
$highTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/' . $this->_code . '/high', Mage::app()->getStore()->getStoreId()));
|
| 350 |
+
$middleTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/' . $this->_code . '/middle', Mage::app()->getStore()->getStoreId()));
|
| 351 |
+
$lowTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/' . $this->_code . '/low', Mage::app()->getStore()->getStoreId()));
|
| 352 |
+
$zeroTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/' . $this->_code . '/zero', Mage::app()->getStore()->getStoreId()));
|
| 353 |
+
$noTaxClasses = explode(',', Mage::getStoreConfig('buckaroo/' . $this->_code . '/no', Mage::app()->getStore()->getStoreId()));
|
| 354 |
|
| 355 |
if (in_array($taxClassId, $highTaxClasses)) {
|
| 356 |
return 1;
|
|
@@ -39,7 +39,7 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_PaymentMethod extends
|
|
| 39 |
|
| 40 |
$post = Mage::app()->getRequest()->getPost();
|
| 41 |
|
| 42 |
-
$accountNumber = $post[$this->_code.'_bpe_customer_account_number'];
|
| 43 |
|
| 44 |
$customerBirthDate = date(
|
| 45 |
'Y-m-d', strtotime($post['payment'][$this->_code]['year']
|
|
@@ -48,20 +48,20 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_PaymentMethod extends
|
|
| 48 |
);
|
| 49 |
|
| 50 |
$array = array(
|
| 51 |
-
'BPE_Customergender' => $post[$this->_code.'_BPE_Customergender'],
|
| 52 |
'BPE_AccountNumber' => $this->filterAccount($accountNumber),
|
| 53 |
-
'BPE_PhoneNumber' => $post[$this->_code.'_bpe_customer_phone_number'],
|
| 54 |
'BPE_customerbirthdate' => $customerBirthDate,
|
| 55 |
-
'BPE_B2B' => (int)$post['
|
| 56 |
'BPE_Accept' => 'true',
|
| 57 |
);
|
| 58 |
|
| 59 |
if((int)$array['BPE_B2B'] == 2){
|
| 60 |
$additionalArray = array(
|
| 61 |
-
'BPE_CompanyCOCRegistration' => $post['
|
| 62 |
-
'BPE_CompanyName' => $post['
|
| 63 |
-
'BPE_CostCentre' => $post['
|
| 64 |
-
'BPE_VatNumber' => $post['
|
| 65 |
);
|
| 66 |
|
| 67 |
$array = array_merge($array,$additionalArray);
|
|
@@ -76,8 +76,8 @@ class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_PaymentMethod extends
|
|
| 76 |
{
|
| 77 |
$postData = Mage::app()->getRequest()->getPost();
|
| 78 |
if (
|
| 79 |
-
!array_key_exists('
|
| 80 |
-
|| $postData['
|
| 81 |
) {
|
| 82 |
Mage::throwException(
|
| 83 |
Mage::helper('buckaroo3extended')->__('Please accept the terms and conditions.')
|
| 39 |
|
| 40 |
$post = Mage::app()->getRequest()->getPost();
|
| 41 |
|
| 42 |
+
$accountNumber = isset($post[$this->_code . '_bpe_customer_account_number']) ? $post[$this->_code . '_bpe_customer_account_number'] : '';
|
| 43 |
|
| 44 |
$customerBirthDate = date(
|
| 45 |
'Y-m-d', strtotime($post['payment'][$this->_code]['year']
|
| 48 |
);
|
| 49 |
|
| 50 |
$array = array(
|
| 51 |
+
'BPE_Customergender' => $post[$this->_code . '_BPE_Customergender'],
|
| 52 |
'BPE_AccountNumber' => $this->filterAccount($accountNumber),
|
| 53 |
+
'BPE_PhoneNumber' => $post[$this->_code . '_bpe_customer_phone_number'],
|
| 54 |
'BPE_customerbirthdate' => $customerBirthDate,
|
| 55 |
+
'BPE_B2B' => (int)$post[$this->_code . '_BPE_BusinessSelect'],
|
| 56 |
'BPE_Accept' => 'true',
|
| 57 |
);
|
| 58 |
|
| 59 |
if((int)$array['BPE_B2B'] == 2){
|
| 60 |
$additionalArray = array(
|
| 61 |
+
'BPE_CompanyCOCRegistration' => $post[$this->_code . '_BPE_CompanyCOCRegistration'],
|
| 62 |
+
'BPE_CompanyName' => $post[$this->_code . '_BPE_CompanyName'],
|
| 63 |
+
'BPE_CostCentre' => $post[$this->_code . '_BPE_CostCentre'],
|
| 64 |
+
'BPE_VatNumber' => $post[$this->_code . '_BPE_VatNumber'],
|
| 65 |
);
|
| 66 |
|
| 67 |
$array = array_merge($array,$additionalArray);
|
| 76 |
{
|
| 77 |
$postData = Mage::app()->getRequest()->getPost();
|
| 78 |
if (
|
| 79 |
+
!array_key_exists($this->_code . '_bpe_accept', $postData)
|
| 80 |
+
|| $postData[$this->_code . '_bpe_accept'] != 'checked'
|
| 81 |
) {
|
| 82 |
Mage::throwException(
|
| 83 |
Mage::helper('buckaroo3extended')->__('Please accept the terms and conditions.')
|
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay2_Observer extends TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_Observer
|
| 3 |
+
{
|
| 4 |
+
protected $_code = 'buckaroo3extended_afterpay2';
|
| 5 |
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay2_PaymentMethod extends TIG_Buckaroo3Extended_Model_PaymentMethods_Afterpay_PaymentMethod
|
| 3 |
+
{
|
| 4 |
+
protected $_code = 'buckaroo3extended_afterpay2';
|
| 5 |
+
|
| 6 |
+
protected $_formBlockType = 'buckaroo3extended/paymentMethods_afterpay2_checkout_form';
|
| 7 |
+
}
|
|
@@ -0,0 +1,225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* ___________ __ __
|
| 4 |
+
* \__ ___/____ _/ |_ _____ | |
|
| 5 |
+
* | | / _ \\ __\\__ \ | |
|
| 6 |
+
* | | | |_| || | / __ \_| |__
|
| 7 |
+
* |____| \____/ |__| (____ /|____/
|
| 8 |
+
* \/
|
| 9 |
+
* ___ __ __
|
| 10 |
+
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
| 11 |
+
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
| 12 |
+
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
| 13 |
+
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
| 14 |
+
* \/ \/
|
| 15 |
+
* ________
|
| 16 |
+
* / _____/_______ ____ __ __ ______
|
| 17 |
+
* / \ ___\_ __ \ / _ \ | | \\____ \
|
| 18 |
+
* \ \_\ \| | \/| |_| || | /| |_| |
|
| 19 |
+
* \______ /|__| \____/ |____/ | __/
|
| 20 |
+
* \/ |__|
|
| 21 |
+
*
|
| 22 |
+
* NOTICE OF LICENSE
|
| 23 |
+
*
|
| 24 |
+
* This source file is subject to the Creative Commons License.
|
| 25 |
+
* It is available through the world-wide-web at this URL:
|
| 26 |
+
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
| 27 |
+
* If you are unable to obtain it through the world-wide-web, please send an email
|
| 28 |
+
* to servicedesk@tig.nl so we can send you a copy immediately.
|
| 29 |
+
*
|
| 30 |
+
* DISCLAIMER
|
| 31 |
+
*
|
| 32 |
+
* Do not edit or add to this file if you wish to upgrade this module to newer
|
| 33 |
+
* versions in the future. If you wish to customize this module for your
|
| 34 |
+
* needs please contact servicedesk@tig.nl for more information.
|
| 35 |
+
*
|
| 36 |
+
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
| 37 |
+
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
| 38 |
+
*/
|
| 39 |
+
class TIG_Buckaroo3Extended_Model_PaymentMethods_Masterpass_Observer
|
| 40 |
+
extends TIG_Buckaroo3Extended_Model_Observer_Abstract
|
| 41 |
+
{
|
| 42 |
+
protected $_code = 'buckaroo3extended_masterpass';
|
| 43 |
+
protected $_method = 'masterpass';
|
| 44 |
+
|
| 45 |
+
/**
|
| 46 |
+
* @var Mage_Sales_Model_Order
|
| 47 |
+
*/
|
| 48 |
+
protected $_order;
|
| 49 |
+
|
| 50 |
+
/**
|
| 51 |
+
* @param Varien_Event_Observer $observer
|
| 52 |
+
*
|
| 53 |
+
* @return $this
|
| 54 |
+
*/
|
| 55 |
+
public function buckaroo3extended_request_addservices(Varien_Event_Observer $observer)
|
| 56 |
+
{
|
| 57 |
+
if($this->_isChosenMethod($observer) === false) {
|
| 58 |
+
return $this;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
/**
|
| 62 |
+
* @var Mage_Core_Controller_Request_Http $request
|
| 63 |
+
*/
|
| 64 |
+
$request = $observer->getRequest();
|
| 65 |
+
|
| 66 |
+
$vars = $request->getVars();
|
| 67 |
+
$serviceVersion = $this->_getServiceVersion();
|
| 68 |
+
|
| 69 |
+
$array = array(
|
| 70 |
+
$this->_method => array(
|
| 71 |
+
'action' => 'PaymentInvitation',
|
| 72 |
+
'version' => $serviceVersion,
|
| 73 |
+
),
|
| 74 |
+
);
|
| 75 |
+
|
| 76 |
+
/**
|
| 77 |
+
* @var Mage_Sales_Model_Order $order
|
| 78 |
+
*/
|
| 79 |
+
$order = $request->getOrder();
|
| 80 |
+
$order->setBuckarooServiceVersionUsed($serviceVersion)
|
| 81 |
+
->save();
|
| 82 |
+
|
| 83 |
+
if (Mage::getStoreConfig('buckaroo/buckaroo3extended_' . $this->_method . '/use_creditmanagement', Mage::app()->getStore()->getStoreId())) {
|
| 84 |
+
$array['creditmanagement'] = array(
|
| 85 |
+
'action' => 'Invoice',
|
| 86 |
+
'version' => 1,
|
| 87 |
+
);
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
if (array_key_exists('services', $vars) && is_array($vars['services'])) {
|
| 91 |
+
$vars['services'] = array_merge($vars['services'], $array);
|
| 92 |
+
} else {
|
| 93 |
+
$vars['services'] = $array;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
$request->setVars($vars);
|
| 97 |
+
|
| 98 |
+
return $this;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
/**
|
| 102 |
+
* @param Varien_Event_Observer $observer
|
| 103 |
+
*
|
| 104 |
+
* @return $this
|
| 105 |
+
*/
|
| 106 |
+
public function buckaroo3extended_request_addcustomvars(Varien_Event_Observer $observer)
|
| 107 |
+
{
|
| 108 |
+
if($this->_isChosenMethod($observer) === false) {
|
| 109 |
+
return $this;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
$request = $observer->getRequest();
|
| 113 |
+
$this->_billingInfo = $request->getBillingInfo();
|
| 114 |
+
$this->_order = $request->getOrder();
|
| 115 |
+
|
| 116 |
+
$vars = $request->getVars();
|
| 117 |
+
|
| 118 |
+
if (Mage::getStoreConfig('buckaroo/buckaroo3extended_' . $this->_method . '/use_creditmanagement', Mage::app()->getStore()->getStoreId())) {
|
| 119 |
+
$this->_addCustomerVariables($vars);
|
| 120 |
+
$this->_addCreditManagement($vars);
|
| 121 |
+
$this->_addAdditionalCreditManagementVariables($vars);
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
$shippingCosts = round($this->_order->getBaseShippingInclTax(), 2);
|
| 125 |
+
|
| 126 |
+
$discount = null;
|
| 127 |
+
|
| 128 |
+
if(Mage::helper('buckaroo3extended')->isEnterprise()){
|
| 129 |
+
if((double)$this->_order->getGiftCardsAmount() > 0){
|
| 130 |
+
$discount = (double)$this->_order->getGiftCardsAmount();
|
| 131 |
+
}
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
if(abs((double)$this->_order->getDiscountAmount()) > 0){
|
| 135 |
+
$discount += abs((double)$this->_order->getDiscountAmount());
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
$array = array(
|
| 139 |
+
'Discount' => $discount,
|
| 140 |
+
'ShippingCosts' => $shippingCosts,
|
| 141 |
+
'ShippingSuppression' => 'TRUE',
|
| 142 |
+
);
|
| 143 |
+
|
| 144 |
+
$products = $this->_order->getAllItems();
|
| 145 |
+
$group = array();
|
| 146 |
+
foreach($products as $item){
|
| 147 |
+
/** @var Mage_Sales_Model_Order_Item $item */
|
| 148 |
+
if (empty($item) || $item->hasParentItemId()) {
|
| 149 |
+
continue;
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
+
// Changed calculation from unitPrice to orderLinePrice due to impossible to recalculate unitprice,
|
| 153 |
+
// because of differences in outcome between TAX settings: Unit, OrderLine and Total.
|
| 154 |
+
// Quantity will always be 1 and quantity ordered will be in the article description.
|
| 155 |
+
$productPrice = ($item->getBasePrice() * $item->getQtyOrdered())
|
| 156 |
+
+ $item->getBaseTaxAmount()
|
| 157 |
+
+ $item->getBaseHiddenTaxAmount();
|
| 158 |
+
$productPrice = round($productPrice,2);
|
| 159 |
+
|
| 160 |
+
|
| 161 |
+
$article['ArticleDescription']['value'] = (int) $item->getQtyOrdered() . 'x ' . $item->getName();
|
| 162 |
+
$article['ArticleQuantity']['value'] = 1;
|
| 163 |
+
$article['ArticleUnitPrice']['value'] = (string) $productPrice;
|
| 164 |
+
|
| 165 |
+
$group[] = $article;
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
$paymentFeeArray = $this->_getPaymentFeeLine();
|
| 169 |
+
if(false !== $paymentFeeArray && is_array($paymentFeeArray)){
|
| 170 |
+
$group[] = $paymentFeeArray;
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
$array['Articles'] = $group;
|
| 174 |
+
|
| 175 |
+
if (array_key_exists('customVars', $vars) && array_key_exists($this->_method, $vars['customVars']) && is_array($vars['customVars'][$this->_method])) {
|
| 176 |
+
$vars['customVars'][$this->_method] = array_merge($vars['customVars'][$this->_method], $array);
|
| 177 |
+
} else {
|
| 178 |
+
$vars['customVars'][$this->_method] = $array;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
$request->setVars($vars);
|
| 182 |
+
|
| 183 |
+
return $this;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
/**
|
| 187 |
+
* @return bool
|
| 188 |
+
*/
|
| 189 |
+
protected function _getPaymentFeeLine()
|
| 190 |
+
{
|
| 191 |
+
$fee = (float) $this->_order->getBuckarooFee();
|
| 192 |
+
$feeTax = (float) $this->_order->getBuckarooFeeTax();
|
| 193 |
+
$feeTotal = (float) $fee+$feeTax;
|
| 194 |
+
|
| 195 |
+
if($fee > 0){
|
| 196 |
+
$article['ArticleDescription']['value'] = 'Servicekosten';
|
| 197 |
+
$article['ArticleQuantity']['value'] = 1;
|
| 198 |
+
$article['ArticleUnitPrice']['value'] = (string) round($feeTotal,2);
|
| 199 |
+
return $article;
|
| 200 |
+
}
|
| 201 |
+
return false;
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
/**
|
| 205 |
+
* @param Varien_Event_Observer $observer
|
| 206 |
+
*
|
| 207 |
+
* @return $this
|
| 208 |
+
*/
|
| 209 |
+
public function buckaroo3extended_request_setmethod(Varien_Event_Observer $observer)
|
| 210 |
+
{
|
| 211 |
+
if($this->_isChosenMethod($observer) === false) {
|
| 212 |
+
return $this;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
$request = $observer->getRequest();
|
| 216 |
+
|
| 217 |
+
$codeBits = explode('_', $this->_code);
|
| 218 |
+
$code = end($codeBits);
|
| 219 |
+
$request->setMethod($code);
|
| 220 |
+
|
| 221 |
+
return $this;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
|
| 225 |
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* ___________ __ __
|
| 4 |
+
* \__ ___/____ _/ |_ _____ | |
|
| 5 |
+
* | | / _ \\ __\\__ \ | |
|
| 6 |
+
* | | | |_| || | / __ \_| |__
|
| 7 |
+
* |____| \____/ |__| (____ /|____/
|
| 8 |
+
* \/
|
| 9 |
+
* ___ __ __
|
| 10 |
+
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
| 11 |
+
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
| 12 |
+
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
| 13 |
+
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
| 14 |
+
* \/ \/
|
| 15 |
+
* ________
|
| 16 |
+
* / _____/_______ ____ __ __ ______
|
| 17 |
+
* / \ ___\_ __ \ / _ \ | | \\____ \
|
| 18 |
+
* \ \_\ \| | \/| |_| || | /| |_| |
|
| 19 |
+
* \______ /|__| \____/ |____/ | __/
|
| 20 |
+
* \/ |__|
|
| 21 |
+
*
|
| 22 |
+
* NOTICE OF LICENSE
|
| 23 |
+
*
|
| 24 |
+
* This source file is subject to the Creative Commons License.
|
| 25 |
+
* It is available through the world-wide-web at this URL:
|
| 26 |
+
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
| 27 |
+
* If you are unable to obtain it through the world-wide-web, please send an email
|
| 28 |
+
* to servicedesk@tig.nl so we can send you a copy immediately.
|
| 29 |
+
*
|
| 30 |
+
* DISCLAIMER
|
| 31 |
+
*
|
| 32 |
+
* Do not edit or add to this file if you wish to upgrade this module to newer
|
| 33 |
+
* versions in the future. If you wish to customize this module for your
|
| 34 |
+
* needs please contact servicedesk@tig.nl for more information.
|
| 35 |
+
*
|
| 36 |
+
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
| 37 |
+
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
| 38 |
+
*/
|
| 39 |
+
class TIG_Buckaroo3Extended_Model_PaymentMethods_Masterpass_PaymentMethod
|
| 40 |
+
extends TIG_Buckaroo3Extended_Model_PaymentMethods_PaymentMethod
|
| 41 |
+
{
|
| 42 |
+
/**
|
| 43 |
+
* @var array Allowed currencies
|
| 44 |
+
*/
|
| 45 |
+
public $allowedCurrencies = array(
|
| 46 |
+
'ARS',
|
| 47 |
+
'AUD',
|
| 48 |
+
'BRL',
|
| 49 |
+
'CAD',
|
| 50 |
+
'CHF',
|
| 51 |
+
'CNY',
|
| 52 |
+
'CZK',
|
| 53 |
+
'DKK',
|
| 54 |
+
'EUR',
|
| 55 |
+
'GBP',
|
| 56 |
+
'HRK',
|
| 57 |
+
'ISK',
|
| 58 |
+
'JPY',
|
| 59 |
+
'LTL',
|
| 60 |
+
'LVL',
|
| 61 |
+
'MXN',
|
| 62 |
+
'NOK',
|
| 63 |
+
'NZD',
|
| 64 |
+
'PLN',
|
| 65 |
+
'RUB',
|
| 66 |
+
'SEK',
|
| 67 |
+
'TRY',
|
| 68 |
+
'USD',
|
| 69 |
+
'ZAR',
|
| 70 |
+
);
|
| 71 |
+
|
| 72 |
+
/**
|
| 73 |
+
* @var string Payment Code
|
| 74 |
+
*/
|
| 75 |
+
protected $_code = 'buckaroo3extended_masterpass';
|
| 76 |
+
|
| 77 |
+
protected $_formBlockType = 'buckaroo3extended/paymentMethods_masterpass_checkout_form';
|
| 78 |
+
}
|
|
@@ -304,6 +304,7 @@ class TIG_Buckaroo3Extended_Model_Response_Abstract extends TIG_Buckaroo3Extende
|
|
| 304 |
$paymentMethod = $this->_order->getPayment()->getMethod();
|
| 305 |
switch($paymentMethod){
|
| 306 |
case 'buckaroo3extended_afterpay':
|
|
|
|
| 307 |
Mage::getSingleton('checkout/session')->setData('buckarooAfterpayRejected',true);
|
| 308 |
$message = Mage::helper('buckaroo3extended')->__(
|
| 309 |
'We are sorry to inform you that the request to pay afterwards with AfterPay is not possible at' .
|
| 304 |
$paymentMethod = $this->_order->getPayment()->getMethod();
|
| 305 |
switch($paymentMethod){
|
| 306 |
case 'buckaroo3extended_afterpay':
|
| 307 |
+
case 'buckaroo3extended_afterpay2':
|
| 308 |
Mage::getSingleton('checkout/session')->setData('buckarooAfterpayRejected',true);
|
| 309 |
$message = Mage::helper('buckaroo3extended')->__(
|
| 310 |
'We are sorry to inform you that the request to pay afterwards with AfterPay is not possible at' .
|
|
@@ -665,7 +665,11 @@ class TIG_Buckaroo3Extended_Model_Response_Push extends TIG_Buckaroo3Extended_Mo
|
|
| 665 |
//turn into string and add the secret key to the end
|
| 666 |
$signatureString = '';
|
| 667 |
foreach($sortableArray as $key => $value) {
|
| 668 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 669 |
$signatureString .= $key . '=' . $value;
|
| 670 |
}
|
| 671 |
$signatureString .= Mage::getStoreConfig('buckaroo/buckaroo3extended/digital_signature', $this->_order->getStoreId());
|
| 665 |
//turn into string and add the secret key to the end
|
| 666 |
$signatureString = '';
|
| 667 |
foreach($sortableArray as $key => $value) {
|
| 668 |
+
if ('brq_SERVICE_masterpass_CustomerPhoneNumber' !== $key
|
| 669 |
+
&& 'brq_SERVICE_masterpass_ShippingRecipientPhoneNumber' !== $key
|
| 670 |
+
) {
|
| 671 |
+
$value = urldecode($value);
|
| 672 |
+
}
|
| 673 |
$signatureString .= $key . '=' . $value;
|
| 674 |
}
|
| 675 |
$signatureString .= Mage::getStoreConfig('buckaroo/buckaroo3extended/digital_signature', $this->_order->getStoreId());
|
|
@@ -122,6 +122,11 @@ final class TIG_Buckaroo3Extended_Model_Soap extends TIG_Buckaroo3Extended_Model
|
|
| 122 |
|
| 123 |
$client->thumbprint = $this->_vars['thumbprint'];
|
| 124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
$TransactionRequest = new Body();
|
| 126 |
$TransactionRequest->Currency = $this->_vars['currency'];
|
| 127 |
$TransactionRequest->AmountDebit = round($this->_vars['amountDebit'], 2);
|
|
@@ -214,7 +219,7 @@ final class TIG_Buckaroo3Extended_Model_Soap extends TIG_Buckaroo3Extended_Model
|
|
| 214 |
}
|
| 215 |
|
| 216 |
$client->__SetLocation($location);
|
| 217 |
-
|
| 218 |
try
|
| 219 |
{
|
| 220 |
$response = $client->TransactionRequest($TransactionRequest);
|
|
@@ -425,6 +430,12 @@ class SoapClientWSSEC extends SoapClient
|
|
| 425 |
*/
|
| 426 |
public $thumbprint = '';
|
| 427 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 428 |
public function __doRequest ($request , $location , $action , $version , $one_way = 0 )
|
| 429 |
{
|
| 430 |
// Add code to inspect/dissect/debug/adjust the XML given in $request here
|
|
@@ -501,7 +512,13 @@ class SoapClientWSSEC extends SoapClient
|
|
| 501 |
//Canonicalize nodeset
|
| 502 |
$signedINFO = $this->GetCanonical($SignedInfoNodeSet);
|
| 503 |
|
| 504 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 505 |
$certificate = Mage::getModel('buckaroo3extended/certificate')->load($certificateId)->getCertificate();
|
| 506 |
|
| 507 |
$priv_key = substr($certificate, 0, 8192);
|
|
@@ -540,8 +557,6 @@ class SoapClientWSSEC extends SoapClient
|
|
| 540 |
$KeyTypeNode->appendChild($SecurityTokenReference);
|
| 541 |
$sigNodeSet->appendChild($KeyTypeNode);
|
| 542 |
|
| 543 |
-
|
| 544 |
-
|
| 545 |
return $domDocument;
|
| 546 |
}
|
| 547 |
}
|
| 122 |
|
| 123 |
$client->thumbprint = $this->_vars['thumbprint'];
|
| 124 |
|
| 125 |
+
// Get the order so we can get the storeId relevant for this order
|
| 126 |
+
$order = Mage::getModel('sales/order')->load($this->_vars['orderId'], 'increment_id');
|
| 127 |
+
// And pass the storeId to the WSDL client
|
| 128 |
+
$client->storeId = $order->getStoreId();
|
| 129 |
+
|
| 130 |
$TransactionRequest = new Body();
|
| 131 |
$TransactionRequest->Currency = $this->_vars['currency'];
|
| 132 |
$TransactionRequest->AmountDebit = round($this->_vars['amountDebit'], 2);
|
| 219 |
}
|
| 220 |
|
| 221 |
$client->__SetLocation($location);
|
| 222 |
+
|
| 223 |
try
|
| 224 |
{
|
| 225 |
$response = $client->TransactionRequest($TransactionRequest);
|
| 430 |
*/
|
| 431 |
public $thumbprint = '';
|
| 432 |
|
| 433 |
+
/**
|
| 434 |
+
* StoreId for Certificate
|
| 435 |
+
* @var int
|
| 436 |
+
*/
|
| 437 |
+
public $storeId = null;
|
| 438 |
+
|
| 439 |
public function __doRequest ($request , $location , $action , $version , $one_way = 0 )
|
| 440 |
{
|
| 441 |
// Add code to inspect/dissect/debug/adjust the XML given in $request here
|
| 512 |
//Canonicalize nodeset
|
| 513 |
$signedINFO = $this->GetCanonical($SignedInfoNodeSet);
|
| 514 |
|
| 515 |
+
// If the storeId has been configured specifically, use the current value. Otherwise, try to get
|
| 516 |
+
// the store Id from Magento. If there's only 1 store view, this default will always pick certificate #1
|
| 517 |
+
if (!$this->storeId) {
|
| 518 |
+
$this->storeId = Mage::app()->getStore()->getId();
|
| 519 |
+
}
|
| 520 |
+
|
| 521 |
+
$certificateId = Mage::getStoreConfig('buckaroo/buckaroo3extended/certificate_selection', $this->storeId);
|
| 522 |
$certificate = Mage::getModel('buckaroo3extended/certificate')->load($certificateId)->getCertificate();
|
| 523 |
|
| 524 |
$priv_key = substr($certificate, 0, 8192);
|
| 557 |
$KeyTypeNode->appendChild($SecurityTokenReference);
|
| 558 |
$sigNodeSet->appendChild($KeyTypeNode);
|
| 559 |
|
|
|
|
|
|
|
| 560 |
return $domDocument;
|
| 561 |
}
|
| 562 |
}
|
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Model_Sources_Afterpay2_AvailableCurrencies
|
| 3 |
+
{
|
| 4 |
+
public function toOptionArray()
|
| 5 |
+
{
|
| 6 |
+
$paymentModel = Mage::getModel('buckaroo3extended/paymentMethods_afterpay2_paymentMethod');
|
| 7 |
+
$allowedCurrencies = $paymentModel->getAllowedCurrencies();
|
| 8 |
+
|
| 9 |
+
$array = array();
|
| 10 |
+
foreach ($allowedCurrencies as $allowedCurrency) {
|
| 11 |
+
$array[] = array('value' => $allowedCurrency, 'label' => $allowedCurrency);
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
return $array;
|
| 15 |
+
}
|
| 16 |
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class TIG_Buckaroo3Extended_Model_Sources_Masterpass_AvailableCurrencies
|
| 3 |
+
{
|
| 4 |
+
public function toOptionArray()
|
| 5 |
+
{
|
| 6 |
+
$paymentModel = Mage::getModel('buckaroo3extended/paymentMethods_mastercard_paymentMethod');
|
| 7 |
+
$allowedCurrencies = $paymentModel->getAllowedCurrencies();
|
| 8 |
+
|
| 9 |
+
$array = array();
|
| 10 |
+
foreach ($allowedCurrencies as $allowedCurrency) {
|
| 11 |
+
$array[] = array('value' => $allowedCurrency, 'label' => $allowedCurrency);
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
return $array;
|
| 15 |
+
}
|
| 16 |
+
}
|
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<TIG_Buckaroo3Extended>
|
| 5 |
-
<version>4.
|
| 6 |
</TIG_Buckaroo3Extended>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
|
@@ -257,6 +257,11 @@
|
|
| 257 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 258 |
<method>buckaroo3extended_refund_request_setmethod</method>
|
| 259 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 260 |
<buckaroo3extended_paymentmethod_observer_ideal>
|
| 261 |
<type>Singleton</type>
|
| 262 |
<class>buckaroo3extended/paymentMethods_ideal_observer</class>
|
|
@@ -366,6 +371,11 @@
|
|
| 366 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 367 |
<method>buckaroo3extended_refund_request_addservices</method>
|
| 368 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 369 |
<buckaroo3extended_paymentmethod_observer_amex>
|
| 370 |
<type>Singleton</type>
|
| 371 |
<class>buckaroo3extended/paymentMethods_amex_observer</class>
|
|
@@ -587,6 +597,11 @@
|
|
| 587 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 588 |
<method>buckaroo3extended_request_addservices</method>
|
| 589 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 590 |
<buckaroo3extended_paymentmethod_observer_directdebit>
|
| 591 |
<type>Singleton</type>
|
| 592 |
<class>buckaroo3extended/paymentMethods_directdebit_observer</class>
|
|
@@ -652,6 +667,11 @@
|
|
| 652 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 653 |
<method>buckaroo3extended_request_addservices</method>
|
| 654 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 655 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 656 |
<type>Singleton</type>
|
| 657 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
|
@@ -692,6 +712,11 @@
|
|
| 692 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 693 |
<method>buckaroo3extended_request_addservices</method>
|
| 694 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 695 |
</observers>
|
| 696 |
</buckaroo3extended_request_addservices>
|
| 697 |
<buckaroo3extended_request_addcustomvars>
|
|
@@ -771,6 +796,11 @@
|
|
| 771 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 772 |
<method>buckaroo3extended_request_addcustomvars</method>
|
| 773 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 774 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 775 |
<type>Singleton</type>
|
| 776 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
|
@@ -811,6 +841,11 @@
|
|
| 811 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 812 |
<method>buckaroo3extended_request_addcustomvars</method>
|
| 813 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 814 |
</observers>
|
| 815 |
</buckaroo3extended_request_addcustomvars>
|
| 816 |
<buckaroo3extended_request_setmethod>
|
|
@@ -890,6 +925,11 @@
|
|
| 890 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 891 |
<method>buckaroo3extended_request_setmethod</method>
|
| 892 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 893 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 894 |
<type>Singleton</type>
|
| 895 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
|
@@ -930,6 +970,11 @@
|
|
| 930 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 931 |
<method>buckaroo3extended_request_setmethod</method>
|
| 932 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 933 |
</observers>
|
| 934 |
</buckaroo3extended_request_setmethod>
|
| 935 |
<buckaroo3extended_push_custom_processing>
|
|
@@ -940,13 +985,18 @@
|
|
| 940 |
<method>buckaroo3extended_push_custom_processing</method>
|
| 941 |
</buckaroo3extended_paymentmethod_observer_paymentguarantee>
|
| 942 |
</observers>
|
| 943 |
-
|
| 944 |
-
|
| 945 |
-
|
| 946 |
-
|
| 947 |
-
|
| 948 |
-
|
| 949 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 950 |
<observers>
|
| 951 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 952 |
<type>Singleton</type>
|
|
@@ -1051,7 +1101,6 @@
|
|
| 1051 |
<method>buckaroo3extended_response_custom_processing</method>
|
| 1052 |
</buckaroo3extended_paymentmethod_observer_paymentguarantee>
|
| 1053 |
</observers>
|
| 1054 |
-
|
| 1055 |
</buckaroo3extended_response_custom_processing>
|
| 1056 |
</events>
|
| 1057 |
</global>
|
|
@@ -1079,6 +1128,13 @@
|
|
| 1079 |
<sort_order>25</sort_order>
|
| 1080 |
<group>buckaroo3extended</group>
|
| 1081 |
</buckaroo3extended_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1082 |
<buckaroo3extended_mastercard>
|
| 1083 |
<active>1</active>
|
| 1084 |
<model>buckaroo3extended/paymentMethods_mastercard_paymentMethod</model>
|
|
@@ -1216,9 +1272,16 @@
|
|
| 1216 |
<active>1</active>
|
| 1217 |
<model>buckaroo3extended/paymentMethods_eps_paymentMethod</model>
|
| 1218 |
<title>EPS</title>
|
| 1219 |
-
<sort_order>
|
| 1220 |
<group>buckaroo3extended</group>
|
| 1221 |
</buckaroo3extended_eps>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1222 |
<buckaroo2012ideal>
|
| 1223 |
<active>0</active>
|
| 1224 |
<model>buckaroo3extended/oldPaymentMethods_oldPaymentMethod</model>
|
|
@@ -1598,6 +1661,25 @@
|
|
| 1598 |
<!--<business>1</business>-->
|
| 1599 |
<!--</buckaroo3extended_afterpay>-->
|
| 1600 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1601 |
<buckaroo3extended_payperemail>
|
| 1602 |
<active>0</active>
|
| 1603 |
<mode>0</mode>
|
|
@@ -1732,6 +1814,21 @@
|
|
| 1732 |
<order_status_complete_success></order_status_complete_success>
|
| 1733 |
<order_status_complete_failed></order_status_complete_failed>
|
| 1734 |
</buckaroo3extended_refund>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1735 |
</buckaroo>
|
| 1736 |
|
| 1737 |
</default>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<TIG_Buckaroo3Extended>
|
| 5 |
+
<version>4.12.0</version>
|
| 6 |
</TIG_Buckaroo3Extended>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
| 257 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 258 |
<method>buckaroo3extended_refund_request_setmethod</method>
|
| 259 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 260 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 261 |
+
<type>Singleton</type>
|
| 262 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 263 |
+
<method>buckaroo3extended_refund_request_setmethod</method>
|
| 264 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 265 |
<buckaroo3extended_paymentmethod_observer_ideal>
|
| 266 |
<type>Singleton</type>
|
| 267 |
<class>buckaroo3extended/paymentMethods_ideal_observer</class>
|
| 371 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 372 |
<method>buckaroo3extended_refund_request_addservices</method>
|
| 373 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 374 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 375 |
+
<type>Singleton</type>
|
| 376 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 377 |
+
<method>buckaroo3extended_refund_request_addservices</method>
|
| 378 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 379 |
<buckaroo3extended_paymentmethod_observer_amex>
|
| 380 |
<type>Singleton</type>
|
| 381 |
<class>buckaroo3extended/paymentMethods_amex_observer</class>
|
| 597 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 598 |
<method>buckaroo3extended_request_addservices</method>
|
| 599 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 600 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 601 |
+
<type>Singleton</type>
|
| 602 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 603 |
+
<method>buckaroo3extended_request_addservices</method>
|
| 604 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 605 |
<buckaroo3extended_paymentmethod_observer_directdebit>
|
| 606 |
<type>Singleton</type>
|
| 607 |
<class>buckaroo3extended/paymentMethods_directdebit_observer</class>
|
| 667 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 668 |
<method>buckaroo3extended_request_addservices</method>
|
| 669 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 670 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 671 |
+
<type>Singleton</type>
|
| 672 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 673 |
+
<method>buckaroo3extended_request_addservices</method>
|
| 674 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 675 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 676 |
<type>Singleton</type>
|
| 677 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
| 712 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 713 |
<method>buckaroo3extended_request_addservices</method>
|
| 714 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
| 715 |
+
<buckaroo3extended_paymentmethod_observer_masterpass>
|
| 716 |
+
<type>Singleton</type>
|
| 717 |
+
<class>buckaroo3extended/paymentMethods_masterpass_observer</class>
|
| 718 |
+
<method>buckaroo3extended_request_addservices</method>
|
| 719 |
+
</buckaroo3extended_paymentmethod_observer_masterpass>
|
| 720 |
</observers>
|
| 721 |
</buckaroo3extended_request_addservices>
|
| 722 |
<buckaroo3extended_request_addcustomvars>
|
| 796 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 797 |
<method>buckaroo3extended_request_addcustomvars</method>
|
| 798 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 799 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 800 |
+
<type>Singleton</type>
|
| 801 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 802 |
+
<method>buckaroo3extended_request_addcustomvars</method>
|
| 803 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 804 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 805 |
<type>Singleton</type>
|
| 806 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
| 841 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 842 |
<method>buckaroo3extended_request_addcustomvars</method>
|
| 843 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
| 844 |
+
<buckaroo3extended_paymentmethod_observer_masterpass>
|
| 845 |
+
<type>Singleton</type>
|
| 846 |
+
<class>buckaroo3extended/paymentMethods_masterpass_observer</class>
|
| 847 |
+
<method>buckaroo3extended_request_addcustomvars</method>
|
| 848 |
+
</buckaroo3extended_paymentmethod_observer_masterpass>
|
| 849 |
</observers>
|
| 850 |
</buckaroo3extended_request_addcustomvars>
|
| 851 |
<buckaroo3extended_request_setmethod>
|
| 925 |
<class>buckaroo3extended/paymentMethods_afterpay_observer</class>
|
| 926 |
<method>buckaroo3extended_request_setmethod</method>
|
| 927 |
</buckaroo3extended_paymentmethod_observer_afterpay>
|
| 928 |
+
<buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 929 |
+
<type>Singleton</type>
|
| 930 |
+
<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>
|
| 931 |
+
<method>buckaroo3extended_request_setmethod</method>
|
| 932 |
+
</buckaroo3extended_paymentmethod_observer_afterpay2>
|
| 933 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 934 |
<type>Singleton</type>
|
| 935 |
<class>buckaroo3extended/paymentMethods_payperemail_observer</class>
|
| 970 |
<class>buckaroo3extended/paymentMethods_bancontactmrcash_observer</class>
|
| 971 |
<method>buckaroo3extended_request_setmethod</method>
|
| 972 |
</buckaroo3extended_paymentmethod_observer_bancontactmrcash>
|
| 973 |
+
<buckaroo3extended_paymentmethod_observer_masterpass>
|
| 974 |
+
<type>Singleton</type>
|
| 975 |
+
<class>buckaroo3extended/paymentMethods_masterpass_observer</class>
|
| 976 |
+
<method>buckaroo3extended_request_setmethod</method>
|
| 977 |
+
</buckaroo3extended_paymentmethod_observer_masterpass>
|
| 978 |
</observers>
|
| 979 |
</buckaroo3extended_request_setmethod>
|
| 980 |
<buckaroo3extended_push_custom_processing>
|
| 985 |
<method>buckaroo3extended_push_custom_processing</method>
|
| 986 |
</buckaroo3extended_paymentmethod_observer_paymentguarantee>
|
| 987 |
</observers>
|
| 988 |
+
<!--<observers>-->
|
| 989 |
+
<!--<buckaroo3extended_paymentmethod_observer_afterpay>-->
|
| 990 |
+
<!--<type>Singleton</type>-->
|
| 991 |
+
<!--<class>buckaroo3extended/paymentMethods_afterpay_observer</class>-->
|
| 992 |
+
<!--<method>buckaroo3extended_push_custom_processing</method>-->
|
| 993 |
+
<!--</buckaroo3extended_paymentmethod_observer_afterpay>-->
|
| 994 |
+
<!--<buckaroo3extended_paymentmethod_observer_afterpay2>-->
|
| 995 |
+
<!--<type>Singleton</type>-->
|
| 996 |
+
<!--<class>buckaroo3extended/paymentMethods_afterpay2_observer</class>-->
|
| 997 |
+
<!--<method>buckaroo3extended_push_custom_processing</method>-->
|
| 998 |
+
<!--</buckaroo3extended_paymentmethod_observer_afterpay2>-->
|
| 999 |
+
<!--</observers>-->
|
| 1000 |
<observers>
|
| 1001 |
<buckaroo3extended_paymentmethod_observer_payperemail>
|
| 1002 |
<type>Singleton</type>
|
| 1101 |
<method>buckaroo3extended_response_custom_processing</method>
|
| 1102 |
</buckaroo3extended_paymentmethod_observer_paymentguarantee>
|
| 1103 |
</observers>
|
|
|
|
| 1104 |
</buckaroo3extended_response_custom_processing>
|
| 1105 |
</events>
|
| 1106 |
</global>
|
| 1128 |
<sort_order>25</sort_order>
|
| 1129 |
<group>buckaroo3extended</group>
|
| 1130 |
</buckaroo3extended_afterpay>
|
| 1131 |
+
<buckaroo3extended_afterpay2>
|
| 1132 |
+
<active>1</active>
|
| 1133 |
+
<model>buckaroo3extended/paymentMethods_afterpay2_paymentMethod</model>
|
| 1134 |
+
<title>Afterpay 2</title>
|
| 1135 |
+
<sort_order>25</sort_order>
|
| 1136 |
+
<group>buckaroo3extended</group>
|
| 1137 |
+
</buckaroo3extended_afterpay2>
|
| 1138 |
<buckaroo3extended_mastercard>
|
| 1139 |
<active>1</active>
|
| 1140 |
<model>buckaroo3extended/paymentMethods_mastercard_paymentMethod</model>
|
| 1272 |
<active>1</active>
|
| 1273 |
<model>buckaroo3extended/paymentMethods_eps_paymentMethod</model>
|
| 1274 |
<title>EPS</title>
|
| 1275 |
+
<sort_order>200</sort_order>
|
| 1276 |
<group>buckaroo3extended</group>
|
| 1277 |
</buckaroo3extended_eps>
|
| 1278 |
+
<buckaroo3extended_masterpass>
|
| 1279 |
+
<active>1</active>
|
| 1280 |
+
<model>buckaroo3extended/paymentMethods_masterpass_paymentMethod</model>
|
| 1281 |
+
<title>MasterPass</title>
|
| 1282 |
+
<sort_order>210</sort_order>
|
| 1283 |
+
<group>buckaroo3extended</group>
|
| 1284 |
+
</buckaroo3extended_masterpass>
|
| 1285 |
<buckaroo2012ideal>
|
| 1286 |
<active>0</active>
|
| 1287 |
<model>buckaroo3extended/oldPaymentMethods_oldPaymentMethod</model>
|
| 1661 |
<!--<business>1</business>-->
|
| 1662 |
<!--</buckaroo3extended_afterpay>-->
|
| 1663 |
|
| 1664 |
+
<!--<buckaroo3extended_afterpay2>-->
|
| 1665 |
+
<!--<active>0</active>-->
|
| 1666 |
+
<!--<mode>0</mode>-->
|
| 1667 |
+
<!--<title>Afterpay 2</title>-->
|
| 1668 |
+
<!--<allowspecific>0</allowspecific>-->
|
| 1669 |
+
<!--<specificcountry></specificcountry>-->
|
| 1670 |
+
<!--<order_status_success></order_status_success>-->
|
| 1671 |
+
<!--<order_status_failed></order_status_failed>-->
|
| 1672 |
+
<!--<sort_order>25</sort_order>-->
|
| 1673 |
+
<!--<limit_by_ip>0</limit_by_ip>-->
|
| 1674 |
+
<!--<allowed_currencies>EUR</allowed_currencies>-->
|
| 1675 |
+
<!--<allowed_methods>all</allowed_methods>-->
|
| 1676 |
+
<!--<duedate>0</duedate>-->
|
| 1677 |
+
<!--<payment_fee_label>Fee</payment_fee_label>-->
|
| 1678 |
+
<!--<order_email>1</order_email>-->
|
| 1679 |
+
<!--<paymethod>afterpayacceptgiro</paymethod>-->
|
| 1680 |
+
<!--<business>1</business>-->
|
| 1681 |
+
<!--</buckaroo3extended_afterpay2>-->
|
| 1682 |
+
|
| 1683 |
<buckaroo3extended_payperemail>
|
| 1684 |
<active>0</active>
|
| 1685 |
<mode>0</mode>
|
| 1814 |
<order_status_complete_success></order_status_complete_success>
|
| 1815 |
<order_status_complete_failed></order_status_complete_failed>
|
| 1816 |
</buckaroo3extended_refund>
|
| 1817 |
+
|
| 1818 |
+
<buckaroo3extended_masterpass>
|
| 1819 |
+
<active>0</active>
|
| 1820 |
+
<mode>0</mode>
|
| 1821 |
+
<title>MasterPass</title>
|
| 1822 |
+
<allowspecific>0</allowspecific>
|
| 1823 |
+
<specificcountry></specificcountry>
|
| 1824 |
+
<order_status_success></order_status_success>
|
| 1825 |
+
<order_status_failed></order_status_failed>
|
| 1826 |
+
<sort_order>200</sort_order>
|
| 1827 |
+
<limit_by_ip>0</limit_by_ip>
|
| 1828 |
+
<allowed_currencies>EUR</allowed_currencies>
|
| 1829 |
+
<payment_fee_label>Fee</payment_fee_label>
|
| 1830 |
+
<order_email>1</order_email>
|
| 1831 |
+
</buckaroo3extended_masterpass>
|
| 1832 |
</buckaroo>
|
| 1833 |
|
| 1834 |
</default>
|
|
@@ -1011,6 +1011,309 @@
|
|
| 1011 |
</limit_by_ip>
|
| 1012 |
</fields>
|
| 1013 |
</buckaroo3extended_afterpay>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1014 |
<buckaroo3extended_amex translate="label">
|
| 1015 |
<label>American Express</label>
|
| 1016 |
<sort_order>6000</sort_order>
|
|
@@ -5941,9 +6244,227 @@
|
|
| 5941 |
</limit_by_ip>
|
| 5942 |
</fields>
|
| 5943 |
</buckaroo3extended_eps>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5944 |
<buckaroo3extended_refund translate="label">
|
| 5945 |
<label>Refunding</label>
|
| 5946 |
-
<sort_order>
|
| 5947 |
<show_in_default>1</show_in_default>
|
| 5948 |
<show_in_website>1</show_in_website>
|
| 5949 |
<show_in_store>1</show_in_store>
|
| 1011 |
</limit_by_ip>
|
| 1012 |
</fields>
|
| 1013 |
</buckaroo3extended_afterpay>
|
| 1014 |
+
<buckaroo3extended_afterpay2 translate="label">
|
| 1015 |
+
<label>Afterpay 2</label>
|
| 1016 |
+
<sort_order>5002</sort_order>
|
| 1017 |
+
<show_in_default>1</show_in_default>
|
| 1018 |
+
<show_in_website>1</show_in_website>
|
| 1019 |
+
<show_in_store>1</show_in_store>
|
| 1020 |
+
<fields>
|
| 1021 |
+
<active translate="label comment">
|
| 1022 |
+
<label>Enabled</label>
|
| 1023 |
+
<comment>Enable or disable this payment method.</comment>
|
| 1024 |
+
<frontend_type>select</frontend_type>
|
| 1025 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1026 |
+
<sort_order>10</sort_order>
|
| 1027 |
+
<show_in_default>1</show_in_default>
|
| 1028 |
+
<show_in_website>1</show_in_website>
|
| 1029 |
+
<show_in_store>1</show_in_store>
|
| 1030 |
+
</active>
|
| 1031 |
+
<mode translate="label comment">
|
| 1032 |
+
<label>Payment modus</label>
|
| 1033 |
+
<comment>! Test transactions are registered in Payment plaza !</comment>
|
| 1034 |
+
<frontend_type>select</frontend_type>
|
| 1035 |
+
<source_model>buckaroo3extended/sources_testLive</source_model>
|
| 1036 |
+
<sort_order>20</sort_order>
|
| 1037 |
+
<show_in_default>1</show_in_default>
|
| 1038 |
+
<show_in_website>1</show_in_website>
|
| 1039 |
+
<show_in_store>1</show_in_store>
|
| 1040 |
+
</mode>
|
| 1041 |
+
<title translate="label comment">
|
| 1042 |
+
<label>Frontend label</label>
|
| 1043 |
+
<comment>Determines the frontend label shown.</comment>
|
| 1044 |
+
<frontend_type>text</frontend_type>
|
| 1045 |
+
<sort_order>30</sort_order>
|
| 1046 |
+
<show_in_default>1</show_in_default>
|
| 1047 |
+
<show_in_website>1</show_in_website>
|
| 1048 |
+
<show_in_store>1</show_in_store>
|
| 1049 |
+
</title>
|
| 1050 |
+
<sort_order translate="label comment">
|
| 1051 |
+
<label>Frontend sort order</label>
|
| 1052 |
+
<comment>Determines the sorting of payment methods.</comment>
|
| 1053 |
+
<frontend_type>text</frontend_type>
|
| 1054 |
+
<sort_order>45</sort_order>
|
| 1055 |
+
<show_in_default>1</show_in_default>
|
| 1056 |
+
<show_in_website>1</show_in_website>
|
| 1057 |
+
<show_in_store>1</show_in_store>
|
| 1058 |
+
</sort_order>
|
| 1059 |
+
<paymethod translate="label comment">
|
| 1060 |
+
<label>Afterpay 2 payment method</label>
|
| 1061 |
+
<comment>Select which paymethod must be used at Afterpay</comment>
|
| 1062 |
+
<frontend_type>select</frontend_type>
|
| 1063 |
+
<source_model>buckaroo3extended/sources_acceptgiroDirectdebit</source_model>
|
| 1064 |
+
<sort_order>46</sort_order>
|
| 1065 |
+
<show_in_default>1</show_in_default>
|
| 1066 |
+
<show_in_website>1</show_in_website>
|
| 1067 |
+
<show_in_store>1</show_in_store>
|
| 1068 |
+
</paymethod>
|
| 1069 |
+
<business translate="label comment">
|
| 1070 |
+
<label>Set Business</label>
|
| 1071 |
+
<comment>When B2B is selected, some additional fields are required for the customer to fill in.</comment>
|
| 1072 |
+
<frontend_type>select</frontend_type>
|
| 1073 |
+
<source_model>buckaroo3extended/sources_businessToBusiness</source_model>
|
| 1074 |
+
<sort_order>47</sort_order>
|
| 1075 |
+
<show_in_default>1</show_in_default>
|
| 1076 |
+
<show_in_website>1</show_in_website>
|
| 1077 |
+
<show_in_store>1</show_in_store>
|
| 1078 |
+
<depends>
|
| 1079 |
+
<paymethod>afterpaydigiaccept</paymethod>
|
| 1080 |
+
</depends>
|
| 1081 |
+
</business>
|
| 1082 |
+
<high translate="label comment tooltip">
|
| 1083 |
+
<label>High VAT tax classes</label>
|
| 1084 |
+
<comment>Select which tax classes count as 'high' VAT</comment>
|
| 1085 |
+
<frontend_type>multiselect</frontend_type>
|
| 1086 |
+
<source_model>buckaroo3extended/sources_taxClasses</source_model>
|
| 1087 |
+
<sort_order>48</sort_order>
|
| 1088 |
+
<show_in_default>1</show_in_default>
|
| 1089 |
+
<show_in_website>1</show_in_website>
|
| 1090 |
+
<show_in_store>1</show_in_store>
|
| 1091 |
+
</high>
|
| 1092 |
+
<middle translate="label comment tooltip">
|
| 1093 |
+
<label>Middle VAT tax classes</label>
|
| 1094 |
+
<comment>Select which tax classes count as 'middle' VAT</comment>
|
| 1095 |
+
<frontend_type>multiselect</frontend_type>
|
| 1096 |
+
<source_model>buckaroo3extended/sources_taxClasses</source_model>
|
| 1097 |
+
<sort_order>49</sort_order>
|
| 1098 |
+
<show_in_default>1</show_in_default>
|
| 1099 |
+
<show_in_website>1</show_in_website>
|
| 1100 |
+
<show_in_store>1</show_in_store>
|
| 1101 |
+
</middle>
|
| 1102 |
+
<low translate="label comment tooltip">
|
| 1103 |
+
<label>Low VAT tax classes</label>
|
| 1104 |
+
<comment>Select which tax classes count as 'low' VAT</comment>
|
| 1105 |
+
<frontend_type>multiselect</frontend_type>
|
| 1106 |
+
<source_model>buckaroo3extended/sources_taxClasses</source_model>
|
| 1107 |
+
<sort_order>50</sort_order>
|
| 1108 |
+
<show_in_default>1</show_in_default>
|
| 1109 |
+
<show_in_website>1</show_in_website>
|
| 1110 |
+
<show_in_store>1</show_in_store>
|
| 1111 |
+
</low>
|
| 1112 |
+
<zero translate="label comment tooltip">
|
| 1113 |
+
<label>Zero VAT tax classes</label>
|
| 1114 |
+
<comment>Select which tax classes count as 'zero' VAT</comment>
|
| 1115 |
+
<frontend_type>multiselect</frontend_type>
|
| 1116 |
+
<source_model>buckaroo3extended/sources_taxClasses</source_model>
|
| 1117 |
+
<sort_order>51</sort_order>
|
| 1118 |
+
<show_in_default>1</show_in_default>
|
| 1119 |
+
<show_in_website>1</show_in_website>
|
| 1120 |
+
<show_in_store>1</show_in_store>
|
| 1121 |
+
</zero>
|
| 1122 |
+
<no translate="label comment tooltip">
|
| 1123 |
+
<label>No VAT tax classes</label>
|
| 1124 |
+
<comment>Select which tax classes count as 'no' VAT</comment>
|
| 1125 |
+
<frontend_type>multiselect</frontend_type>
|
| 1126 |
+
<source_model>buckaroo3extended/sources_taxClasses</source_model>
|
| 1127 |
+
<sort_order>52</sort_order>
|
| 1128 |
+
<show_in_default>1</show_in_default>
|
| 1129 |
+
<show_in_website>1</show_in_website>
|
| 1130 |
+
<show_in_store>1</show_in_store>
|
| 1131 |
+
</no>
|
| 1132 |
+
<sendmail translate="label comment tooltip">
|
| 1133 |
+
<label>Send payment email</label>
|
| 1134 |
+
<comment>Buckaroo sends an email to the customer with the payment procedures.</comment>
|
| 1135 |
+
<tooltip>Set to 'No' leaves the customer uninformed on the payment obligations.</tooltip>
|
| 1136 |
+
<frontend_type>select</frontend_type>
|
| 1137 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1138 |
+
<sort_order>80</sort_order>
|
| 1139 |
+
<show_in_default>1</show_in_default>
|
| 1140 |
+
<show_in_website>1</show_in_website>
|
| 1141 |
+
<show_in_store>1</show_in_store>
|
| 1142 |
+
<validate>buckaroo3extended_paymentguarantee_advanced</validate>
|
| 1143 |
+
</sendmail>
|
| 1144 |
+
<order_email translate="label comment">
|
| 1145 |
+
<label>Send order confirmation email</label>
|
| 1146 |
+
<comment>Enable to send an order confirmation email to the customer when the payment is succesfull. Specific for this payment method.</comment>
|
| 1147 |
+
<frontend_type>select</frontend_type>
|
| 1148 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1149 |
+
<sort_order>45</sort_order>
|
| 1150 |
+
<show_in_default>1</show_in_default>
|
| 1151 |
+
<show_in_website>1</show_in_website>
|
| 1152 |
+
<show_in_store>1</show_in_store>
|
| 1153 |
+
</order_email>
|
| 1154 |
+
<show_advanced translate="label comment">
|
| 1155 |
+
<comment>Enable or disable advanced options.</comment>
|
| 1156 |
+
<frontend_type>select</frontend_type>
|
| 1157 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1158 |
+
<sort_order>100</sort_order>
|
| 1159 |
+
<show_in_default>1</show_in_default>
|
| 1160 |
+
<show_in_website>1</show_in_website>
|
| 1161 |
+
<show_in_store>1</show_in_store>
|
| 1162 |
+
</show_advanced>
|
| 1163 |
+
<payment_fee translate="label comment" module="buckaroo3extended">
|
| 1164 |
+
<label>Fee</label>
|
| 1165 |
+
<comment>The above amount is calculated based on de Tax settings in System > Configuration > Sales > Tax.</comment>
|
| 1166 |
+
<frontend_type>text</frontend_type>
|
| 1167 |
+
<sort_order>101</sort_order>
|
| 1168 |
+
<show_in_default>1</show_in_default>
|
| 1169 |
+
<show_in_website>1</show_in_website>
|
| 1170 |
+
<show_in_store>1</show_in_store>
|
| 1171 |
+
<validate>validate-not-negative-number</validate>
|
| 1172 |
+
<depends>
|
| 1173 |
+
<show_advanced>1</show_advanced>
|
| 1174 |
+
</depends>
|
| 1175 |
+
</payment_fee>
|
| 1176 |
+
<payment_fee_label translate="label comment" module="buckaroo3extended">
|
| 1177 |
+
<label>Fee label</label>
|
| 1178 |
+
<comment>This label will be displayed next to the fee on the checkout, order, invoice and creditmemo pages and pdfs.</comment>
|
| 1179 |
+
<frontend_type>text</frontend_type>
|
| 1180 |
+
<sort_order>102</sort_order>
|
| 1181 |
+
<show_in_default>1</show_in_default>
|
| 1182 |
+
<show_in_website>1</show_in_website>
|
| 1183 |
+
<show_in_store>1</show_in_store>
|
| 1184 |
+
<validate>required-entry</validate>
|
| 1185 |
+
<depends>
|
| 1186 |
+
<show_advanced>1</show_advanced>
|
| 1187 |
+
</depends>
|
| 1188 |
+
</payment_fee_label>
|
| 1189 |
+
<active_status translate="label comment">
|
| 1190 |
+
<label>Method specific status enabled</label>
|
| 1191 |
+
<comment>Enable or disable specific status.</comment>
|
| 1192 |
+
<frontend_type>select</frontend_type>
|
| 1193 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1194 |
+
<sort_order>110</sort_order>
|
| 1195 |
+
<show_in_default>1</show_in_default>
|
| 1196 |
+
<show_in_website>1</show_in_website>
|
| 1197 |
+
<show_in_store>1</show_in_store>
|
| 1198 |
+
<depends>
|
| 1199 |
+
<show_advanced>1</show_advanced>
|
| 1200 |
+
</depends>
|
| 1201 |
+
</active_status>
|
| 1202 |
+
<order_status_success translate="label comment tooltip">
|
| 1203 |
+
<label>Method specific success status</label>
|
| 1204 |
+
<comment>Leave empty to use default 'success' status.</comment>
|
| 1205 |
+
<tooltip>To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.</tooltip>
|
| 1206 |
+
<frontend_type>select</frontend_type>
|
| 1207 |
+
<source_model>buckaroo3extended/sources_statusesSuccess</source_model>
|
| 1208 |
+
<sort_order>111</sort_order>
|
| 1209 |
+
<show_in_default>1</show_in_default>
|
| 1210 |
+
<show_in_website>1</show_in_website>
|
| 1211 |
+
<show_in_store>1</show_in_store>
|
| 1212 |
+
<validate>buckaroo3extended_afterpay2_advanced</validate>
|
| 1213 |
+
<depends>
|
| 1214 |
+
<show_advanced>1</show_advanced>
|
| 1215 |
+
<active_status>1</active_status>
|
| 1216 |
+
</depends>
|
| 1217 |
+
</order_status_success>
|
| 1218 |
+
<order_status_failed translate="label comment tooltip">
|
| 1219 |
+
<label>Method specific failed status</label>
|
| 1220 |
+
<comment>Leave empty to use default 'failed' status.</comment>
|
| 1221 |
+
<tooltip>To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.</tooltip>
|
| 1222 |
+
<frontend_type>select</frontend_type>
|
| 1223 |
+
<source_model>buckaroo3extended/sources_statusesFailed</source_model>
|
| 1224 |
+
<sort_order>112</sort_order>
|
| 1225 |
+
<show_in_default>1</show_in_default>
|
| 1226 |
+
<show_in_website>1</show_in_website>
|
| 1227 |
+
<show_in_store>1</show_in_store>
|
| 1228 |
+
<validate>buckaroo3extended_afterpay2_advanced</validate>
|
| 1229 |
+
<depends>
|
| 1230 |
+
<show_advanced>1</show_advanced>
|
| 1231 |
+
<active_status>1</active_status>
|
| 1232 |
+
</depends>
|
| 1233 |
+
</order_status_failed>
|
| 1234 |
+
<max_amount translate="label comment tooltip">
|
| 1235 |
+
<label>Max order amount (in Base Currency)</label>
|
| 1236 |
+
<comment>Maximum order amount allowed.</comment>
|
| 1237 |
+
<tooltip>The payment method show only for orders with an order amount smaller then the maximum amount.</tooltip>
|
| 1238 |
+
<frontend_type>text</frontend_type>
|
| 1239 |
+
<sort_order>113</sort_order>
|
| 1240 |
+
<show_in_default>1</show_in_default>
|
| 1241 |
+
<show_in_website>1</show_in_website>
|
| 1242 |
+
<show_in_store>1</show_in_store>
|
| 1243 |
+
<depends>
|
| 1244 |
+
<show_advanced>1</show_advanced>
|
| 1245 |
+
</depends>
|
| 1246 |
+
</max_amount>
|
| 1247 |
+
<min_amount translate="label comment tooltip">
|
| 1248 |
+
<label>Min order amount (in Base Currency)</label>
|
| 1249 |
+
<comment>Minimum order amount allowed.</comment>
|
| 1250 |
+
<tooltip>The payment method show only for orders with an order amount greater than the minimum amount.</tooltip>
|
| 1251 |
+
<frontend_type>text</frontend_type>
|
| 1252 |
+
<sort_order>114</sort_order>
|
| 1253 |
+
<show_in_default>1</show_in_default>
|
| 1254 |
+
<show_in_website>1</show_in_website>
|
| 1255 |
+
<show_in_store>1</show_in_store>
|
| 1256 |
+
<depends>
|
| 1257 |
+
<show_advanced>1</show_advanced>
|
| 1258 |
+
</depends>
|
| 1259 |
+
</min_amount>
|
| 1260 |
+
<allowed_currencies translate="label comment tooltip">
|
| 1261 |
+
<label>Allowed currencies</label>
|
| 1262 |
+
<comment>Select payment method specific currencies.</comment>
|
| 1263 |
+
<tooltip>Your contract with Buckaroo must allow for the selected currencies to be used with this payment method.</tooltip>
|
| 1264 |
+
<frontend_type>multiselect</frontend_type>
|
| 1265 |
+
<source_model>buckaroo3extended/sources_afterpay2_availableCurrencies</source_model>
|
| 1266 |
+
<sort_order>130</sort_order>
|
| 1267 |
+
<show_in_default>1</show_in_default>
|
| 1268 |
+
<show_in_website>1</show_in_website>
|
| 1269 |
+
<show_in_store>1</show_in_store>
|
| 1270 |
+
<validate>buckaroo3extended_afterpay2_advanced</validate>
|
| 1271 |
+
<depends>
|
| 1272 |
+
<show_advanced>1</show_advanced>
|
| 1273 |
+
</depends>
|
| 1274 |
+
</allowed_currencies>
|
| 1275 |
+
<allowspecific translate="label">
|
| 1276 |
+
<label>Payment from applicable countries</label>
|
| 1277 |
+
<frontend_type>allowspecific</frontend_type>
|
| 1278 |
+
<source_model>buckaroo3extended/sources_allspecificcountries</source_model>
|
| 1279 |
+
<sort_order>140</sort_order>
|
| 1280 |
+
<show_in_default>1</show_in_default>
|
| 1281 |
+
<show_in_website>1</show_in_website>
|
| 1282 |
+
<show_in_store>1</show_in_store>
|
| 1283 |
+
<depends>
|
| 1284 |
+
<show_advanced>1</show_advanced>
|
| 1285 |
+
</depends>
|
| 1286 |
+
</allowspecific>
|
| 1287 |
+
<specificcountry translate="label comment">
|
| 1288 |
+
<label>Payment from Specific Country</label>
|
| 1289 |
+
<comment>Only available when set to 'specific countries'.</comment>
|
| 1290 |
+
<frontend_type>multiselect</frontend_type>
|
| 1291 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
| 1292 |
+
<sort_order>150</sort_order>
|
| 1293 |
+
<show_in_default>1</show_in_default>
|
| 1294 |
+
<show_in_website>1</show_in_website>
|
| 1295 |
+
<show_in_store>1</show_in_store>
|
| 1296 |
+
<depends>
|
| 1297 |
+
<show_advanced>1</show_advanced>
|
| 1298 |
+
<allowspecific>1</allowspecific>
|
| 1299 |
+
</depends>
|
| 1300 |
+
</specificcountry>
|
| 1301 |
+
<limit_by_ip translate="label comment">
|
| 1302 |
+
<label>Display only for selected IP's</label>
|
| 1303 |
+
<comment>Show method only to Magento set IP's.</comment>
|
| 1304 |
+
<tooltip>Magento developer client restrictions.</tooltip>
|
| 1305 |
+
<frontend_type>select</frontend_type>
|
| 1306 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 1307 |
+
<sort_order>160</sort_order>
|
| 1308 |
+
<show_in_default>1</show_in_default>
|
| 1309 |
+
<show_in_website>1</show_in_website>
|
| 1310 |
+
<show_in_store>1</show_in_store>
|
| 1311 |
+
<depends>
|
| 1312 |
+
<show_advanced>1</show_advanced>
|
| 1313 |
+
</depends>
|
| 1314 |
+
</limit_by_ip>
|
| 1315 |
+
</fields>
|
| 1316 |
+
</buckaroo3extended_afterpay2>
|
| 1317 |
<buckaroo3extended_amex translate="label">
|
| 1318 |
<label>American Express</label>
|
| 1319 |
<sort_order>6000</sort_order>
|
| 6244 |
</limit_by_ip>
|
| 6245 |
</fields>
|
| 6246 |
</buckaroo3extended_eps>
|
| 6247 |
+
<buckaroo3extended_masterpass translate="label">
|
| 6248 |
+
<label>MasterPass</label>
|
| 6249 |
+
<sort_order>20000</sort_order>
|
| 6250 |
+
<show_in_default>1</show_in_default>
|
| 6251 |
+
<show_in_website>1</show_in_website>
|
| 6252 |
+
<show_in_store>1</show_in_store>
|
| 6253 |
+
<fields>
|
| 6254 |
+
<active translate="label comment">
|
| 6255 |
+
<label>Enabled</label>
|
| 6256 |
+
<comment>Enable or disable this payment method.</comment>
|
| 6257 |
+
<frontend_type>select</frontend_type>
|
| 6258 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 6259 |
+
<sort_order>10</sort_order>
|
| 6260 |
+
<show_in_default>1</show_in_default>
|
| 6261 |
+
<show_in_website>1</show_in_website>
|
| 6262 |
+
<show_in_store>1</show_in_store>
|
| 6263 |
+
</active>
|
| 6264 |
+
<mode translate="label comment">
|
| 6265 |
+
<label>Payment modus</label>
|
| 6266 |
+
<comment>! Test transactions are registered in Payment plaza !</comment>
|
| 6267 |
+
<frontend_type>select</frontend_type>
|
| 6268 |
+
<source_model>buckaroo3extended/sources_testLive</source_model>
|
| 6269 |
+
<sort_order>20</sort_order>
|
| 6270 |
+
<show_in_default>1</show_in_default>
|
| 6271 |
+
<show_in_website>1</show_in_website>
|
| 6272 |
+
<show_in_store>1</show_in_store>
|
| 6273 |
+
</mode>
|
| 6274 |
+
<title translate="label comment">
|
| 6275 |
+
<label>Frontend label</label>
|
| 6276 |
+
<comment>Determines the frontend label shown.</comment>
|
| 6277 |
+
<frontend_type>text</frontend_type>
|
| 6278 |
+
<sort_order>30</sort_order>
|
| 6279 |
+
<show_in_default>1</show_in_default>
|
| 6280 |
+
<show_in_website>1</show_in_website>
|
| 6281 |
+
<show_in_store>1</show_in_store>
|
| 6282 |
+
</title>
|
| 6283 |
+
<sort_order translate="label comment">
|
| 6284 |
+
<label>Frontend sort order</label>
|
| 6285 |
+
<comment>Determines the sorting of payment methods.</comment>
|
| 6286 |
+
<frontend_type>text</frontend_type>
|
| 6287 |
+
<sort_order>40</sort_order>
|
| 6288 |
+
<show_in_default>1</show_in_default>
|
| 6289 |
+
<show_in_website>1</show_in_website>
|
| 6290 |
+
<show_in_store>1</show_in_store>
|
| 6291 |
+
</sort_order>
|
| 6292 |
+
<order_email translate="label comment">
|
| 6293 |
+
<label>Send order confirmation email</label>
|
| 6294 |
+
<comment>Enable to send an order confirmation email to the customer when the payment is succesful. Specific for this payment method.</comment>
|
| 6295 |
+
<frontend_type>select</frontend_type>
|
| 6296 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 6297 |
+
<sort_order>44</sort_order>
|
| 6298 |
+
<show_in_default>1</show_in_default>
|
| 6299 |
+
<show_in_website>1</show_in_website>
|
| 6300 |
+
<show_in_store>1</show_in_store>
|
| 6301 |
+
</order_email>
|
| 6302 |
+
<show_advanced translate="label comment">
|
| 6303 |
+
<comment>Enable or disable advanced options.</comment>
|
| 6304 |
+
<frontend_type>select</frontend_type>
|
| 6305 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 6306 |
+
<sort_order>45</sort_order>
|
| 6307 |
+
<show_in_default>1</show_in_default>
|
| 6308 |
+
<show_in_website>1</show_in_website>
|
| 6309 |
+
<show_in_store>1</show_in_store>
|
| 6310 |
+
</show_advanced>
|
| 6311 |
+
<payment_fee translate="label comment" module="buckaroo3extended">
|
| 6312 |
+
<label>Fee</label>
|
| 6313 |
+
<comment>The above amount is calculated based on de Tax settings in System > Configuration > Sales > Tax.</comment>
|
| 6314 |
+
<frontend_type>text</frontend_type>
|
| 6315 |
+
<sort_order>46</sort_order>
|
| 6316 |
+
<show_in_default>1</show_in_default>
|
| 6317 |
+
<show_in_website>1</show_in_website>
|
| 6318 |
+
<show_in_store>1</show_in_store>
|
| 6319 |
+
<validate>validate-not-negative-number</validate>
|
| 6320 |
+
<depends>
|
| 6321 |
+
<show_advanced>1</show_advanced>
|
| 6322 |
+
</depends>
|
| 6323 |
+
</payment_fee>
|
| 6324 |
+
<payment_fee_label translate="label comment" module="buckaroo3extended">
|
| 6325 |
+
<label>Fee label</label>
|
| 6326 |
+
<comment>This label will be displayed next to the fee on the checkout, order, invoice and creditmemo pages and pdfs.</comment>
|
| 6327 |
+
<frontend_type>text</frontend_type>
|
| 6328 |
+
<sort_order>47</sort_order>
|
| 6329 |
+
<show_in_default>1</show_in_default>
|
| 6330 |
+
<show_in_website>1</show_in_website>
|
| 6331 |
+
<show_in_store>1</show_in_store>
|
| 6332 |
+
<validate>required-entry</validate>
|
| 6333 |
+
<depends>
|
| 6334 |
+
<show_advanced>1</show_advanced>
|
| 6335 |
+
</depends>
|
| 6336 |
+
</payment_fee_label>
|
| 6337 |
+
<max_amount translate="label comment tooltip">
|
| 6338 |
+
<label>Max order amount (in Base Currency)</label>
|
| 6339 |
+
<comment>Maximum order amount allowed.</comment>
|
| 6340 |
+
<tooltip>The payment method show only for orders with an order amount smaller then the maximum amount.</tooltip>
|
| 6341 |
+
<frontend_type>text</frontend_type>
|
| 6342 |
+
<sort_order>53</sort_order>
|
| 6343 |
+
<show_in_default>1</show_in_default>
|
| 6344 |
+
<show_in_website>1</show_in_website>
|
| 6345 |
+
<show_in_store>1</show_in_store>
|
| 6346 |
+
<depends>
|
| 6347 |
+
<show_advanced>1</show_advanced>
|
| 6348 |
+
</depends>
|
| 6349 |
+
</max_amount>
|
| 6350 |
+
<min_amount translate="label comment tooltip">
|
| 6351 |
+
<label>Min order amount (in Base Currency)</label>
|
| 6352 |
+
<comment>Minimum order amount allowed.</comment>
|
| 6353 |
+
<tooltip>The payment method show only for orders with an order amount greater than the minimum amount.</tooltip>
|
| 6354 |
+
<frontend_type>text</frontend_type>
|
| 6355 |
+
<sort_order>54</sort_order>
|
| 6356 |
+
<show_in_default>1</show_in_default>
|
| 6357 |
+
<show_in_website>1</show_in_website>
|
| 6358 |
+
<show_in_store>1</show_in_store>
|
| 6359 |
+
<depends>
|
| 6360 |
+
<show_advanced>1</show_advanced>
|
| 6361 |
+
</depends>
|
| 6362 |
+
</min_amount>
|
| 6363 |
+
<active_status translate="label comment">
|
| 6364 |
+
<label>Method specific status enabled</label>
|
| 6365 |
+
<comment>Enable or disable specific status.</comment>
|
| 6366 |
+
<frontend_type>select</frontend_type>
|
| 6367 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 6368 |
+
<sort_order>60</sort_order>
|
| 6369 |
+
<show_in_default>1</show_in_default>
|
| 6370 |
+
<show_in_website>1</show_in_website>
|
| 6371 |
+
<show_in_store>1</show_in_store>
|
| 6372 |
+
<depends>
|
| 6373 |
+
<show_advanced>1</show_advanced>
|
| 6374 |
+
</depends>
|
| 6375 |
+
</active_status>
|
| 6376 |
+
<order_status_success translate="label comment tooltip">
|
| 6377 |
+
<label>Method specific success status</label>
|
| 6378 |
+
<comment>Leave empty to use default 'success' status.</comment>
|
| 6379 |
+
<tooltip>To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.</tooltip>
|
| 6380 |
+
<frontend_type>select</frontend_type>
|
| 6381 |
+
<source_model>buckaroo3extended/sources_statusesSuccess</source_model>
|
| 6382 |
+
<sort_order>61</sort_order>
|
| 6383 |
+
<show_in_default>1</show_in_default>
|
| 6384 |
+
<show_in_website>1</show_in_website>
|
| 6385 |
+
<show_in_store>1</show_in_store>
|
| 6386 |
+
<validate>buckaroo3extended_bancontactmrcash_advanced</validate>
|
| 6387 |
+
<depends>
|
| 6388 |
+
<show_advanced>1</show_advanced>
|
| 6389 |
+
<active_status>1</active_status>
|
| 6390 |
+
</depends>
|
| 6391 |
+
</order_status_success>
|
| 6392 |
+
<order_status_failed translate="label comment tooltip">
|
| 6393 |
+
<label>Method specific failed status</label>
|
| 6394 |
+
<comment>Leave empty to use default 'failed' status.</comment>
|
| 6395 |
+
<tooltip>To make a new status available it needs to be assigned to the correct state. See Magento documentation about state and status.</tooltip>
|
| 6396 |
+
<frontend_type>select</frontend_type>
|
| 6397 |
+
<source_model>buckaroo3extended/sources_statusesFailed</source_model>
|
| 6398 |
+
<sort_order>62</sort_order>
|
| 6399 |
+
<show_in_default>1</show_in_default>
|
| 6400 |
+
<show_in_website>1</show_in_website>
|
| 6401 |
+
<show_in_store>1</show_in_store>
|
| 6402 |
+
<validate>buckaroo3extended_bancontactmrcash_advanced</validate>
|
| 6403 |
+
<depends>
|
| 6404 |
+
<show_advanced>1</show_advanced>
|
| 6405 |
+
<active_status>1</active_status>
|
| 6406 |
+
</depends>
|
| 6407 |
+
</order_status_failed>
|
| 6408 |
+
<allowed_currencies translate="label comment tooltip">
|
| 6409 |
+
<label>Allowed currencies</label>
|
| 6410 |
+
<comment>Select payment method specific currencies.</comment>
|
| 6411 |
+
<tooltip>Your contract with Buckaroo must allow for the selected currencies to be used with this payment method.</tooltip>
|
| 6412 |
+
<frontend_type>multiselect</frontend_type>
|
| 6413 |
+
<source_model>buckaroo3extended/sources_masterpass_availableCurrencies</source_model>
|
| 6414 |
+
<sort_order>80</sort_order>
|
| 6415 |
+
<show_in_default>1</show_in_default>
|
| 6416 |
+
<show_in_website>1</show_in_website>
|
| 6417 |
+
<show_in_store>1</show_in_store>
|
| 6418 |
+
<validate>buckaroo3extended_bancontactmrcash_advanced</validate>
|
| 6419 |
+
<depends>
|
| 6420 |
+
<show_advanced>1</show_advanced>
|
| 6421 |
+
</depends>
|
| 6422 |
+
</allowed_currencies>
|
| 6423 |
+
<allowspecific translate="label">
|
| 6424 |
+
<label>Payment from applicable countries</label>
|
| 6425 |
+
<frontend_type>allowspecific</frontend_type>
|
| 6426 |
+
<source_model>buckaroo3extended/sources_allspecificcountries</source_model>
|
| 6427 |
+
<sort_order>90</sort_order>
|
| 6428 |
+
<show_in_default>1</show_in_default>
|
| 6429 |
+
<show_in_website>1</show_in_website>
|
| 6430 |
+
<show_in_store>1</show_in_store>
|
| 6431 |
+
<depends>
|
| 6432 |
+
<show_advanced>1</show_advanced>
|
| 6433 |
+
</depends>
|
| 6434 |
+
</allowspecific>
|
| 6435 |
+
<specificcountry translate="label comment">
|
| 6436 |
+
<label>Payment from Specific Country</label>
|
| 6437 |
+
<comment>Only available when set to 'specific countries'.</comment>
|
| 6438 |
+
<frontend_type>multiselect</frontend_type>
|
| 6439 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
| 6440 |
+
<sort_order>100</sort_order>
|
| 6441 |
+
<show_in_default>1</show_in_default>
|
| 6442 |
+
<show_in_website>1</show_in_website>
|
| 6443 |
+
<show_in_store>1</show_in_store>
|
| 6444 |
+
<depends>
|
| 6445 |
+
<show_advanced>1</show_advanced>
|
| 6446 |
+
<allowspecific>1</allowspecific>
|
| 6447 |
+
</depends>
|
| 6448 |
+
</specificcountry>
|
| 6449 |
+
<limit_by_ip translate="label comment tooltip">
|
| 6450 |
+
<label>Display only for selected IP's</label>
|
| 6451 |
+
<comment>Show method only to Magento set IP's.</comment>
|
| 6452 |
+
<tooltip>Magento developer client restrictions.</tooltip>
|
| 6453 |
+
<frontend_type>select</frontend_type>
|
| 6454 |
+
<source_model>buckaroo3extended/sources_yesno</source_model>
|
| 6455 |
+
<sort_order>110</sort_order>
|
| 6456 |
+
<show_in_default>1</show_in_default>
|
| 6457 |
+
<show_in_website>1</show_in_website>
|
| 6458 |
+
<show_in_store>1</show_in_store>
|
| 6459 |
+
<depends>
|
| 6460 |
+
<show_advanced>1</show_advanced>
|
| 6461 |
+
</depends>
|
| 6462 |
+
</limit_by_ip>
|
| 6463 |
+
</fields>
|
| 6464 |
+
</buckaroo3extended_masterpass>
|
| 6465 |
<buckaroo3extended_refund translate="label">
|
| 6466 |
<label>Refunding</label>
|
| 6467 |
+
<sort_order>20500</sort_order>
|
| 6468 |
<show_in_default>1</show_in_default>
|
| 6469 |
<show_in_website>1</show_in_website>
|
| 6470 |
<show_in_store>1</show_in_store>
|
|
@@ -18,12 +18,22 @@
|
|
| 18 |
<reference name="invoice_totals">
|
| 19 |
<block name="buckaroo_fee" type="buckaroo3extended/adminhtml_sales_order_invoice_totals_fee" before="tax"/>
|
| 20 |
</reference>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
</adminhtml_sales_order_invoice_view>
|
| 22 |
|
| 23 |
<adminhtml_sales_order_invoice_new>
|
| 24 |
<reference name="invoice_totals">
|
| 25 |
<block name="buckaroo_fee" type="buckaroo3extended/adminhtml_sales_order_invoice_totals_fee" before="tax"/>
|
| 26 |
</reference>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
</adminhtml_sales_order_invoice_new>
|
| 28 |
|
| 29 |
<adminhtml_sales_order_invoice_updateqty>
|
| 18 |
<reference name="invoice_totals">
|
| 19 |
<block name="buckaroo_fee" type="buckaroo3extended/adminhtml_sales_order_invoice_totals_fee" before="tax"/>
|
| 20 |
</reference>
|
| 21 |
+
<reference name="tax">
|
| 22 |
+
<action method = 'setTemplate'>
|
| 23 |
+
<template>buckaroo3extended/sales/order/totals/tax.phtml</template>
|
| 24 |
+
</action>
|
| 25 |
+
</reference>
|
| 26 |
</adminhtml_sales_order_invoice_view>
|
| 27 |
|
| 28 |
<adminhtml_sales_order_invoice_new>
|
| 29 |
<reference name="invoice_totals">
|
| 30 |
<block name="buckaroo_fee" type="buckaroo3extended/adminhtml_sales_order_invoice_totals_fee" before="tax"/>
|
| 31 |
</reference>
|
| 32 |
+
<reference name="tax">
|
| 33 |
+
<action method = 'setTemplate'>
|
| 34 |
+
<template>buckaroo3extended/sales/order/totals/tax.phtml</template>
|
| 35 |
+
</action>
|
| 36 |
+
</reference>
|
| 37 |
</adminhtml_sales_order_invoice_new>
|
| 38 |
|
| 39 |
<adminhtml_sales_order_invoice_updateqty>
|
|
@@ -3,54 +3,54 @@
|
|
| 3 |
</div>
|
| 4 |
<script type="text/javascript" charset="utf-8" src="<?php echo $this->getSkinUrl("js/tig_buckaroo3extended/jquery-1.4.4.min.js");?>"></script>
|
| 5 |
<script type = 'text/javascript'>
|
| 6 |
-
jQuery.noConflict();
|
| 7 |
-
|
| 8 |
function() {
|
| 9 |
-
if (
|
| 10 |
-
|
| 11 |
-
}
|
| 12 |
-
else if (
|
| 13 |
-
&&
|
| 14 |
{
|
| 15 |
-
|
| 16 |
-
}
|
| 17 |
else
|
| 18 |
{
|
| 19 |
-
|
| 20 |
}
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
<?php foreach($this->config as $config): ?>
|
| 25 |
-
|
| 26 |
<?php endforeach;?>
|
| 27 |
-
|
| 28 |
<?php foreach($this->methods as $method):?>
|
| 29 |
-
if (
|
| 30 |
-
|
| 31 |
-
}
|
| 32 |
-
else if (
|
| 33 |
-
&&
|
| 34 |
{
|
| 35 |
-
|
| 36 |
-
}
|
| 37 |
else
|
| 38 |
{
|
| 39 |
-
|
| 40 |
}
|
| 41 |
<?php endforeach;?>
|
| 42 |
-
<?php foreach($this->services as $service):?>
|
| 43 |
-
if (
|
| 44 |
-
|
| 45 |
-
}
|
| 46 |
-
else if (
|
| 47 |
-
&&
|
| 48 |
{
|
| 49 |
-
|
| 50 |
-
}
|
| 51 |
else
|
| 52 |
{
|
| 53 |
-
|
| 54 |
}
|
| 55 |
<?php endforeach;?>
|
| 56 |
}
|
| 3 |
</div>
|
| 4 |
<script type="text/javascript" charset="utf-8" src="<?php echo $this->getSkinUrl("js/tig_buckaroo3extended/jquery-1.4.4.min.js");?>"></script>
|
| 5 |
<script type = 'text/javascript'>
|
| 6 |
+
var jQuery_144 = jQuery.noConflict(true);
|
| 7 |
+
jQuery_144('document').ready(
|
| 8 |
function() {
|
| 9 |
+
if (jQuery_144("#buckaroo_buckaroo3extended_active").val() == 0 ) {
|
| 10 |
+
jQuery_144("#buckaroo_buckaroo3extended").prev().prev().addClass('disabled');
|
| 11 |
+
}
|
| 12 |
+
else if (jQuery_144("#buckaroo_buckaroo3extended_active").val() == 1
|
| 13 |
+
&& jQuery_144("#buckaroo_buckaroo3extended_mode").val() == 1)
|
| 14 |
{
|
| 15 |
+
jQuery_144("#buckaroo_buckaroo3extended").prev().prev().addClass('test');
|
| 16 |
+
}
|
| 17 |
else
|
| 18 |
{
|
| 19 |
+
jQuery_144("#buckaroo_buckaroo3extended").prev().prev().addClass('live');
|
| 20 |
}
|
| 21 |
|
| 22 |
+
jQuery_144('.buckaroo-header').html(' ').css('background-image', "url('<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>adminhtml/default/default/images/tig_buckaroo3extended/buckaroo_large.png')").css('width','151').css('height','30');
|
| 23 |
|
| 24 |
<?php foreach($this->config as $config): ?>
|
| 25 |
+
jQuery_144('#buckaroo_buckaroo3extended_<?php echo $config; ?>').prev().prev().addClass('advanced');
|
| 26 |
<?php endforeach;?>
|
| 27 |
+
|
| 28 |
<?php foreach($this->methods as $method):?>
|
| 29 |
+
if (jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>_active").val() == 0 ) {
|
| 30 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>").prev().prev().addClass('disabled');
|
| 31 |
+
}
|
| 32 |
+
else if (jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>_active").val() == 1
|
| 33 |
+
&& jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>_mode").val() == 1)
|
| 34 |
{
|
| 35 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>").prev().prev().addClass('test');
|
| 36 |
+
}
|
| 37 |
else
|
| 38 |
{
|
| 39 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $method; ?>").prev().prev().addClass('live');
|
| 40 |
}
|
| 41 |
<?php endforeach;?>
|
| 42 |
+
<?php foreach($this->services as $service):?>
|
| 43 |
+
if (jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>_active").val() == 0 ) {
|
| 44 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>").prev().prev().addClass('disabled');
|
| 45 |
+
}
|
| 46 |
+
else if (jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>_active").val() == 1
|
| 47 |
+
&& jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>_allow_push").val() == 0)
|
| 48 |
{
|
| 49 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>").prev().prev().addClass('advanced');
|
| 50 |
+
}
|
| 51 |
else
|
| 52 |
{
|
| 53 |
+
jQuery_144("#buckaroo_buckaroo3extended_<?php echo $service; ?>").prev().prev().addClass('advanced');
|
| 54 |
}
|
| 55 |
<?php endforeach;?>
|
| 56 |
}
|
|
@@ -72,14 +72,14 @@
|
|
| 72 |
</div>
|
| 73 |
<div class="text-box">
|
| 74 |
<h3><?php echo $_helper->__('Support');?></h3>
|
| 75 |
-
<p><?php echo $_helper->__('
|
| 76 |
<h4><?php echo $_helper->__('Module basic configuration and account information');?></h4>
|
| 77 |
<p><?php echo $_helper->__('Acquire your (Merchant) key, Secret key, certificate and certificate thumbprint prior contacting Buckaroo technical support:');?></p>
|
| 78 |
-
<p><a href="http://www.buckaroo.nl" target="_blank"><img src="<?php echo $this->getSkinUrl('images/tig_buckaroo3extended/'); ?>buckaroo_small.png" alt="" /></a></p>
|
| 79 |
<table class="contact">
|
| 80 |
<tr>
|
| 81 |
<td class="first"><?php echo $_helper->__('Buckaroo Payment Plaza:');?></td>
|
| 82 |
<td class="last"><a target="_blank" href="https://payment.buckaroo.nl/">payment.buckaroo.nl</a></td>
|
|
|
|
| 83 |
</tr>
|
| 84 |
<tr>
|
| 85 |
<td class="first"><?php echo $_helper->__('Phone:');?></td>
|
|
@@ -90,22 +90,22 @@
|
|
| 90 |
<td class="last"><a href="mailto:support@buckaroo.nl">support@buckaroo.nl</a></td>
|
| 91 |
</tr>
|
| 92 |
</table>
|
| 93 |
-
<h4><?php echo $_helper->__('
|
| 94 |
-
<p><?php echo $_helper->__('For
|
| 95 |
-
<p><a href="http://www.tig.nl" target="_blank"><img src="<?php echo $this->getSkinUrl('images/tig_buckaroo3extended/'); ?>tig_logo_medium.gif" alt="" /></a></p>
|
| 96 |
<table class="contact">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
<tr>
|
| 98 |
-
|
| 99 |
-
|
| 100 |
</tr>
|
| 101 |
<tr>
|
| 102 |
-
<td class="first"><?php echo $_helper->__('
|
| 103 |
<td class="last"><a href="mailto:servicedesk@tig.nl">servicedesk@tig.nl</a></td>
|
| 104 |
</tr>
|
| 105 |
-
<tr>
|
| 106 |
-
<td class="first"><?php echo $_helper->__('Online Documentation');?></td>
|
| 107 |
-
<td class="last"><a target="_blank" href="http://kb.tig.nl/">kb.tig.nl</a></td>
|
| 108 |
-
</tr>
|
| 109 |
</table>
|
| 110 |
</div>
|
| 111 |
<div class="text-box">
|
| 72 |
</div>
|
| 73 |
<div class="text-box">
|
| 74 |
<h3><?php echo $_helper->__('Support');?></h3>
|
| 75 |
+
<p><?php echo $_helper->__('This extension is developed by TIG, commissioned by Buckaroo.');?></p>
|
| 76 |
<h4><?php echo $_helper->__('Module basic configuration and account information');?></h4>
|
| 77 |
<p><?php echo $_helper->__('Acquire your (Merchant) key, Secret key, certificate and certificate thumbprint prior contacting Buckaroo technical support:');?></p>
|
|
|
|
| 78 |
<table class="contact">
|
| 79 |
<tr>
|
| 80 |
<td class="first"><?php echo $_helper->__('Buckaroo Payment Plaza:');?></td>
|
| 81 |
<td class="last"><a target="_blank" href="https://payment.buckaroo.nl/">payment.buckaroo.nl</a></td>
|
| 82 |
+
<td class="buckaroo_logo" rowspan="3"><a href="http://www.buckaroo.nl" target="_blank"><img src="<?php echo $this->getSkinUrl('images/tig_buckaroo3extended/'); ?>buckaroo_small.png" alt="" /></a></td>
|
| 83 |
</tr>
|
| 84 |
<tr>
|
| 85 |
<td class="first"><?php echo $_helper->__('Phone:');?></td>
|
| 90 |
<td class="last"><a href="mailto:support@buckaroo.nl">support@buckaroo.nl</a></td>
|
| 91 |
</tr>
|
| 92 |
</table>
|
| 93 |
+
<h4><?php echo $_helper->__('Extension support and advanced configuration');?></h4>
|
| 94 |
+
<p><?php echo $_helper->__('For Magento related support, feature requests or reporting bugs contact TIG:');?></p>
|
|
|
|
| 95 |
<table class="contact">
|
| 96 |
+
<tr>
|
| 97 |
+
<td class="first"><?php echo $_helper->__('Online documentation and FAQ:');?></td>
|
| 98 |
+
<td class="last"><a target="_blank" href="http://kb.tig.nl/">kb.tig.nl</a></td>
|
| 99 |
+
<td rowspan="3" class="tig_logo"><a href="http://www.tig.nl" target="_blank"><img src="<?php echo $this->getSkinUrl('images/tig_buckaroo3extended/'); ?>tig_logo_medium.png" alt="" /></a></td>
|
| 100 |
+
</tr>
|
| 101 |
<tr>
|
| 102 |
+
<td class="first"><?php echo $_helper->__('Request support:');?></td>
|
| 103 |
+
<td class="last"><a target="_blank" href="http://kb.tig.nl/ticket/form/new">kb.tig.nl/ticket/form/new</a></td>
|
| 104 |
</tr>
|
| 105 |
<tr>
|
| 106 |
+
<td class="first"><?php echo $_helper->__('Misc. questions by email:');?></td>
|
| 107 |
<td class="last"><a href="mailto:servicedesk@tig.nl">servicedesk@tig.nl</a></td>
|
| 108 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
</table>
|
| 110 |
</div>
|
| 111 |
<div class="text-box">
|
|
@@ -37,14 +37,7 @@
|
|
| 37 |
?>
|
| 38 |
</li>
|
| 39 |
|
| 40 |
-
<?php if($this->getPaymethod() == '
|
| 41 |
-
<li>
|
| 42 |
-
<label for="<?php echo $_code;?>_BPE_customer_account_number"><?php echo $this->__('Bank account number') ?>:</label>
|
| 43 |
-
<div class="input-box">
|
| 44 |
-
<input class="input-text" type="text" title="<?php echo $this->__('Bank account number') ?>" name="<?php echo $_code;?>_bpe_customer_account_number" value="<?php echo $this->getBankAccount(); ?>" id="<?php echo $_code;?>_BPE_customer_account_number" />
|
| 45 |
-
</div>
|
| 46 |
-
</li>
|
| 47 |
-
<?php else:?>
|
| 48 |
<li>
|
| 49 |
<label for="<?php echo $_code;?>_BPE_customer_account_number" class="required"><?php echo $this->__('Bank account number') ?>: <em>*</em></label>
|
| 50 |
<div class="input-box">
|
|
@@ -61,13 +54,13 @@
|
|
| 61 |
<?php if($currentBusiness == '1'): ?>
|
| 62 |
|
| 63 |
<li>
|
| 64 |
-
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="1" />
|
| 65 |
</li>
|
| 66 |
|
| 67 |
<?php elseif($currentBusiness == '2'):?>
|
| 68 |
|
| 69 |
<li>
|
| 70 |
-
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="2" />
|
| 71 |
<div id="b2b-fields">
|
| 72 |
<label class="required" for="<?php echo $_code;?>_BPE_CompanyCOCRegistration"><?php echo $this->__('COC Number');?></label>
|
| 73 |
<div class="input-box">
|
| 37 |
?>
|
| 38 |
</li>
|
| 39 |
|
| 40 |
+
<?php if($this->getPaymethod() == 'afterpayacceptgiro'):?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
<li>
|
| 42 |
<label for="<?php echo $_code;?>_BPE_customer_account_number" class="required"><?php echo $this->__('Bank account number') ?>: <em>*</em></label>
|
| 43 |
<div class="input-box">
|
| 54 |
<?php if($currentBusiness == '1'): ?>
|
| 55 |
|
| 56 |
<li>
|
| 57 |
+
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="1" id="<?php echo $_code;?>_BPE_BusinessSelect"/>
|
| 58 |
</li>
|
| 59 |
|
| 60 |
<?php elseif($currentBusiness == '2'):?>
|
| 61 |
|
| 62 |
<li>
|
| 63 |
+
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="2" id="<?php echo $_code;?>_BPE_BusinessSelect"/>
|
| 64 |
<div id="b2b-fields">
|
| 65 |
<label class="required" for="<?php echo $_code;?>_BPE_CompanyCOCRegistration"><?php echo $this->__('COC Number');?></label>
|
| 66 |
<div class="input-box">
|
|
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php $_code = $this->getMethodCode() ?>
|
| 2 |
+
|
| 3 |
+
<div id="payment-errors" class="validation-advice" style="display:none;"></div>
|
| 4 |
+
<fieldset class="form-list buckaroo-method">
|
| 5 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none" class="buckaroo3extended_input">
|
| 6 |
+
<li>
|
| 7 |
+
<label for="<?php echo $_code;?>_BPE_Customergender" class="required"><?php echo $this->__('Salutation');?>: <em>*</em></label>
|
| 8 |
+
<div class="input-box">
|
| 9 |
+
<select name="<?php echo $_code;?>_BPE_Customergender" class="validate-select validate-number" title="<?php echo $this->__('Salutation');?>" id="<?php echo $_code;?>_BPE_Customergender">
|
| 10 |
+
<option value=''><?php echo $this->__('Select'); ?></option>
|
| 11 |
+
<option value="1" <?php echo ($this->getGender()===1)?'selected':'';?>><?php echo $this->__('Mr.'); ?></option>
|
| 12 |
+
<option value="2" <?php echo ($this->getGender()===2)?'selected':'';?>><?php echo $this->__('Mrs.'); ?></option>
|
| 13 |
+
</select>
|
| 14 |
+
</div>
|
| 15 |
+
</li>
|
| 16 |
+
<li>
|
| 17 |
+
<label><?php echo $this->__('Billing name');?>:</label>
|
| 18 |
+
<div class="input-box">
|
| 19 |
+
<span class="disabled stylefix" id="<?php echo $_code;?>_BPE_Customername" title="<?php echo $this->__('Name');?>"><?php echo $this->getName(); ?></span>
|
| 20 |
+
</div>
|
| 21 |
+
</li>
|
| 22 |
+
<li <?php if ($this->getAddress()->getTelephone() && $this->getAddress()->getTelephone() != '-'): ?>style="display:none;"<?php endif; ?>>
|
| 23 |
+
<label class="required" for="<?php echo $_code;?>_BPE_Customerphone"><?php echo $this->__('Telephone') ?>: <em>*</em></label>
|
| 24 |
+
<div class="input-box">
|
| 25 |
+
<input class="input-text required-entry" type="text" title="<?php echo $this->__('Telephone') ?>" name="<?php echo $_code;?>_bpe_customer_phone_number" value="<?php echo $this->getPhoneNumber(); ?>" id="<?php echo $_code;?>_BPE_Customerphone"/>
|
| 26 |
+
</div>
|
| 27 |
+
</li>
|
| 28 |
+
<li>
|
| 29 |
+
<?php
|
| 30 |
+
echo $this->getLayout()->createBlock('buckaroo3extended/customer_widget_dob')
|
| 31 |
+
->setFieldIdFormat($_code . ':billing:%s')
|
| 32 |
+
->setFieldNameFormat('payment[' . $_code . '][%s]')
|
| 33 |
+
->setIsRequired(true)
|
| 34 |
+
->setPaymentMethodCode($_code)
|
| 35 |
+
->setDate($this->getCustomer()->getDob())
|
| 36 |
+
->toHtml();
|
| 37 |
+
?>
|
| 38 |
+
</li>
|
| 39 |
+
|
| 40 |
+
<?php if($this->getPaymethod() == 'afterpayacceptgiro'):?>
|
| 41 |
+
<li>
|
| 42 |
+
<label for="<?php echo $_code;?>_BPE_customer_account_number" class="required"><?php echo $this->__('Bank account number') ?>: <em>*</em></label>
|
| 43 |
+
<div class="input-box">
|
| 44 |
+
<input class="input-text required-entry" type="text" title="<?php echo $this->__('Bank account number') ?>" name="<?php echo $_code;?>_bpe_customer_account_number" value="<?php echo $this->getBankAccount(); ?>" id="<?php echo $_code;?>_BPE_customer_account_number" />
|
| 45 |
+
</div>
|
| 46 |
+
</li>
|
| 47 |
+
<?php endif;?>
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
<?php $currentBusiness = $this->getBusiness(); ?>
|
| 51 |
+
|
| 52 |
+
<?php $currentBusiness = ($this->getPaymethod() == 'afterpaydigiaccept')? $currentBusiness : '1'; ?>
|
| 53 |
+
|
| 54 |
+
<?php if($currentBusiness == '1'): ?>
|
| 55 |
+
|
| 56 |
+
<li>
|
| 57 |
+
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="1" id="<?php echo $_code;?>_BPE_BusinessSelect"/>
|
| 58 |
+
</li>
|
| 59 |
+
|
| 60 |
+
<?php elseif($currentBusiness == '2'):?>
|
| 61 |
+
|
| 62 |
+
<li>
|
| 63 |
+
<input type="hidden" name="<?php echo $_code;?>_BPE_BusinessSelect" value="2" id="<?php echo $_code;?>_BPE_BusinessSelect"/>
|
| 64 |
+
<div id="b2b-fields">
|
| 65 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CompanyCOCRegistration"><?php echo $this->__('COC Number');?></label>
|
| 66 |
+
<div class="input-box">
|
| 67 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CompanyCOCRegistration" id="<?php echo $_code;?>_BPE_CompanyCOCRegistration" value="<?php echo $this->getCompanyCOCRegistration();?>" />
|
| 68 |
+
</div>
|
| 69 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CompanyName"><?php echo $this->__('Company Name');?></label>
|
| 70 |
+
<div class="input-box">
|
| 71 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CompanyName" id="<?php echo $_code;?>_BPE_CompanyName" value="<?php echo $this->getCompanyName();?>" />
|
| 72 |
+
</div>
|
| 73 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CostCentre"><?php echo $this->__('Cost Center');?></label>
|
| 74 |
+
<div class="input-box">
|
| 75 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CostCentre" id="<?php echo $_code;?>_BPE_CostCentre" value="<?php echo $this->getCostCentre();?>" />
|
| 76 |
+
</div>
|
| 77 |
+
<label class="required" for="<?php echo $_code;?>_BPE_VatNumber"><?php echo $this->__('VAT Number');?></label>
|
| 78 |
+
<div class="input-box">
|
| 79 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_VatNumber" id="<?php echo $_code;?>_BPE_VatNumber" value="<?php echo $this->getVatNumber();?>" />
|
| 80 |
+
</div>
|
| 81 |
+
</div>
|
| 82 |
+
</li>
|
| 83 |
+
|
| 84 |
+
<?php elseif($currentBusiness == '3'):?>
|
| 85 |
+
|
| 86 |
+
<li>
|
| 87 |
+
<label for="<?php echo $_code;?>_BPE_BusinessSelect"><?php echo $this->__('Set Business');?>:</label>
|
| 88 |
+
<div class="input-box">
|
| 89 |
+
<select name="<?php echo $_code;?>_BPE_BusinessSelect" class="validate-select validate-number" title="<?php echo $this->__('Set Business');?>" id="<?php echo $_code;?>_BPE_BusinessSelect">
|
| 90 |
+
<option value="1" <?php echo (($this->getBusinessSelect()=='1')?'selected':'') ;?>><?php echo $this->__('B2C');?></option>
|
| 91 |
+
<option value="2" <?php echo (($this->getBusinessSelect()=='2')?'selected':'') ;?>><?php echo $this->__('B2B');?></option>
|
| 92 |
+
</select>
|
| 93 |
+
</div>
|
| 94 |
+
<?php
|
| 95 |
+
$style = '';
|
| 96 |
+
if(is_null($this->getBusinessSelect()) || $this->getBusinessSelect() == '1'){
|
| 97 |
+
$style = ' style="display:none;"';
|
| 98 |
+
}
|
| 99 |
+
?>
|
| 100 |
+
<div id="b2b-fields"<?php echo $style;?>>
|
| 101 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CompanyCOCRegistration"><?php echo $this->__('COC Number');?></label>
|
| 102 |
+
<div class="input-box">
|
| 103 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CompanyCOCRegistration" id="<?php echo $_code;?>_BPE_CompanyCOCRegistration" value="<?php echo $this->getCompanyCoCRegistration();?>" />
|
| 104 |
+
</div>
|
| 105 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CompanyName"><?php echo $this->__('Company Name');?></label>
|
| 106 |
+
<div class="input-box">
|
| 107 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CompanyName" id="<?php echo $_code;?>_BPE_CompanyName" value="<?php echo $this->getCompanyName();?>" />
|
| 108 |
+
</div>
|
| 109 |
+
<label class="required" for="<?php echo $_code;?>_BPE_CostCentre"><?php echo $this->__('Cost Center');?></label>
|
| 110 |
+
<div class="input-box">
|
| 111 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_CostCentre" id="<?php echo $_code;?>_BPE_CostCentre" value="<?php echo $this->getCostCentre();?>" />
|
| 112 |
+
</div>
|
| 113 |
+
<label class="required" for="<?php echo $_code;?>_BPE_VatNumber"><?php echo $this->__('VAT Number');?></label>
|
| 114 |
+
<div class="input-box">
|
| 115 |
+
<input class="input-text required-entry" type="text" name="<?php echo $_code;?>_BPE_VatNumber" id="<?php echo $_code;?>_BPE_VatNumber" value="<?php echo $this->getVatNumber();?>" />
|
| 116 |
+
</div>
|
| 117 |
+
</div>
|
| 118 |
+
</li>
|
| 119 |
+
|
| 120 |
+
<?php endif; ?>
|
| 121 |
+
|
| 122 |
+
<li class="tac-accept">
|
| 123 |
+
<div class="input-box">
|
| 124 |
+
<input class="input-checkbox required-entry" type="checkbox" title="<?php echo $this->__('Terms and Conditions') ?>" name="<?php echo $_code;?>_bpe_accept" value="checked" id="<?php echo $_code;?>_BPE_terms_and_conditions" />
|
| 125 |
+
</div>
|
| 126 |
+
<label for="<?php echo $_code;?>_BPE_terms_and_conditions" class="required">
|
| 127 |
+
<?php echo $this->__('Yes, I accept the %sterms and condition%s for the use of Afterpay.', '<a style="float:none;margin:0;" target="_blank" href="https://www.afterpay.nl/nl/klantenservice/betalingsvoorwaarden/">', '</a>') ?> <em>*</em>
|
| 128 |
+
</label>
|
| 129 |
+
</li>
|
| 130 |
+
|
| 131 |
+
<li>
|
| 132 |
+
<?php echo Mage::helper('buckaroo3extended')->__('Please make sure all fields are filled in correctly before proceeding.')?>
|
| 133 |
+
</li>
|
| 134 |
+
</ul>
|
| 135 |
+
</fieldset>
|
| 136 |
+
<script type="text/javascript">
|
| 137 |
+
var paymentCode = '<?php echo $_code;?>';
|
| 138 |
+
|
| 139 |
+
$(paymentCode + '_BPE_BusinessSelect').observe('change', function(event){
|
| 140 |
+
if($(paymentCode + '_BPE_BusinessSelect').getValue() == 2){
|
| 141 |
+
$('b2b-fields').show();
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
if($(paymentCode + '_BPE_BusinessSelect').getValue() == 1){
|
| 145 |
+
$('b2b-fields').hide();
|
| 146 |
+
}
|
| 147 |
+
});
|
| 148 |
+
</script>
|
| 149 |
+
|
|
@@ -1,3 +1,6 @@
|
|
| 1 |
<![if !lt IE 9]>
|
| 2 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/TIG/Buckaroo3Extended/jQuery-1.4.4.min.js', array('_secure' => true)); ?>"></script>
|
|
|
|
|
|
|
|
|
|
| 3 |
<![endif]>
|
| 1 |
<![if !lt IE 9]>
|
| 2 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/TIG/Buckaroo3Extended/jQuery-1.4.4.min.js', array('_secure' => true)); ?>"></script>
|
| 3 |
+
<script>
|
| 4 |
+
var jQuery_144 = jQuery.noConflict(true);
|
| 5 |
+
</script>
|
| 6 |
<![endif]>
|
|
@@ -207,17 +207,17 @@
|
|
| 207 |
"Magento Enterprise Edition version","Magento Enterprise Edition versie"
|
| 208 |
"OneStepCheckout version","OneStepCheckout versie"
|
| 209 |
"Support","Support"
|
| 210 |
-
"
|
| 211 |
-
"Module basic configuration and account information","Algemene instellingen en
|
| 212 |
-
"Acquire your (Merchant) key, Secret key, certificate and certificate thumbprint prior contacting Buckaroo technical support:","Voor ondersteuning bij het instellen van uw
|
| 213 |
"Buckaroo Payment Plaza:","Buckaroo Payment Plaza:"
|
| 214 |
"Phone:","Telefoon:"
|
| 215 |
"E-mail:","E-mail:"
|
| 216 |
-
"
|
| 217 |
-
"For
|
| 218 |
-
"
|
| 219 |
-
"
|
| 220 |
-
"Online
|
| 221 |
"Documentation","Documentatie"
|
| 222 |
"A list of documents regarding the module.","Een lijst van documenten met betrekking tot de module."
|
| 223 |
"Download a PDF format of the manual. Currently the manual is only available in Dutch.","Installatie en configuratie handleiding. Alleen in het Nederlands beschikbaar"
|
| 207 |
"Magento Enterprise Edition version","Magento Enterprise Edition versie"
|
| 208 |
"OneStepCheckout version","OneStepCheckout versie"
|
| 209 |
"Support","Support"
|
| 210 |
+
"This extension is developed by TIG, commissioned by Buckaroo.","Deze extensie is ontwikkeld door TIG in opdracht van Buckaroo."
|
| 211 |
+
"Module basic configuration and account information","Algemene instellingen en accountgegevens."
|
| 212 |
+
"Acquire your (Merchant) key, Secret key, certificate and certificate thumbprint prior contacting Buckaroo technical support:","Voor ondersteuning bij het instellen van uw accountgegevens neem contact op met Buckaroo:"
|
| 213 |
"Buckaroo Payment Plaza:","Buckaroo Payment Plaza:"
|
| 214 |
"Phone:","Telefoon:"
|
| 215 |
"E-mail:","E-mail:"
|
| 216 |
+
"Extension support and advanced configuration","Extensie support en geavanceerde configuratie"
|
| 217 |
+
"For Magento related support, feature requests or reporting bugs contact TIG:","Voor Magento gerelateerde vragen, wensen voor nieuwe features of het melden van bugs, neem contact op met TIG:"
|
| 218 |
+
"Request support:","Support aanvragen:"
|
| 219 |
+
"Misc. questions by email:","Overige vragen per e-mail:"
|
| 220 |
+
"Online documentation and FAQ:","Online documentatie en FAQ:"
|
| 221 |
"Documentation","Documentatie"
|
| 222 |
"A list of documents regarding the module.","Een lijst van documenten met betrekking tot de module."
|
| 223 |
"Download a PDF format of the manual. Currently the manual is only available in Dutch.","Installatie en configuratie handleiding. Alleen in het Nederlands beschikbaar"
|
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>tig_buckaroo3extended</name>
|
| 4 |
-
<version>4.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US">Creative Commons License</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -34,7 +34,20 @@ Payment methods available include:
|
|
| 34 |
- Vpay
|
| 35 |

|
| 36 |
Other services offered by this extension include refunds and paymentfee.</description>
|
| 37 |
-
<notes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
==== Improvements ====
|
| 39 |
- Added notification for declined payments for AfterPay payment method
|
| 40 |
- Compatibility with Onestepcheckout improved
|
|
@@ -58,9 +71,9 @@ Other services offered by this extension include refunds and paymentfee.</descri
|
|
| 58 |
==== Bug fixes ====
|
| 59 |
- Fixed a problem where the order ID would stay reserved after a payment had failed, causing errors.</notes>
|
| 60 |
<authors><author><name>TIG</name><user>supporttotal</user><email>servicedesk@totalinternetgroup.nl</email></author></authors>
|
| 61 |
-
<date>2015-
|
| 62 |
-
<time>11:
|
| 63 |
-
<contents><target name="magecommunity"><dir name="TIG"><dir name="Buckaroo3Extended"><dir name="Block"><dir name="Adminhtml"><dir name="Giftcard"><dir name="Edit"><file name="Form.php" hash="cec5b5d92f5f710693e4cb8495cfb6a8"/></dir><file name="Edit.php" hash="28d90558574b93a6cb360b7270991016"/><file name="Grid.php" hash="a3d1b809a0a5c88fb3ff9b74d6b3dd5c"/></dir><file name="Giftcard.php" hash="a3937f82be98c507a28b6fcad86313ee"/><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Totals"><file name="Fee.php" hash="84d71b5c883b67baa84c2df0bcd8142b"/></dir></dir><dir name="Creditmemo"><dir name="Create"><file name="Fee.php" hash="c294febe98243a2c1f0f74417e07d094"/><file name="RefundFields.php" hash="ba689788cd45cdde188a63607d1c35f2"/></dir><dir name="Totals"><file name="Fee.php" hash="9e7ce33537256a4ee24928932a6de670"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="f96253212645e3873369e69698f2d9d9"/></dir></dir><dir name="Totals"><file name="Fee.php" hash="6864e33af4fa09ef3bdeb35686701623"/></dir></dir></dir><dir name="System"><dir name="Config"><file name="Hint.php" hash="d1e224613c3fb7c372cee673fadf224f"/><file name="KlarnaCheck.php" hash="4af2d295960ab6b130d5a00679743973"/><file name="Paymentmethodbanner.php" hash="517693650534e8069de9839c0f5f90f4"/><file name="SellersProtectionCheck.php" hash="fc531673aa166098a19b5c8919c1b992"/><file name="Singlehint.php" hash="78f13dec86b716a2fb6e136c4efbd34f"/><file name="SupportTab.php" hash="0bd8666b7428669839b96a05c794f192"/></dir></dir></dir><dir name="Customer"><dir name="Widget"><file name="Dob.php" hash="c0b2de80572d3acf4228c6e04d5a8a50"/></dir></dir><dir name="PaymentFee"><dir name="Checkout"><dir name="Total"><file name="Fee.php" hash="859c52bdb843bd2a5dca69c1a96b9d85"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Totals"><file name="Fee.php" hash="40556128c469edfc7514e8eb46668360"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="cc9f7c5e4dcada81e6c10a5bbecba4b0"/></dir></dir><dir name="Totals"><file name="Fee.php" hash="115b6e91705e7f2cd09be0c7042be148"/></dir></dir></dir></dir><dir name="PaymentMethods"><dir name="Afterpay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ba11f813f22d58843815e9fc1c26fc5e"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="a179f66c4080cf66a8eee986ee7e8e49"/></dir></dir><dir name="Amex"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec67efef6005d63a6f7ef84a805ed084"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ef4f931b4c5c26a63b263e914b516014"/></dir></dir><dir name="Bancontactmrcash"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="b5a0025b216c2b63d8c83e7fe4eb2ddf"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="2e2712dbaf27527c0656b364bf125dc9"/></dir></dir><dir name="Cartebancaire"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="31ed65e056140a830602b96968669415"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="dc97283a9fefd72b17dec36a5d59d120"/></dir></dir><dir name="Cartebleue"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="e51cfc32b2bd41e6bfb84e685bd48f49"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="1881a3b27b52a2c6f0d9c2af537d2eda"/></dir></dir><dir name="Checkout"><dir name="Form"><file name="Abstract.php" hash="140cf74d591a29d9dc1743dbb896181b"/></dir></dir><dir name="Directdebit"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="858cc238e314497c6e02b86ce8854792"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="6cd6ce1d3e716a945a1be7e85a840172"/></dir><file name="Info.php" hash="dcf3f19dcd8fdcf6db3113439ccfd5b6"/></dir><dir name="Empayment"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="3e28f395bb35d8560d89917b9f0c226f"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ecb1f211db9d40dda96aae89e8b32a23"/></dir></dir><dir name="Eps"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="eeb6508ef91f6cd68e1eeca65da606a1"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="a5135b3bdae5d5f92d0de10f6048fd25"/></dir></dir><dir name="Giftcards"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec67efef6005d63a6f7ef84a805ed084"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="33af8a819f0c98e375da3f1a6bd4fd90"/></dir></dir><dir name="Giropay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="71ae33b626babf928bef6d9a0b473fbf"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="9579b1fc7b39c7e0311112eed0e2e424"/></dir></dir><dir name="Ideal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="7e2f27cb6d88508141bf9ca81a62e788"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="93535ef15ddf0e01877d5238a592c90c"/></dir></dir><dir name="Maestro"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="36b949922a808b6762d55585053e4c15"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="3436feaae3971f17a27a98b6a5d245ea"/></dir></dir><dir name="Mastercard"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec6b987d24c741645ec37bd892ac8bca"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ffb982e49d399822c419925383c3d4c8"/></dir></dir><dir name="Onlinegiro"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="358a5df80243f9cfc77c224087822ff9"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="5a0313aa9253d9e321da67cf2d202181"/></dir></dir><dir name="Paymentguarantee"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="c8d536fb37e9810650c3952934e75057"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="38f8edba57df3f3769a0eb9353f7400c"/></dir></dir><dir name="Paypal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ccf71be678656e036d1567717020817f"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="edd039e7dba53c0d8c270545509d38b5"/></dir></dir><dir name="Payperemail"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="bf4783b0df67b3df19c720364e568d2e"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="e7b3e1b8b5cdcc7445d8e7209bf22f9c"/></dir></dir><dir name="Paysafecard"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="882c8e4aadf56b177ba5b5623370d92a"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ed9c62c607b4d663ad06be904cbaa46a"/></dir></dir><dir name="Sofortueberweisung"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="f17155682aea4ab281eb898f6de4df3a"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="0971634416e29fc9a56a34dbf3cdedbf"/></dir></dir><dir name="Transfer"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="0c478e0a56af5c39c5c6477300591a75"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="300913974c2851e88c95a9a59fada8dd"/></dir></dir><dir name="Visa"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="541ddbdcd3ad5651287d4109a6ad7233"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="b12ed9f43d71192ad44bbfc946d79581"/></dir></dir><dir name="Visaelectron"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="2c3b332aefde3fb985caa37ce5605c04"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="cc6c89b829c9fefdca74ba8d8173889b"/></dir></dir><dir name="Vpay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="15544e4ab1e765f7e284b4ad9c554c92"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="8795e0134da1d2cece56c7d228a20fc1"/></dir></dir></dir><dir name="Refund"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="NoOptionsAvailable.php" hash="f40e0935fc520a46d16c6d2d93c65a02"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ef9f2388dbdfdc05ebf1e81e5b8d9014"/></dir><dir name="Model"><file name="Abstract.php" hash="8bf1ac37eba295a59d50f0d9b648ed77"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Buckaroo"><file name="Certificate.php" hash="81662b088ecdd765c6d3219fae334af1"/><file name="Fee.php" hash="13780025d18a138e0fa3c09048bf2e19"/></dir></dir></dir></dir></dir><dir name="Certificate"><file name="Certificate.php" hash="53f288cf29724c0df201a2d368222d7e"/></dir><file name="Certificate.php" hash="4f0c237526e019a188b0abd58820ab2a"/><file name="Giftcard.php" hash="8c3125cece761673aef50307e4f6b398"/><dir name="Mysql4"><file name="Setup.php" hash="fede9dbd2f1b214a12aa98bd895018b9"/></dir><dir name="Observer"><file name="Abstract.php" hash="ea1a041de14fc04132545f540afaeda1"/><file name="BackendOrder.php" hash="c3c6a924cea97e4e3a28adbda83ffe78"/></dir><file name="Observer.php" hash="cb2af674850a678fae0b91ef45f621a1"/><dir name="OldPaymentMethods"><file name="OldPaymentMethod.php" hash="7a27b031e5e0192a1486da3b30fa77be"/></dir><dir name="PaymentFee"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><dir name="Fee"><file name="Abstract.php" hash="7a735d2cdd496f1ab39b5e7fa39385eb"/></dir><file name="Fee.php" hash="932fd6e5229ea0e03bfc8c4a3cdb08b6"/><file name="FeeTax.php" hash="de53ceeec529fe83d61a440397e5ae8f"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Fee.php" hash="c3c18aedec2ec4f8626643db53c7ac67"/><file name="FeeTax.php" hash="55260378223e3bb0e6daace9388e2e03"/><file name="Subtotal.php" hash="2e44bed3b438dc0a44a4fc5c9bb8b426"/></dir></dir><dir name="Pdf"><dir name="Total"><file name="Fee.php" hash="2f837fd9e9c55a921fd505e0b6b34d1d"/><file name="Grandtotal.php" hash="f31d624fffaa5b35c81ced7a251c5c97"/><file name="Tax.php" hash="f0d2374a156c19a88b37f9d76ad56c55"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><dir name="Fee"><file name="Abstract.php" hash="4d4a5e078ed2fb568ac28ce736321d59"/></dir><file name="Fee.php" hash="0a7ec955f8bfe4b42c3482b53dfaa98c"/><file name="FeeTax.php" hash="970b285c1df9ad676b426946b3b21603"/></dir></dir></dir><file name="Service.php" hash="38d9ea54efba391312d6f3b28686d9e7"/><dir name="System"><dir name="Config"><dir name="Source"><file name="FeeTaxClass.php" hash="13fd7cb66310ce16d3f073ff39d108de"/></dir></dir></dir></dir><dir name="PaymentMethods"><dir name="Afterpay"><file name="Observer.php" hash="ddb24cc6d2e6b1cc0e2e21f88440c61f"/><file name="PaymentMethod.php" hash="a478d4b4aff873de890f544b26399dcc"/></dir><dir name="Amex"><file name="Observer.php" hash="c747d9147e1731a384960385ba9cc400"/><file name="PaymentMethod.php" hash="76aad7b5b1b5eec3565596a46b0bad92"/></dir><dir name="Bancontactmrcash"><file name="Observer.php" hash="a180693e927d0fee20202127c911155e"/><file name="PaymentMethod.php" hash="89556900b8112c809db248c24be23409"/></dir><dir name="Cartebancaire"><file name="Observer.php" hash="7acd1977f6a5485061676b5e5828da69"/><file name="PaymentMethod.php" hash="8133e6b1b3f68e879200e233fbd88b68"/></dir><dir name="Cartebleue"><file name="Observer.php" hash="3c749240c61fced32af6f7ac64f09422"/><file name="PaymentMethod.php" hash="f6174e8aaa6b9425ef56096fe31a2279"/></dir><dir name="Directdebit"><file name="Observer.php" hash="d69fea8936a47b872022f8d983e9be4a"/><file name="PaymentMethod.php" hash="49cd22ff14b88cc95b394288c673e5b9"/></dir><dir name="Empayment"><file name="Observer.php" hash="b50935e06c48f1288250df3a89c1937a"/><file name="PaymentMethod.php" hash="d870c837eff76d921251c1ae77f7da91"/></dir><dir name="Eps"><file name="Observer.php" hash="beab5315b271c662b88de70f4c37e437"/><file name="PaymentMethod.php" hash="9fdaac7fe5d631e7433d96e44b0a352c"/></dir><dir name="Giftcards"><file name="Observer.php" hash="b9a51455a64ddeba6cdc8a1f98baf8e9"/><file name="PaymentMethod.php" hash="c13e50817ea4b175459aa00ef55ceb99"/></dir><dir name="Giropay"><file name="Observer.php" hash="150c3f7e14fa48582e79c4de971d77fc"/><file name="PaymentMethod.php" hash="597f7589be437f9cc5543a492c944fb1"/></dir><dir name="Ideal"><file name="Observer.php" hash="4e8918aa271eafdbd47c587a9b21af8c"/><file name="PaymentMethod.php" hash="887eb231ed601e191a8d96c8e1c6f1ea"/></dir><dir name="Maestro"><file name="Observer.php" hash="b5679881bfd06e5c98e6acac05343382"/><file name="PaymentMethod.php" hash="726ab3653211cde3a67d8814ad7fceb2"/></dir><dir name="Mastercard"><file name="Observer.php" hash="839c559ea4473ecabcf2aba35de909a9"/><file name="PaymentMethod.php" hash="3d84627f57dbe5492e85caf35e4d9834"/></dir><dir name="Onlinegiro"><file name="Observer.php" hash="d8a90c5c36a45dc5845f3f38d86015e7"/><file name="PaymentMethod.php" hash="8e90b5a32e15865f89219c6304ac7eda"/></dir><file name="PaymentMethod.php" hash="26999eb53caa477ded3f73a19230e09d"/><dir name="Paymentguarantee"><file name="Observer.php" hash="eff1c02b192d7c1e69cdf819946ec194"/><file name="PaymentMethod.php" hash="c37dceb8dbf9c1a7d83bc1cd6431f1a0"/></dir><dir name="Paypal"><file name="Observer.php" hash="42a860b3cd28d3dae91bf0cdcf6cbf29"/><file name="PaymentMethod.php" hash="4304dd8b85e113512c5c21a5b302ce3e"/></dir><dir name="Payperemail"><file name="Observer.php" hash="d3f2d288610593c5a0a9398e4e96d068"/><file name="PaymentMethod.php" hash="d7bd90a320f0390e20165581c3d9ddfe"/></dir><dir name="Paysafecard"><file name="Observer.php" hash="5954a4b4bf9dd4febd8d84988e7282b9"/><file name="PaymentMethod.php" hash="771fe27ce89c1451bb03d1fb2b3c569e"/></dir><dir name="Sofortueberweisung"><file name="Observer.php" hash="96a4db03f99ed03bfc91ab3b315cc1da"/><file name="PaymentMethod.php" hash="3ce7b2d7c1ea195122174f6b66de7ac8"/></dir><dir name="Transfer"><file name="Observer.php" hash="eea70837020fcc703d2eb383f7926765"/><file name="PaymentMethod.php" hash="34878422839008d966bb7a86dc67477f"/></dir><dir name="Visa"><file name="Observer.php" hash="95e72d2f4950d1a213c56b318c199be6"/><file name="PaymentMethod.php" hash="cc082b4d6adfc96bf9a3c8b10500aea0"/></dir><dir name="Visaelectron"><file name="Observer.php" hash="ca9f4a9b94b2c3bd00733df160c4493e"/><file name="PaymentMethod.php" hash="1c6c4206cd80c4fcd0c02fd510d322f4"/></dir><dir name="Vpay"><file name="Observer.php" hash="61d59a900b732bb15f82dacb9a59407f"/><file name="PaymentMethod.php" hash="318085aa11380ca26d8486d3e40ab49c"/></dir></dir><file name="Process.php" hash="e22b62762fb2cc40e103bbd3e5ccf707"/><dir name="Refund"><file name="Creditmemo.php" hash="169384b6e3569c1291b0a17f141089d6"/><file name="Observer.php" hash="b86430165d17526ac58b2a5a5ff93a7e"/><dir name="Request"><file name="Abstract.php" hash="f61f0ffc429b2f67713525d35b69e3ce"/></dir><dir name="Response"><file name="Abstract.php" hash="50b9c66ec4694d143ae2c9d08fa9e308"/><file name="Push.php" hash="917395f2960a36ce44700a5025e3e1d3"/></dir><dir name="Sources"><file name="StatusesClosedFailed.php" hash="4972f40ca79890943b064dde78ce4dcd"/><file name="StatusesClosedSuccess.php" hash="ee554ae7199ce719ff3752821a3bdd08"/><file name="StatusesCompleteFailed.php" hash="2cdf858b2802f4c7219d47b3ad74f723"/><file name="StatusesCompleteSuccess.php" hash="82e0c3cc3e5464d52382f5d0c283b3fe"/><file name="StatusesProcessingFailed.php" hash="1e312bcc824623a3346bed6f64f1e170"/><file name="StatusesProcessingSuccess.php" hash="4f5fe2bbb1423bf24b595bb76d489cec"/></dir></dir><dir name="Request"><file name="Abstract.php" hash="d83abd0ea0649ca14f2326c4ef75fce7"/><file name="Availability.php" hash="8dd023844d5c27c198a937e5d2e4c6b3"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Resource"><dir name="Certificate"><file name="Collection.php" hash="793d24a8b45acfd95a86cb56f10c4af9"/></dir><file name="Certificate.php" hash="2944bbd321d00f4530a2ae9f420db461"/><dir name="Giftcard"><file name="Collection.php" hash="3f001857a1b75f42bcbb9af0e9ba8bae"/></dir><file name="Giftcard.php" hash="ce7fe75cca48d71fa78441fb42eb17ff"/><file name="Setup.php" hash="0a1ef7d53f0a597cddbe1ea136cb1b80"/></dir><dir name="Response"><file name="Abstract.php" hash="862600d1c92eb9609dfe758819894ef2"/><file name="BackendOrder.php" hash="0bb1d6c88aa4a61f682c88f5b05dcd71"/><file name="Push.php" hash="c7615234cea12ed04009aada1f03f4d4"/><file name="Return.php" hash="014b7366883c97db925723725ae0e481"/></dir><file name="Soap.php" hash="acb284d82ad8cc4ab4f98315f17476f7"/><dir name="Sources"><file name="AcceptgiroDirectdebit.php" hash="a6bb969a2072a3616b3ac1487581702f"/><dir name="Afterpay"><file name="AvailableCurrencies.php" hash="e1a5f71e4c2285e790d0edc88ed729b6"/></dir><file name="Allspecificcountries.php" hash="718960abf74dead25882b4c9aed6748b"/><dir name="Amex"><file name="AvailableCurrencies.php" hash="a4ab70448075087d0d09573b76627b8f"/></dir><file name="Availablemethods.php" hash="3990954382e47269fc22fcc2ba9d1db5"/><dir name="Bancontactmrcash"><file name="AvailableCurrencies.php" hash="13182b85cc71aece799bdd83d24f09ac"/></dir><file name="BusinessToBusiness.php" hash="7433dd041e659bef9d589500a21edc7e"/><dir name="Cartebancaire"><file name="AvailableCurrencies.php" hash="1b43becf181eb8be91b97c0b1eedbbee"/></dir><dir name="Cartebleue"><file name="AvailableCurrencies.php" hash="ec38baf0d46f9d2cb33a4aaf282a78d2"/></dir><file name="Certificates.php" hash="4a5ba3edbf7f78e48a02f06dbe646d90"/><file name="CultureType.php" hash="d16db29cf420fa3fd950b9b0e6f589a6"/><dir name="Directdebit"><file name="AvailableCurrencies.php" hash="445f7129e59841c1980a020d3c226677"/></dir><dir name="Empayment"><file name="AvailableCurrencies.php" hash="a311f94ec63c66b6271e474d17b75a1c"/></dir><dir name="Eps"><file name="AvailableCurrencies.php" hash="35a46a119f24f488ee39072de89a5490"/></dir><file name="FeePercentageMode.php" hash="061762cdb412508fb151ca39cbbae5d5"/><dir name="Giftcards"><file name="AvailableCards.php" hash="e7ff41b43fd9735391172a6761ce5beb"/><file name="AvailableCurrencies.php" hash="715babae709c477b511b8d42f2ba7c73"/></dir><dir name="Giropay"><file name="AvailableCurrencies.php" hash="bf9331a3f657c8cd088adc8dbff80dc2"/></dir><dir name="Ideal"><file name="AvailableCurrencies.php" hash="9c69554dda3472f3bdda6d2d56af7736"/><file name="ServiceVersion.php" hash="181e0bc6f5e6e37c4b18cd66e01d9779"/></dir><dir name="Maestro"><file name="AvailableCurrencies.php" hash="df04706dcf5fd123a62a76a0fad52869"/></dir><dir name="Mastercard"><file name="AvailableCurrencies.php" hash="be324daba3c3cacefa355a8b129b5648"/></dir><dir name="Onlinegiro"><file name="AvailableCurrencies.php" hash="64771602c17f8bb9b68dffcdfe61e95b"/></dir><file name="PaymentMethodArea.php" hash="00b4294cdc79583a718521f14903e5ba"/><dir name="Paymentguarantee"><file name="AvailableCurrencies.php" hash="b826b93f54e5a4ebf579ba3a0dba35bb"/></dir><dir name="Paypal"><file name="AvailableCurrencies.php" hash="1204755d7831b4a342c2b9353367e53a"/></dir><dir name="Payperemail"><file name="AvailableCurrencies.php" hash="f6fb7359b7c5d0bc29cc98c4a1b75df9"/></dir><dir name="Paysafecard"><file name="AvailableCurrencies.php" hash="79a55b66aae407b84b5b76286f6194fe"/></dir><file name="ReminderLevel.php" hash="ad85f70f6bdb7b75a9a60ce71349f8ac"/><dir name="Sofortueberweisung"><file name="AvailableCurrencies.php" hash="34e87e1e8cedaabf931116bb5f68b66b"/></dir><file name="States.php" hash="77145e1431f0377b2c7c6812577aae9f"/><file name="StatusesFailed.php" hash="ca0406c3a0d1964b0e99aac3401d4484"/><file name="StatusesPending.php" hash="af8a6a3b57acea25e924090a37efc765"/><file name="StatusesPendingPayment.php" hash="c708bdeab09d6ed426310fb22c8571aa"/><file name="StatusesSuccess.php" hash="932910d9c8f0ae7debfbdaf72d0fd511"/><file name="TaxClasses.php" hash="b3eac25c3c44b3927f3fd5c42f6a84ab"/><file name="TestLive.php" hash="149c848d8dca11d3687054d5408772af"/><dir name="Transfer"><file name="AvailableCurrencies.php" hash="5da4b5d4e0fb953dad592fd6cd6f9530"/></dir><dir name="Visa"><file name="AvailableCurrencies.php" hash="4cf799f67fca45925bd8916ceda2b26c"/></dir><dir name="Visaelectron"><file name="AvailableCurrencies.php" hash="66a9a1dac82405b75aaf0df07166183f"/></dir><dir name="Vpay"><file name="AvailableCurrencies.php" hash="529b13b0b7032e90269453494d101049"/></dir><file name="Yesno.php" hash="b7fd7889636bccfbc1e6db14e804c221"/></dir></dir><dir name="certificate"><file name="Checkout.pem" hash="441f60bb62fdc14434954514b01d0aa3"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GiftcardController.php" hash="7a117cb306ba0b187a254a01010c6550"/></dir><file name="CheckoutController.php" hash="c285e9d641465c5006c8e83f3ad99171"/><file name="NotifyController.php" hash="13f602d752cb43e2cf2ff7a4b31414b4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3a5da475c9e8eda2d0b40a3085d3f3b3"/><file name="config.xml" hash="65a5a9355c614bd37e69ee522f239586"/><file name="system.xml" hash="57c0525c41b7e47beb5297b28aeaeb76"/></dir><dir name="lib"><file name="Buckaroo.wsdl" hash="4fc7278e90be66fc8101c699f73b6204"/><file name="Import_1.xsd" hash="32c5184fc8f2010a202b2021e1b7fc00"/><file name="Import_10.xsd" hash="a64b4c201518b512fc6bc1ab78f0102f"/><file name="Import_11.xsd" hash="161e2970900419dc387af04e37f3a8ee"/><file name="Import_12.xsd" hash="146273756bb0a9bfd6ea8f5fba22ee9c"/><file name="Import_13.xsd" hash="1727b36ee762f6b1617c49d3e7597f75"/><file name="Import_14.xsd" hash="815f6849ad9b89b0295ffb48082ff619"/><file name="Import_15.xsd" hash="dc6a0cf5ca0cd6a52c2c0e18b7182f5a"/><file name="Import_16.xsd" hash="6511f38274501935bc847881e9fa27ed"/><file name="Import_17.xsd" hash="3ca8df56825b5a88509138faf79de2f8"/><file name="Import_18.xsd" hash="9be4df50a6bdca4bd196f26d2ae4e429"/><file name="Import_19.xsd" hash="9c4cd9b53bdf09b597e420cb58c32a5c"/><file name="Import_2.xsd" hash="bbeaa3381c5b550d2dfad8c049ba68e8"/><file name="Import_20.xsd" hash="cc7fa2b280b8f2d38da43e9fc7b94f86"/><file name="Import_21.xsd" hash="9ca3b39018c8583aa18ca98340288813"/><file name="Import_22.xsd" hash="dedd6c550d812705832feaaef60c721f"/><file name="Import_23.xsd" hash="c7b8bfae66463e58ce68c7f77eec04a4"/><file name="Import_24.xsd" hash="97ff34ab5da093f868dfd6623d934032"/><file name="Import_25.xsd" hash="52024ab7933277cb56aacc558609e67a"/><file name="Import_3.xsd" hash="dead2627684b2cf45f72f5dd9235738d"/><file name="Import_4.xsd" hash="ad27bf7d8bedc5e44f6a9ef862a05cb5"/><file name="Import_5.xsd" hash="a9c07bdedf700b572b89172e71dac0cd"/><file name="Import_6.xsd" hash="a6b2e2ac238b942b075f8cf186a644ed"/><file name="Import_7.xsd" hash="47193b5224627392508a074dd94c912d"/><file name="Import_8.xsd" hash="d167423bf89d1029a58e78ce4a000c0b"/><file name="Import_9.xsd" hash="52518de0039a5167b6d0bf803916c6e2"/></dir><dir name="sql"><dir name="buckaroo3extended_setup"><file name="mysql4-data-upgrade-4.4.2.0-4.5.0.0.php" hash="3f34113aa093ec80a41c67926bdda27b"/><file name="mysql4-data-upgrade-4.6.1-4.7.0.php" hash="e2ffae63c1533bbe6d12e0e0532866dd"/><file name="mysql4-install-0.1.0.php" hash="a2c925736a20cfdc9e6adfdceedfe1ad"/><file name="mysql4-upgrade-0.1.0-2.0.2.php" hash="34983df0c6286b761c2e4be9c6cc7952"/><file name="mysql4-upgrade-2.0.2-4.0.0.php" hash="34983df0c6286b761c2e4be9c6cc7952"/><file name="mysql4-upgrade-4.0.3-4.1.0.php" hash="72423e33d33affb242114b19dda7e68b"/><file name="mysql4-upgrade-4.3.1-4.3.2.php" hash="aa198667eae0c5ba1cb105dcee146864"/><file name="mysql4-upgrade-4.3.3.0-4.4.0.0.php" hash="3f27e188751bcd62c624192a8658c2e8"/><file name="mysql4-upgrade-4.4.0.0-4.4.1.0.php" hash="9353901c8546ed0bd126ee14be081ec6"/><file name="mysql4-upgrade-4.6.1-4.7.0.php" hash="9cfe09a4b22a88390182dd1851d110be"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TIG_Buckaroo3Extended.xml" hash="6a23faf30df008518782b2d2a828c8a4"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="TIG"><file name="buckaroo3extended.xml" hash="bf38d10ed4b649d7390deda91e801b7d"/></dir></dir><dir name="template"><dir name="buckaroo3extended"><dir name="directdebit"><file name="info.phtml" hash="d1ba310ae081037271ee78d696db690f"/></dir><dir name="onlinegiro"><dir name="checkout"><file name="form.phtml" hash="997a24214a955aea9b2b19e18c8cb658"/></dir></dir><dir name="payperemail"><dir name="checkout"><file name="form.phtml" hash="5bc3425008dcb754c5b9fa544d88ceac"/></dir></dir><dir name="refund"><dir name="system"><dir name="config"><file name="noOptionsAvailable.phtml" hash="38c734121ab4b8554347c1569e0aae01"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="create"><file name="js.phtml" hash="3edec4e9d05ac156c3cc3314ceada764"/><dir name="totals"><file name="fee.phtml" hash="9864e20a538296885ae34f772708a90f"/></dir></dir><dir name="creditmemo"><dir name="create"><file name="refund_fields.phtml" hash="b09f36c5c42ebe040a15503b44b03e50"/><dir name="totals"><file name="fee.phtml" hash="6292242b0ff50c1187b2829da815e601"/></dir></dir></dir><dir name="totals"><file name="tax.phtml" hash="4bf6a29c289e42375e3bca41f6495bd9"/></dir></dir></dir><dir name="system"><dir name="config"><file name="hint.phtml" hash="b544c992e2dab23190d9ca0ce66c580f"/><file name="klarnaCheck.phtml" hash="69395e036253f21fbb9f3cc6a494930b"/><file name="paymentmethodbanner.phtml" hash="d4d30e0fabe6484e4c2181fa1074ce12"/><file name="paypalRegionCheck.phtml" hash="f0638223fc0fbdc4fb6b25e03c4258f1"/><file name="singlehint.phtml" hash="f4d4e28c7899e15b6692dcceb975ad77"/><file name="supportTab.phtml" hash="ac35953123509a9c7d6bda74cf4425dc"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="TIG"><file name="buckaroo3extended.xml" hash="21bd91c1ec958f1f04e886e42fd51718"/></dir></dir><dir name="template"><dir name="buckaroo3extended"><dir name="afterpay"><dir name="checkout"><file name="form.phtml" hash="5a26dcf79b963357fd9f53536918968c"/></dir></dir><dir name="amex"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="bancontactmrcash"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="cartebancaire"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="cartebleue"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="checkout"><dir name="total"><file name="buckaroo_fee.phtml" hash="070cdb545d718c890f1b372246a26143"/></dir></dir><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="fe142f7345e1908b8354d20f69023269"/></dir></dir><dir name="directdebit"><dir name="checkout"><file name="form.phtml" hash="8a3809bbc3d5e14d000a0a89206b1f0b"/></dir><file name="info.phtml" hash="f494d2b2d8f27df3a40548b8a5e38a99"/></dir><dir name="empayment"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="eps"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><dir name="giftcards"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="giropay"><dir name="checkout"><file name="form.phtml" hash="1d5f7d7fb64e7adcbcd980daff0dbf5d"/></dir></dir><dir name="ideal"><dir name="checkout"><file name="form.phtml" hash="034bcfb4d88904615679d8dcbc4021e6"/></dir></dir><file name="jquery.phtml" hash="49943840a94895034b1c615d3de6d03e"/><dir name="maestro"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="mastercard"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><file name="oneStepCheckout.phtml" hash="bc07be11bfe81f21a38eb332362932e6"/><dir name="onlinegiro"><dir name="checkout"><file name="form.phtml" hash="8b895e7f56531e3beab809270ae1a175"/></dir></dir><dir name="paymentFee"><dir name="checkout"><file name="fee.phtml" hash="80cfb59b392afa5bdb7d012c4782e8fa"/></dir></dir><dir name="paymentguarantee"><dir name="checkout"><file name="form.phtml" hash="50248bddb9fe74eecfd8fd1e9286bacb"/></dir><file name="termsAndConditions.phtml" hash="6f1fd609fc1baf3a541707f6fbe129f7"/></dir><dir name="paypal"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="payperemail"><dir name="checkout"><file name="form.phtml" hash="405369f9e2ceec15b76970b9f9ed8dfd"/></dir></dir><dir name="paysafecard"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><file name="saveData.phtml" hash="523e37b63f6a90ac00307551d7bcf3e4"/><dir name="sofortueberweisung"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><dir name="transfer"><dir name="checkout"><file name="form.phtml" hash="f88cbbb4f63010bd554c3dd5fb974b36"/></dir></dir><dir name="visa"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="visaelectron"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="vpay"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="tig_buckaroo3extended"><file name="supportTab.css" hash="fe987b7596fd606f69f34701152cdee7"/><file name="system_config_edit.css" hash="0bb88faa152728f3b84c57ba062da4bb"/></dir></dir><dir name="images"><dir name="tig_buckaroo3extended"><file name="buckaroo_large.png" hash="72ddf928560ce583ed36fafb7ccca4d5"/><file name="buckaroo_logo_medium.gif" hash="a7e5eb51b749720f6fc31d3a4234072e"/><file name="buckaroo_small.png" hash="af486c1bda7ed73a3ab756801aa4973d"/><file name="glyph_error.gif" hash="a138b803d772f552aa2e49e1c506edbd"/><file name="glyph_info.gif" hash="40f72d28be63ecf2b6ef44c7ea730104"/><file name="glyph_manual.png" hash="771db63b6ffc9de1c06da564796adc6e"/><file name="glyph_pdf.png" hash="a5ea929f4014a88d7320d0293913ace3"/><file name="glyph_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="glyph_warning.gif" hash="fa817cb6d49efb9855942ef2b739fc6c"/><file name="legend.gif" hash="d8fb0642901868d489d31b426f3e3406"/><file name="tig_logo_medium.gif" hash="3e1071908cfdb7b472438482c3331ac7"/></dir></dir><dir name="js"><dir name="tig_buckaroo3extended"><file name="jquery-1.4.4.min.js" hash="73a9c334c5ca71d70d092b42064f6476"/></dir><dir name="TIG"><dir name="Buckaroo3Extended"><file name="klarnaCheck.js" hash="4aa9345dc7937b177a0de82e09692c27"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="30d7388a4cbc8b37bd6aef80d6eaddac"/><file name="styles_osc.css" hash="4e8f3a8c6358590a302e4f3c8c19cdef"/></dir></dir></dir><dir name="images"><dir name="tig_buckaroo3extended"><file name="ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="icon_asn.gif" hash="0fbd9493e65ab774cc6859da47c3c8cc"/><file name="logo_abn_s.gif" hash="eb6d7cd949e6fbf671c43cb83c7c3e17"/><file name="logo_fortis_s.gif" hash="7f1ad68de127101a83e02c2e5af01fa7"/><file name="logo_friesland_s.gif" hash="d9955dc120b7d4216d9bd19b6d8621c0"/><file name="logo_ing_s.gif" hash="e56fa35285496c73565bfdf82d6967fa"/><file name="logo_knab_s.gif" hash="146e995dbede4e2798c278d6da26b9d2"/><file name="logo_lanschot_s.gif" hash="f68ceb355661c41779d716a6ef8dfdf3"/><file name="logo_rabo_s.gif" hash="8df417edaf2410ff574d9d1ed453c0bc"/><file name="logo_sns_s.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="logo_triodos.gif" hash="f3dd4d744232ddf4c1700068a6b3a531"/></dir></dir><dir name="js"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="jQuery-1.4.4.min.js" hash="5450efeb34b29f09b681e70d41649a54"/><file name="oneStepCheckout.js" hash="040d8ef524fbd7d2552b5f9a3e0ab222"/><file name="paymentGuaranteeTermsAndConditions.js" hash="04ace8a551d70f8fbf005bb1123f7fa4"/><file name="saveData.js" hash="c9c69851296427f52a8b4c67dbdd3ed3"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="nl_NL"><file name="TIG_Buckaroo3Extended.csv" hash="771c1dec741f8f0edd826bfef79f7532"/></dir><dir name="en_US"><file name="TIG_Buckaroo3Extended.csv" hash="1238d1d0c4a8e8a8468dfc1d36549c56"/></dir></target></contents>
|
| 64 |
<compatible/>
|
| 65 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 66 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>tig_buckaroo3extended</name>
|
| 4 |
+
<version>4.12.0</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US">Creative Commons License</license>
|
| 7 |
<channel>community</channel>
|
| 34 |
- Vpay
|
| 35 |

|
| 36 |
Other services offered by this extension include refunds and paymentfee.</description>
|
| 37 |
+
<notes>===== 4.12.0 =====
|
| 38 |
+
- Tweede betaalmethode Afterpay toegevoegd.
|
| 39 |
+

|
| 40 |
+
Bugfixes:
|
| 41 |
+
- Paymentfee label in order bevestiging wordt nu altijd goed overgenomen.
|
| 42 |
+

|
| 43 |
+
===== 4.11.0 =====
|
| 44 |
+
- MasterPass betaalmethode toegevoegd
|
| 45 |
+
- IBAN veld bij de AfterPay DigiAccept betaalmethode verwijderd
|
| 46 |
+

|
| 47 |
+
Bugfixes:
|
| 48 |
+
- Paymentfee label in transactionele e-mails tonen
|
| 49 |
+

|
| 50 |
+
==== 4.10.1 ====
|
| 51 |
==== Improvements ====
|
| 52 |
- Added notification for declined payments for AfterPay payment method
|
| 53 |
- Compatibility with Onestepcheckout improved
|
| 71 |
==== Bug fixes ====
|
| 72 |
- Fixed a problem where the order ID would stay reserved after a payment had failed, causing errors.</notes>
|
| 73 |
<authors><author><name>TIG</name><user>supporttotal</user><email>servicedesk@totalinternetgroup.nl</email></author></authors>
|
| 74 |
+
<date>2015-06-25</date>
|
| 75 |
+
<time>11:30:42</time>
|
| 76 |
+
<contents><target name="magecommunity"><dir name="TIG"><dir name="Buckaroo3Extended"><dir name="Block"><dir name="Adminhtml"><dir name="Giftcard"><dir name="Edit"><file name="Form.php" hash="cec5b5d92f5f710693e4cb8495cfb6a8"/></dir><file name="Edit.php" hash="28d90558574b93a6cb360b7270991016"/><file name="Grid.php" hash="a3d1b809a0a5c88fb3ff9b74d6b3dd5c"/></dir><file name="Giftcard.php" hash="a3937f82be98c507a28b6fcad86313ee"/><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Totals"><file name="Fee.php" hash="84d71b5c883b67baa84c2df0bcd8142b"/></dir></dir><dir name="Creditmemo"><dir name="Create"><file name="Fee.php" hash="c294febe98243a2c1f0f74417e07d094"/><file name="RefundFields.php" hash="ba689788cd45cdde188a63607d1c35f2"/></dir><dir name="Totals"><file name="Fee.php" hash="9e7ce33537256a4ee24928932a6de670"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="f96253212645e3873369e69698f2d9d9"/></dir></dir><dir name="Totals"><file name="Fee.php" hash="6864e33af4fa09ef3bdeb35686701623"/></dir></dir></dir><dir name="System"><dir name="Config"><file name="Hint.php" hash="6a9485f367f03b8475a9db75a0dadb6b"/><file name="KlarnaCheck.php" hash="4af2d295960ab6b130d5a00679743973"/><file name="Paymentmethodbanner.php" hash="517693650534e8069de9839c0f5f90f4"/><file name="SellersProtectionCheck.php" hash="fc531673aa166098a19b5c8919c1b992"/><file name="Singlehint.php" hash="78f13dec86b716a2fb6e136c4efbd34f"/><file name="SupportTab.php" hash="0bd8666b7428669839b96a05c794f192"/></dir></dir></dir><dir name="Customer"><dir name="Widget"><file name="Dob.php" hash="c0b2de80572d3acf4228c6e04d5a8a50"/></dir></dir><dir name="PaymentFee"><dir name="Checkout"><dir name="Total"><file name="Fee.php" hash="859c52bdb843bd2a5dca69c1a96b9d85"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Totals"><file name="Fee.php" hash="40556128c469edfc7514e8eb46668360"/></dir></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="99993c8778754a2aa551a0f263745225"/></dir></dir><dir name="Totals"><file name="Fee.php" hash="f731faca357e5eab220df5c7b0df6d3d"/></dir></dir></dir></dir><dir name="PaymentMethods"><dir name="Afterpay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ba11f813f22d58843815e9fc1c26fc5e"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="a179f66c4080cf66a8eee986ee7e8e49"/></dir></dir><dir name="Afterpay2"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="89317daa2c708f7a29c515be5381ab80"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="1ae3de4c8e3c9d86a0da556181a1ca20"/></dir></dir><dir name="Amex"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec67efef6005d63a6f7ef84a805ed084"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ef4f931b4c5c26a63b263e914b516014"/></dir></dir><dir name="Bancontactmrcash"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="b5a0025b216c2b63d8c83e7fe4eb2ddf"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="2e2712dbaf27527c0656b364bf125dc9"/></dir></dir><dir name="Cartebancaire"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="31ed65e056140a830602b96968669415"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="dc97283a9fefd72b17dec36a5d59d120"/></dir></dir><dir name="Cartebleue"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="e51cfc32b2bd41e6bfb84e685bd48f49"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="1881a3b27b52a2c6f0d9c2af537d2eda"/></dir></dir><dir name="Checkout"><dir name="Form"><file name="Abstract.php" hash="140cf74d591a29d9dc1743dbb896181b"/></dir></dir><dir name="Directdebit"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="858cc238e314497c6e02b86ce8854792"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="6cd6ce1d3e716a945a1be7e85a840172"/></dir><file name="Info.php" hash="dcf3f19dcd8fdcf6db3113439ccfd5b6"/></dir><dir name="Empayment"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="3e28f395bb35d8560d89917b9f0c226f"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ecb1f211db9d40dda96aae89e8b32a23"/></dir></dir><dir name="Eps"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="eeb6508ef91f6cd68e1eeca65da606a1"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="a5135b3bdae5d5f92d0de10f6048fd25"/></dir></dir><dir name="Giftcards"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec67efef6005d63a6f7ef84a805ed084"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="33af8a819f0c98e375da3f1a6bd4fd90"/></dir></dir><dir name="Giropay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="71ae33b626babf928bef6d9a0b473fbf"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="9579b1fc7b39c7e0311112eed0e2e424"/></dir></dir><dir name="Ideal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="7e2f27cb6d88508141bf9ca81a62e788"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="93535ef15ddf0e01877d5238a592c90c"/></dir></dir><dir name="Maestro"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="36b949922a808b6762d55585053e4c15"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="3436feaae3971f17a27a98b6a5d245ea"/></dir></dir><dir name="Mastercard"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ec6b987d24c741645ec37bd892ac8bca"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ffb982e49d399822c419925383c3d4c8"/></dir></dir><dir name="Masterpass"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="e4744b76ca546ce6475d6098e63a0de4"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="be79c5f18e56a1881106d25f45b63d9c"/></dir></dir><dir name="Onlinegiro"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="358a5df80243f9cfc77c224087822ff9"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="5a0313aa9253d9e321da67cf2d202181"/></dir></dir><dir name="Paymentguarantee"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="c8d536fb37e9810650c3952934e75057"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="38f8edba57df3f3769a0eb9353f7400c"/></dir></dir><dir name="Paypal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="ccf71be678656e036d1567717020817f"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="edd039e7dba53c0d8c270545509d38b5"/></dir></dir><dir name="Payperemail"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="bf4783b0df67b3df19c720364e568d2e"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="e7b3e1b8b5cdcc7445d8e7209bf22f9c"/></dir></dir><dir name="Paysafecard"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="882c8e4aadf56b177ba5b5623370d92a"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="ed9c62c607b4d663ad06be904cbaa46a"/></dir></dir><dir name="Sofortueberweisung"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="f17155682aea4ab281eb898f6de4df3a"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="0971634416e29fc9a56a34dbf3cdedbf"/></dir></dir><dir name="Transfer"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="0c478e0a56af5c39c5c6477300591a75"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="300913974c2851e88c95a9a59fada8dd"/></dir></dir><dir name="Visa"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="541ddbdcd3ad5651287d4109a6ad7233"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="b12ed9f43d71192ad44bbfc946d79581"/></dir></dir><dir name="Visaelectron"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="2c3b332aefde3fb985caa37ce5605c04"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="cc6c89b829c9fefdca74ba8d8173889b"/></dir></dir><dir name="Vpay"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Advancedbtn.php" hash="15544e4ab1e765f7e284b4ad9c554c92"/></dir></dir></dir><dir name="Checkout"><file name="Form.php" hash="8795e0134da1d2cece56c7d228a20fc1"/></dir></dir></dir><dir name="Refund"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="NoOptionsAvailable.php" hash="f40e0935fc520a46d16c6d2d93c65a02"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fc8a5eec4f83f8f18ffc467604846726"/></dir><dir name="Model"><file name="Abstract.php" hash="8bf1ac37eba295a59d50f0d9b648ed77"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Buckaroo"><file name="Certificate.php" hash="81662b088ecdd765c6d3219fae334af1"/><file name="Fee.php" hash="13780025d18a138e0fa3c09048bf2e19"/></dir></dir></dir></dir></dir><dir name="Certificate"><file name="Certificate.php" hash="53f288cf29724c0df201a2d368222d7e"/></dir><file name="Certificate.php" hash="4f0c237526e019a188b0abd58820ab2a"/><file name="Giftcard.php" hash="8c3125cece761673aef50307e4f6b398"/><dir name="Mysql4"><file name="Setup.php" hash="fede9dbd2f1b214a12aa98bd895018b9"/></dir><dir name="Observer"><file name="Abstract.php" hash="ea1a041de14fc04132545f540afaeda1"/><file name="BackendOrder.php" hash="c3c6a924cea97e4e3a28adbda83ffe78"/></dir><file name="Observer.php" hash="cb2af674850a678fae0b91ef45f621a1"/><dir name="OldPaymentMethods"><file name="OldPaymentMethod.php" hash="7a27b031e5e0192a1486da3b30fa77be"/></dir><dir name="PaymentFee"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><dir name="Fee"><file name="Abstract.php" hash="7a735d2cdd496f1ab39b5e7fa39385eb"/></dir><file name="Fee.php" hash="932fd6e5229ea0e03bfc8c4a3cdb08b6"/><file name="FeeTax.php" hash="de53ceeec529fe83d61a440397e5ae8f"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Fee.php" hash="c3c18aedec2ec4f8626643db53c7ac67"/><file name="FeeTax.php" hash="55260378223e3bb0e6daace9388e2e03"/><file name="Subtotal.php" hash="2e44bed3b438dc0a44a4fc5c9bb8b426"/></dir></dir><dir name="Pdf"><dir name="Total"><file name="Fee.php" hash="2f837fd9e9c55a921fd505e0b6b34d1d"/><file name="Grandtotal.php" hash="f31d624fffaa5b35c81ced7a251c5c97"/><file name="Tax.php" hash="f0d2374a156c19a88b37f9d76ad56c55"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><dir name="Fee"><file name="Abstract.php" hash="4d4a5e078ed2fb568ac28ce736321d59"/></dir><file name="Fee.php" hash="0a7ec955f8bfe4b42c3482b53dfaa98c"/><file name="FeeTax.php" hash="970b285c1df9ad676b426946b3b21603"/></dir></dir></dir><file name="Service.php" hash="38d9ea54efba391312d6f3b28686d9e7"/><dir name="System"><dir name="Config"><dir name="Source"><file name="FeeTaxClass.php" hash="13fd7cb66310ce16d3f073ff39d108de"/></dir></dir></dir></dir><dir name="PaymentMethods"><dir name="Afterpay"><file name="Observer.php" hash="c335ee5ce8b9685125af4b328ed3a352"/><file name="PaymentMethod.php" hash="aff2923d8120048174a160e239ecedb2"/></dir><dir name="Afterpay2"><file name="Observer.php" hash="fc491fd84036c1b971e8b45b64a8703c"/><file name="PaymentMethod.php" hash="5b2dede30a1f0e5030f6d6d3a8a738f0"/></dir><dir name="Amex"><file name="Observer.php" hash="c747d9147e1731a384960385ba9cc400"/><file name="PaymentMethod.php" hash="76aad7b5b1b5eec3565596a46b0bad92"/></dir><dir name="Bancontactmrcash"><file name="Observer.php" hash="a180693e927d0fee20202127c911155e"/><file name="PaymentMethod.php" hash="89556900b8112c809db248c24be23409"/></dir><dir name="Cartebancaire"><file name="Observer.php" hash="7acd1977f6a5485061676b5e5828da69"/><file name="PaymentMethod.php" hash="8133e6b1b3f68e879200e233fbd88b68"/></dir><dir name="Cartebleue"><file name="Observer.php" hash="3c749240c61fced32af6f7ac64f09422"/><file name="PaymentMethod.php" hash="f6174e8aaa6b9425ef56096fe31a2279"/></dir><dir name="Directdebit"><file name="Observer.php" hash="d69fea8936a47b872022f8d983e9be4a"/><file name="PaymentMethod.php" hash="49cd22ff14b88cc95b394288c673e5b9"/></dir><dir name="Empayment"><file name="Observer.php" hash="b50935e06c48f1288250df3a89c1937a"/><file name="PaymentMethod.php" hash="d870c837eff76d921251c1ae77f7da91"/></dir><dir name="Eps"><file name="Observer.php" hash="beab5315b271c662b88de70f4c37e437"/><file name="PaymentMethod.php" hash="9fdaac7fe5d631e7433d96e44b0a352c"/></dir><dir name="Giftcards"><file name="Observer.php" hash="b9a51455a64ddeba6cdc8a1f98baf8e9"/><file name="PaymentMethod.php" hash="c13e50817ea4b175459aa00ef55ceb99"/></dir><dir name="Giropay"><file name="Observer.php" hash="150c3f7e14fa48582e79c4de971d77fc"/><file name="PaymentMethod.php" hash="597f7589be437f9cc5543a492c944fb1"/></dir><dir name="Ideal"><file name="Observer.php" hash="4e8918aa271eafdbd47c587a9b21af8c"/><file name="PaymentMethod.php" hash="887eb231ed601e191a8d96c8e1c6f1ea"/></dir><dir name="Maestro"><file name="Observer.php" hash="b5679881bfd06e5c98e6acac05343382"/><file name="PaymentMethod.php" hash="726ab3653211cde3a67d8814ad7fceb2"/></dir><dir name="Mastercard"><file name="Observer.php" hash="839c559ea4473ecabcf2aba35de909a9"/><file name="PaymentMethod.php" hash="3d84627f57dbe5492e85caf35e4d9834"/></dir><dir name="Masterpass"><file name="Observer.php" hash="52cd83acb0e30ca39d1edb03800da026"/><file name="PaymentMethod.php" hash="352549517053d396ef2e13743970932c"/></dir><dir name="Onlinegiro"><file name="Observer.php" hash="d8a90c5c36a45dc5845f3f38d86015e7"/><file name="PaymentMethod.php" hash="8e90b5a32e15865f89219c6304ac7eda"/></dir><file name="PaymentMethod.php" hash="26999eb53caa477ded3f73a19230e09d"/><dir name="Paymentguarantee"><file name="Observer.php" hash="eff1c02b192d7c1e69cdf819946ec194"/><file name="PaymentMethod.php" hash="c37dceb8dbf9c1a7d83bc1cd6431f1a0"/></dir><dir name="Paypal"><file name="Observer.php" hash="42a860b3cd28d3dae91bf0cdcf6cbf29"/><file name="PaymentMethod.php" hash="4304dd8b85e113512c5c21a5b302ce3e"/></dir><dir name="Payperemail"><file name="Observer.php" hash="d3f2d288610593c5a0a9398e4e96d068"/><file name="PaymentMethod.php" hash="d7bd90a320f0390e20165581c3d9ddfe"/></dir><dir name="Paysafecard"><file name="Observer.php" hash="5954a4b4bf9dd4febd8d84988e7282b9"/><file name="PaymentMethod.php" hash="771fe27ce89c1451bb03d1fb2b3c569e"/></dir><dir name="Sofortueberweisung"><file name="Observer.php" hash="96a4db03f99ed03bfc91ab3b315cc1da"/><file name="PaymentMethod.php" hash="3ce7b2d7c1ea195122174f6b66de7ac8"/></dir><dir name="Transfer"><file name="Observer.php" hash="eea70837020fcc703d2eb383f7926765"/><file name="PaymentMethod.php" hash="34878422839008d966bb7a86dc67477f"/></dir><dir name="Visa"><file name="Observer.php" hash="95e72d2f4950d1a213c56b318c199be6"/><file name="PaymentMethod.php" hash="cc082b4d6adfc96bf9a3c8b10500aea0"/></dir><dir name="Visaelectron"><file name="Observer.php" hash="ca9f4a9b94b2c3bd00733df160c4493e"/><file name="PaymentMethod.php" hash="1c6c4206cd80c4fcd0c02fd510d322f4"/></dir><dir name="Vpay"><file name="Observer.php" hash="61d59a900b732bb15f82dacb9a59407f"/><file name="PaymentMethod.php" hash="318085aa11380ca26d8486d3e40ab49c"/></dir></dir><file name="Process.php" hash="e22b62762fb2cc40e103bbd3e5ccf707"/><dir name="Refund"><file name="Creditmemo.php" hash="169384b6e3569c1291b0a17f141089d6"/><file name="Observer.php" hash="b86430165d17526ac58b2a5a5ff93a7e"/><dir name="Request"><file name="Abstract.php" hash="f61f0ffc429b2f67713525d35b69e3ce"/></dir><dir name="Response"><file name="Abstract.php" hash="50b9c66ec4694d143ae2c9d08fa9e308"/><file name="Push.php" hash="917395f2960a36ce44700a5025e3e1d3"/></dir><dir name="Sources"><file name="StatusesClosedFailed.php" hash="4972f40ca79890943b064dde78ce4dcd"/><file name="StatusesClosedSuccess.php" hash="ee554ae7199ce719ff3752821a3bdd08"/><file name="StatusesCompleteFailed.php" hash="2cdf858b2802f4c7219d47b3ad74f723"/><file name="StatusesCompleteSuccess.php" hash="82e0c3cc3e5464d52382f5d0c283b3fe"/><file name="StatusesProcessingFailed.php" hash="1e312bcc824623a3346bed6f64f1e170"/><file name="StatusesProcessingSuccess.php" hash="4f5fe2bbb1423bf24b595bb76d489cec"/></dir></dir><dir name="Request"><file name="Abstract.php" hash="d83abd0ea0649ca14f2326c4ef75fce7"/><file name="Availability.php" hash="8dd023844d5c27c198a937e5d2e4c6b3"/></dir><dir name="Resource"><dir name="Certificate"><file name="Collection.php" hash="793d24a8b45acfd95a86cb56f10c4af9"/></dir><file name="Certificate.php" hash="2944bbd321d00f4530a2ae9f420db461"/><dir name="Giftcard"><file name="Collection.php" hash="3f001857a1b75f42bcbb9af0e9ba8bae"/></dir><file name="Giftcard.php" hash="ce7fe75cca48d71fa78441fb42eb17ff"/><file name="Setup.php" hash="0a1ef7d53f0a597cddbe1ea136cb1b80"/></dir><dir name="Response"><file name="Abstract.php" hash="6b4be1f32770bdb06a384f916ac27c1a"/><file name="BackendOrder.php" hash="0bb1d6c88aa4a61f682c88f5b05dcd71"/><file name="Push.php" hash="debe799a1f29cc1c149de96171edca7f"/><file name="Return.php" hash="014b7366883c97db925723725ae0e481"/></dir><file name="Soap.php" hash="9a56d584132c26b5b4b1bb950ed52009"/><dir name="Sources"><file name="AcceptgiroDirectdebit.php" hash="a6bb969a2072a3616b3ac1487581702f"/><dir name="Afterpay"><file name="AvailableCurrencies.php" hash="e1a5f71e4c2285e790d0edc88ed729b6"/></dir><dir name="Afterpay2"><file name="AvailableCurrencies.php" hash="e2787840d8ba378df8eba9062c579e4c"/></dir><file name="Allspecificcountries.php" hash="718960abf74dead25882b4c9aed6748b"/><dir name="Amex"><file name="AvailableCurrencies.php" hash="a4ab70448075087d0d09573b76627b8f"/></dir><file name="Availablemethods.php" hash="3990954382e47269fc22fcc2ba9d1db5"/><dir name="Bancontactmrcash"><file name="AvailableCurrencies.php" hash="13182b85cc71aece799bdd83d24f09ac"/></dir><file name="BusinessToBusiness.php" hash="7433dd041e659bef9d589500a21edc7e"/><dir name="Cartebancaire"><file name="AvailableCurrencies.php" hash="1b43becf181eb8be91b97c0b1eedbbee"/></dir><dir name="Cartebleue"><file name="AvailableCurrencies.php" hash="ec38baf0d46f9d2cb33a4aaf282a78d2"/></dir><file name="Certificates.php" hash="4a5ba3edbf7f78e48a02f06dbe646d90"/><file name="CultureType.php" hash="d16db29cf420fa3fd950b9b0e6f589a6"/><dir name="Directdebit"><file name="AvailableCurrencies.php" hash="445f7129e59841c1980a020d3c226677"/></dir><dir name="Empayment"><file name="AvailableCurrencies.php" hash="a311f94ec63c66b6271e474d17b75a1c"/></dir><dir name="Eps"><file name="AvailableCurrencies.php" hash="35a46a119f24f488ee39072de89a5490"/></dir><file name="FeePercentageMode.php" hash="061762cdb412508fb151ca39cbbae5d5"/><dir name="Giftcards"><file name="AvailableCards.php" hash="e7ff41b43fd9735391172a6761ce5beb"/><file name="AvailableCurrencies.php" hash="715babae709c477b511b8d42f2ba7c73"/></dir><dir name="Giropay"><file name="AvailableCurrencies.php" hash="bf9331a3f657c8cd088adc8dbff80dc2"/></dir><dir name="Ideal"><file name="AvailableCurrencies.php" hash="9c69554dda3472f3bdda6d2d56af7736"/><file name="ServiceVersion.php" hash="181e0bc6f5e6e37c4b18cd66e01d9779"/></dir><dir name="Maestro"><file name="AvailableCurrencies.php" hash="df04706dcf5fd123a62a76a0fad52869"/></dir><dir name="Mastercard"><file name="AvailableCurrencies.php" hash="be324daba3c3cacefa355a8b129b5648"/></dir><dir name="Masterpass"><file name="AvailableCurrencies.php" hash="301c10a4586aa1df8bba41b2d1633355"/></dir><dir name="Onlinegiro"><file name="AvailableCurrencies.php" hash="64771602c17f8bb9b68dffcdfe61e95b"/></dir><file name="PaymentMethodArea.php" hash="00b4294cdc79583a718521f14903e5ba"/><dir name="Paymentguarantee"><file name="AvailableCurrencies.php" hash="b826b93f54e5a4ebf579ba3a0dba35bb"/></dir><dir name="Paypal"><file name="AvailableCurrencies.php" hash="1204755d7831b4a342c2b9353367e53a"/></dir><dir name="Payperemail"><file name="AvailableCurrencies.php" hash="f6fb7359b7c5d0bc29cc98c4a1b75df9"/></dir><dir name="Paysafecard"><file name="AvailableCurrencies.php" hash="79a55b66aae407b84b5b76286f6194fe"/></dir><file name="ReminderLevel.php" hash="ad85f70f6bdb7b75a9a60ce71349f8ac"/><dir name="Sofortueberweisung"><file name="AvailableCurrencies.php" hash="34e87e1e8cedaabf931116bb5f68b66b"/></dir><file name="States.php" hash="77145e1431f0377b2c7c6812577aae9f"/><file name="StatusesFailed.php" hash="ca0406c3a0d1964b0e99aac3401d4484"/><file name="StatusesPending.php" hash="af8a6a3b57acea25e924090a37efc765"/><file name="StatusesPendingPayment.php" hash="c708bdeab09d6ed426310fb22c8571aa"/><file name="StatusesSuccess.php" hash="932910d9c8f0ae7debfbdaf72d0fd511"/><file name="TaxClasses.php" hash="b3eac25c3c44b3927f3fd5c42f6a84ab"/><file name="TestLive.php" hash="149c848d8dca11d3687054d5408772af"/><dir name="Transfer"><file name="AvailableCurrencies.php" hash="5da4b5d4e0fb953dad592fd6cd6f9530"/></dir><dir name="Visa"><file name="AvailableCurrencies.php" hash="4cf799f67fca45925bd8916ceda2b26c"/></dir><dir name="Visaelectron"><file name="AvailableCurrencies.php" hash="66a9a1dac82405b75aaf0df07166183f"/></dir><dir name="Vpay"><file name="AvailableCurrencies.php" hash="529b13b0b7032e90269453494d101049"/></dir><file name="Yesno.php" hash="b7fd7889636bccfbc1e6db14e804c221"/></dir></dir><dir name="certificate"><file name="Checkout.pem" hash="441f60bb62fdc14434954514b01d0aa3"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GiftcardController.php" hash="7a117cb306ba0b187a254a01010c6550"/></dir><file name="CheckoutController.php" hash="c285e9d641465c5006c8e83f3ad99171"/><file name="NotifyController.php" hash="13f602d752cb43e2cf2ff7a4b31414b4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3a5da475c9e8eda2d0b40a3085d3f3b3"/><file name="config.xml" hash="5158f8c3b86f143e4a14a43bb4fd7ee5"/><file name="system.xml" hash="fc8a85f25eb497a600bf158f228ea6f1"/></dir><dir name="lib"><file name="Buckaroo.wsdl" hash="4fc7278e90be66fc8101c699f73b6204"/><file name="Import_1.xsd" hash="32c5184fc8f2010a202b2021e1b7fc00"/><file name="Import_10.xsd" hash="a64b4c201518b512fc6bc1ab78f0102f"/><file name="Import_11.xsd" hash="161e2970900419dc387af04e37f3a8ee"/><file name="Import_12.xsd" hash="146273756bb0a9bfd6ea8f5fba22ee9c"/><file name="Import_13.xsd" hash="1727b36ee762f6b1617c49d3e7597f75"/><file name="Import_14.xsd" hash="815f6849ad9b89b0295ffb48082ff619"/><file name="Import_15.xsd" hash="dc6a0cf5ca0cd6a52c2c0e18b7182f5a"/><file name="Import_16.xsd" hash="6511f38274501935bc847881e9fa27ed"/><file name="Import_17.xsd" hash="3ca8df56825b5a88509138faf79de2f8"/><file name="Import_18.xsd" hash="9be4df50a6bdca4bd196f26d2ae4e429"/><file name="Import_19.xsd" hash="9c4cd9b53bdf09b597e420cb58c32a5c"/><file name="Import_2.xsd" hash="bbeaa3381c5b550d2dfad8c049ba68e8"/><file name="Import_20.xsd" hash="cc7fa2b280b8f2d38da43e9fc7b94f86"/><file name="Import_21.xsd" hash="9ca3b39018c8583aa18ca98340288813"/><file name="Import_22.xsd" hash="dedd6c550d812705832feaaef60c721f"/><file name="Import_23.xsd" hash="c7b8bfae66463e58ce68c7f77eec04a4"/><file name="Import_24.xsd" hash="97ff34ab5da093f868dfd6623d934032"/><file name="Import_25.xsd" hash="52024ab7933277cb56aacc558609e67a"/><file name="Import_3.xsd" hash="dead2627684b2cf45f72f5dd9235738d"/><file name="Import_4.xsd" hash="ad27bf7d8bedc5e44f6a9ef862a05cb5"/><file name="Import_5.xsd" hash="a9c07bdedf700b572b89172e71dac0cd"/><file name="Import_6.xsd" hash="a6b2e2ac238b942b075f8cf186a644ed"/><file name="Import_7.xsd" hash="47193b5224627392508a074dd94c912d"/><file name="Import_8.xsd" hash="d167423bf89d1029a58e78ce4a000c0b"/><file name="Import_9.xsd" hash="52518de0039a5167b6d0bf803916c6e2"/></dir><dir name="sql"><dir name="buckaroo3extended_setup"><file name="mysql4-data-upgrade-4.4.2.0-4.5.0.0.php" hash="3f34113aa093ec80a41c67926bdda27b"/><file name="mysql4-data-upgrade-4.6.1-4.7.0.php" hash="e2ffae63c1533bbe6d12e0e0532866dd"/><file name="mysql4-install-0.1.0.php" hash="a2c925736a20cfdc9e6adfdceedfe1ad"/><file name="mysql4-upgrade-0.1.0-2.0.2.php" hash="34983df0c6286b761c2e4be9c6cc7952"/><file name="mysql4-upgrade-2.0.2-4.0.0.php" hash="34983df0c6286b761c2e4be9c6cc7952"/><file name="mysql4-upgrade-4.0.3-4.1.0.php" hash="72423e33d33affb242114b19dda7e68b"/><file name="mysql4-upgrade-4.3.1-4.3.2.php" hash="aa198667eae0c5ba1cb105dcee146864"/><file name="mysql4-upgrade-4.3.3.0-4.4.0.0.php" hash="3f27e188751bcd62c624192a8658c2e8"/><file name="mysql4-upgrade-4.4.0.0-4.4.1.0.php" hash="9353901c8546ed0bd126ee14be081ec6"/><file name="mysql4-upgrade-4.6.1-4.7.0.php" hash="9cfe09a4b22a88390182dd1851d110be"/></dir></dir><file name=".DS_Store" hash="4cd2cd395d6b8853877d77c9f5f4381f"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TIG_Buckaroo3Extended.xml" hash="6a23faf30df008518782b2d2a828c8a4"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="TIG"><file name="buckaroo3extended.xml" hash="0182e265f42911a3c734be4ec8091c94"/></dir></dir><dir name="template"><dir name="buckaroo3extended"><dir name="directdebit"><file name="info.phtml" hash="d1ba310ae081037271ee78d696db690f"/></dir><dir name="onlinegiro"><dir name="checkout"><file name="form.phtml" hash="997a24214a955aea9b2b19e18c8cb658"/></dir></dir><dir name="payperemail"><dir name="checkout"><file name="form.phtml" hash="5bc3425008dcb754c5b9fa544d88ceac"/></dir></dir><dir name="refund"><dir name="system"><dir name="config"><file name="noOptionsAvailable.phtml" hash="38c734121ab4b8554347c1569e0aae01"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="create"><file name="js.phtml" hash="3edec4e9d05ac156c3cc3314ceada764"/><dir name="totals"><file name="fee.phtml" hash="9864e20a538296885ae34f772708a90f"/></dir></dir><dir name="creditmemo"><dir name="create"><file name="refund_fields.phtml" hash="b09f36c5c42ebe040a15503b44b03e50"/><dir name="totals"><file name="fee.phtml" hash="6292242b0ff50c1187b2829da815e601"/></dir></dir></dir><dir name="totals"><file name="tax.phtml" hash="4bf6a29c289e42375e3bca41f6495bd9"/></dir></dir></dir><dir name="system"><dir name="config"><file name="hint.phtml" hash="7c107d72d94338010dcfa3e4425f968e"/><file name="klarnaCheck.phtml" hash="69395e036253f21fbb9f3cc6a494930b"/><file name="paymentmethodbanner.phtml" hash="d4d30e0fabe6484e4c2181fa1074ce12"/><file name="paypalRegionCheck.phtml" hash="f0638223fc0fbdc4fb6b25e03c4258f1"/><file name="singlehint.phtml" hash="f4d4e28c7899e15b6692dcceb975ad77"/><file name="supportTab.phtml" hash="007d58dee82e88536f5f11f63c81eb3a"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="TIG"><file name="buckaroo3extended.xml" hash="21bd91c1ec958f1f04e886e42fd51718"/></dir></dir><dir name="template"><dir name="buckaroo3extended"><dir name="afterpay"><dir name="checkout"><file name="form.phtml" hash="184bb82bb0413b53ec851ea76aeb4141"/></dir></dir><dir name="afterpay2"><dir name="checkout"><file name="form.phtml" hash="184bb82bb0413b53ec851ea76aeb4141"/></dir></dir><dir name="amex"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="bancontactmrcash"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="cartebancaire"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="cartebleue"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="checkout"><dir name="total"><file name="buckaroo_fee.phtml" hash="070cdb545d718c890f1b372246a26143"/></dir></dir><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="fe142f7345e1908b8354d20f69023269"/></dir></dir><dir name="directdebit"><dir name="checkout"><file name="form.phtml" hash="8a3809bbc3d5e14d000a0a89206b1f0b"/></dir><file name="info.phtml" hash="f494d2b2d8f27df3a40548b8a5e38a99"/></dir><dir name="empayment"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="eps"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><dir name="giftcards"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="giropay"><dir name="checkout"><file name="form.phtml" hash="1d5f7d7fb64e7adcbcd980daff0dbf5d"/></dir></dir><dir name="ideal"><dir name="checkout"><file name="form.phtml" hash="034bcfb4d88904615679d8dcbc4021e6"/></dir></dir><file name="jquery.phtml" hash="7c274dd682ae4273e7a85a477d7125ae"/><dir name="maestro"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="mastercard"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><file name="oneStepCheckout.phtml" hash="bc07be11bfe81f21a38eb332362932e6"/><dir name="onlinegiro"><dir name="checkout"><file name="form.phtml" hash="8b895e7f56531e3beab809270ae1a175"/></dir></dir><dir name="paymentFee"><dir name="checkout"><file name="fee.phtml" hash="80cfb59b392afa5bdb7d012c4782e8fa"/></dir></dir><dir name="paymentguarantee"><dir name="checkout"><file name="form.phtml" hash="50248bddb9fe74eecfd8fd1e9286bacb"/></dir><file name="termsAndConditions.phtml" hash="6f1fd609fc1baf3a541707f6fbe129f7"/></dir><dir name="paypal"><dir name="checkout"><file name="form.phtml" hash="8ef01960e1c13cb9f249299fca967263"/></dir></dir><dir name="payperemail"><dir name="checkout"><file name="form.phtml" hash="405369f9e2ceec15b76970b9f9ed8dfd"/></dir></dir><dir name="paysafecard"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><file name="saveData.phtml" hash="523e37b63f6a90ac00307551d7bcf3e4"/><dir name="sofortueberweisung"><dir name="checkout"><file name="form.phtml" hash="77e7d2894364dbf959c50480b8242ac9"/></dir></dir><dir name="transfer"><dir name="checkout"><file name="form.phtml" hash="f88cbbb4f63010bd554c3dd5fb974b36"/></dir></dir><dir name="visa"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="visaelectron"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir><dir name="vpay"><dir name="checkout"><file name="form.phtml" hash="8de16790a79cd0f57aaa1e281915faa4"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="tig_buckaroo3extended"><file name="supportTab.css" hash="697af7a62a046a2ed7fe0c0df309470a"/><file name="system_config_edit.css" hash="0bb88faa152728f3b84c57ba062da4bb"/></dir></dir><dir name="images"><dir name="tig_buckaroo3extended"><file name="buckaroo_large.png" hash="72ddf928560ce583ed36fafb7ccca4d5"/><file name="buckaroo_logo_medium.gif" hash="a7e5eb51b749720f6fc31d3a4234072e"/><file name="buckaroo_small.png" hash="af486c1bda7ed73a3ab756801aa4973d"/><file name="glyph_error.gif" hash="a138b803d772f552aa2e49e1c506edbd"/><file name="glyph_info.gif" hash="40f72d28be63ecf2b6ef44c7ea730104"/><file name="glyph_manual.png" hash="771db63b6ffc9de1c06da564796adc6e"/><file name="glyph_pdf.png" hash="a5ea929f4014a88d7320d0293913ace3"/><file name="glyph_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="glyph_warning.gif" hash="fa817cb6d49efb9855942ef2b739fc6c"/><file name="legend.gif" hash="d8fb0642901868d489d31b426f3e3406"/></dir></dir><dir name="js"><dir name="tig_buckaroo3extended"><file name="jquery-1.4.4.min.js" hash="73a9c334c5ca71d70d092b42064f6476"/></dir><dir name="TIG"><dir name="Buckaroo3Extended"><file name="klarnaCheck.js" hash="4aa9345dc7937b177a0de82e09692c27"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="30d7388a4cbc8b37bd6aef80d6eaddac"/><file name="styles_osc.css" hash="4e8f3a8c6358590a302e4f3c8c19cdef"/></dir></dir></dir><dir name="images"><dir name="tig_buckaroo3extended"><file name="ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="icon_asn.gif" hash="0fbd9493e65ab774cc6859da47c3c8cc"/><file name="logo_abn_s.gif" hash="eb6d7cd949e6fbf671c43cb83c7c3e17"/><file name="logo_fortis_s.gif" hash="7f1ad68de127101a83e02c2e5af01fa7"/><file name="logo_friesland_s.gif" hash="d9955dc120b7d4216d9bd19b6d8621c0"/><file name="logo_ing_s.gif" hash="e56fa35285496c73565bfdf82d6967fa"/><file name="logo_knab_s.gif" hash="146e995dbede4e2798c278d6da26b9d2"/><file name="logo_lanschot_s.gif" hash="f68ceb355661c41779d716a6ef8dfdf3"/><file name="logo_rabo_s.gif" hash="8df417edaf2410ff574d9d1ed453c0bc"/><file name="logo_sns_s.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="logo_triodos.gif" hash="f3dd4d744232ddf4c1700068a6b3a531"/></dir></dir><dir name="js"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="jQuery-1.4.4.min.js" hash="5450efeb34b29f09b681e70d41649a54"/><file name="oneStepCheckout.js" hash="2a5bdfb79b02a77a9476a8f90ae9f7e6"/><file name="paymentGuaranteeTermsAndConditions.js" hash="04ace8a551d70f8fbf005bb1123f7fa4"/><file name="saveData.js" hash="a4d062d5ae0e72f9f3cd44d0112182f7"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="nl_NL"><file name="TIG_Buckaroo3Extended.csv" hash="ace6b24136168901d8e0dcd93a6ac157"/></dir><dir name="en_US"><file name="TIG_Buckaroo3Extended.csv" hash="1238d1d0c4a8e8a8468dfc1d36549c56"/></dir></target></contents>
|
| 77 |
<compatible/>
|
| 78 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 79 |
</package>
|
|
@@ -11,8 +11,11 @@
|
|
| 11 |
#buckaroo_buckaroo3extended_support a.pdf { display:inline-block; height:16px; line-height:16px; padding:0 0 0 21px; background:url(../../images/tig_buckaroo3extended/glyph_pdf.png) no-repeat; }
|
| 12 |
#buckaroo_buckaroo3extended_support .text-box { background:#fff; padding:9px 16px; margin:6px 0 10px; border:1px solid #ccc; }
|
| 13 |
#buckaroo_buckaroo3extended_support table.contact { margin:0 0 25px -1px; }
|
| 14 |
-
#buckaroo_buckaroo3extended_support table.contact td { padding:
|
| 15 |
-
#buckaroo_buckaroo3extended_support table.contact td.first { width:
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
/* Legend */
|
| 18 |
#buckaroo_buckaroo3extended_support #legend li { background:url(../../images/tig_buckaroo3extended/legend.gif) 0 0 no-repeat; padding-left:14px; }
|
|
@@ -38,8 +41,8 @@
|
|
| 38 |
|
| 39 |
/* Messages */
|
| 40 |
.module-message { padding:9px 9px 9px 30px; margin-bottom:20px; border:1px solid #ccc; }
|
| 41 |
-
.module-message.success { background:#fff url(../../images/tig_buckaroo3extended/glyph_success.gif) 9px 9px no-repeat; }
|
| 42 |
-
.module-message.info { background:#fff url(../../images/tig_buckaroo3extended/glyph_info.gif) 9px 9px no-repeat; }
|
| 43 |
.module-message.warning { background:#fff url(../../images/tig_buckaroo3extended/glyph_warning.gif) 9px 9px no-repeat; }
|
| 44 |
-
.module-message.error { background:#fff url(../../images/tig_buckaroo3extended/glyph_error.gif) 9px 9px no-repeat; }
|
| 45 |
.module-message.buckaroo { margin-bottom:20px; }
|
| 11 |
#buckaroo_buckaroo3extended_support a.pdf { display:inline-block; height:16px; line-height:16px; padding:0 0 0 21px; background:url(../../images/tig_buckaroo3extended/glyph_pdf.png) no-repeat; }
|
| 12 |
#buckaroo_buckaroo3extended_support .text-box { background:#fff; padding:9px 16px; margin:6px 0 10px; border:1px solid #ccc; }
|
| 13 |
#buckaroo_buckaroo3extended_support table.contact { margin:0 0 25px -1px; }
|
| 14 |
+
#buckaroo_buckaroo3extended_support table.contact td { padding-right:20px; }
|
| 15 |
+
#buckaroo_buckaroo3extended_support table.contact td.first { width:200px; padding-right:5px; }
|
| 16 |
+
#buckaroo_buckaroo3extended_support table.contact td.tig_logo { width:50px; padding-right:5px; padding-top:6px; }
|
| 17 |
+
#buckaroo_buckaroo3extended_support table.contact td.buckaroo_logo { padding-top:6px; }
|
| 18 |
+
#buckaroo_buckaroo3extended_support table.contact td.buckaroo_logo a img { width:100px; }
|
| 19 |
|
| 20 |
/* Legend */
|
| 21 |
#buckaroo_buckaroo3extended_support #legend li { background:url(../../images/tig_buckaroo3extended/legend.gif) 0 0 no-repeat; padding-left:14px; }
|
| 41 |
|
| 42 |
/* Messages */
|
| 43 |
.module-message { padding:9px 9px 9px 30px; margin-bottom:20px; border:1px solid #ccc; }
|
| 44 |
+
.module-message.success { background:#fff url(../../images/tig_buckaroo3extended/glyph_success.gif) 9px 9px no-repeat; }
|
| 45 |
+
.module-message.info { background:#fff url(../../images/tig_buckaroo3extended/glyph_info.gif) 9px 9px no-repeat; }
|
| 46 |
.module-message.warning { background:#fff url(../../images/tig_buckaroo3extended/glyph_warning.gif) 9px 9px no-repeat; }
|
| 47 |
+
.module-message.error { background:#fff url(../../images/tig_buckaroo3extended/glyph_error.gif) 9px 9px no-repeat; }
|
| 48 |
.module-message.buckaroo { margin-bottom:20px; }
|
|
Binary file
|
|
@@ -6,260 +6,260 @@ oldDay = '';
|
|
| 6 |
oldMonth = '';
|
| 7 |
oldYear = '';
|
| 8 |
oldPhone = '';
|
| 9 |
-
originalAddress =
|
| 10 |
changedAddress = false;
|
| 11 |
-
|
| 12 |
function() {
|
| 13 |
-
firstname =
|
| 14 |
-
|
| 15 |
if (
|
| 16 |
-
!
|
| 17 |
-
||
|
| 18 |
|| changedAddress
|
| 19 |
) {
|
| 20 |
-
|
| 21 |
-
sendData(
|
| 22 |
}
|
| 23 |
-
|
| 24 |
if (
|
| 25 |
-
!
|
| 26 |
-
||
|
| 27 |
|| changedAddress
|
| 28 |
) {
|
| 29 |
-
|
| 30 |
-
sendData(
|
| 31 |
}
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
firstname + ' ' +
|
| 35 |
);
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
firstname + ' ' +
|
| 39 |
);
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
firstname + ' ' +
|
| 43 |
);
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
firstname + ' ' +
|
| 47 |
);
|
| 48 |
-
|
| 49 |
oldFirstname = firstname;
|
| 50 |
}
|
| 51 |
);
|
| 52 |
-
|
| 53 |
function() {
|
| 54 |
-
lastname =
|
| 55 |
-
|
| 56 |
if (
|
| 57 |
-
!
|
| 58 |
-
||
|
| 59 |
|| changedAddress
|
| 60 |
) {
|
| 61 |
-
|
| 62 |
-
sendData(
|
| 63 |
}
|
| 64 |
-
|
| 65 |
if (
|
| 66 |
-
!
|
| 67 |
-
||
|
| 68 |
|| changedAddress
|
| 69 |
) {
|
| 70 |
-
|
| 71 |
-
sendData(
|
| 72 |
}
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
);
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
);
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
);
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
);
|
| 89 |
-
|
| 90 |
oldLastname = lastname;
|
| 91 |
}
|
| 92 |
);
|
| 93 |
-
|
| 94 |
function() {
|
| 95 |
-
email =
|
| 96 |
-
|
| 97 |
if (
|
| 98 |
-
!
|
| 99 |
-
||
|
| 100 |
|| changedAddress
|
| 101 |
) {
|
| 102 |
-
|
| 103 |
-
sendData(
|
| 104 |
}
|
| 105 |
-
|
| 106 |
if (
|
| 107 |
-
!
|
| 108 |
-
||
|
| 109 |
|| changedAddress
|
| 110 |
) {
|
| 111 |
-
|
| 112 |
-
sendData(
|
| 113 |
}
|
| 114 |
-
|
| 115 |
if (
|
| 116 |
-
!
|
| 117 |
-
||
|
| 118 |
|| changedAddress
|
| 119 |
) {
|
| 120 |
-
|
| 121 |
-
sendData(
|
| 122 |
}
|
| 123 |
-
|
| 124 |
oldEmail = email;
|
| 125 |
}
|
| 126 |
);
|
| 127 |
-
|
| 128 |
function() {
|
| 129 |
-
phone =
|
| 130 |
-
|
| 131 |
if (
|
| 132 |
-
!
|
| 133 |
-
||
|
| 134 |
|| changedAddress
|
| 135 |
) {
|
| 136 |
-
|
| 137 |
-
sendData(
|
| 138 |
}
|
| 139 |
-
|
| 140 |
oldPhone = phone;
|
| 141 |
}
|
| 142 |
);
|
| 143 |
-
|
| 144 |
function() {
|
| 145 |
-
gender =
|
| 146 |
-
|
| 147 |
if (
|
| 148 |
-
!
|
| 149 |
-
||
|
| 150 |
|| changedAddress
|
| 151 |
) {
|
| 152 |
-
|
| 153 |
}
|
| 154 |
-
|
| 155 |
if (
|
| 156 |
-
!
|
| 157 |
-
||
|
| 158 |
|| changedAddress
|
| 159 |
) {
|
| 160 |
-
|
| 161 |
}
|
| 162 |
-
|
| 163 |
if (
|
| 164 |
-
!
|
| 165 |
-
||
|
| 166 |
|| changedAddress
|
| 167 |
) {
|
| 168 |
-
|
| 169 |
}
|
| 170 |
-
|
| 171 |
if (
|
| 172 |
-
!
|
| 173 |
-
||
|
| 174 |
|| changedAddress
|
| 175 |
) {
|
| 176 |
-
|
| 177 |
}
|
| 178 |
-
|
| 179 |
oldGender = gender;
|
| 180 |
}
|
| 181 |
);
|
| 182 |
-
|
| 183 |
function() {
|
| 184 |
-
day =
|
| 185 |
-
|
| 186 |
if (
|
| 187 |
-
!
|
| 188 |
-
||
|
| 189 |
|| changedAddress
|
| 190 |
) {
|
| 191 |
-
|
| 192 |
-
sendData(
|
| 193 |
}
|
| 194 |
-
|
| 195 |
if (
|
| 196 |
-
!
|
| 197 |
-
||
|
| 198 |
|| changedAddress
|
| 199 |
) {
|
| 200 |
-
|
| 201 |
-
sendData(
|
| 202 |
}
|
| 203 |
-
|
| 204 |
oldDay = day;
|
| 205 |
}
|
| 206 |
);
|
| 207 |
-
|
| 208 |
function() {
|
| 209 |
-
month =
|
| 210 |
-
|
| 211 |
if (
|
| 212 |
-
!
|
| 213 |
-
||
|
| 214 |
|| changedAddress
|
| 215 |
) {
|
| 216 |
-
|
| 217 |
-
sendData(
|
| 218 |
}
|
| 219 |
-
|
| 220 |
if (
|
| 221 |
-
!
|
| 222 |
-
||
|
| 223 |
|| changedAddress
|
| 224 |
) {
|
| 225 |
-
|
| 226 |
-
sendData(
|
| 227 |
}
|
| 228 |
-
|
| 229 |
oldMonth = month;
|
| 230 |
}
|
| 231 |
);
|
| 232 |
-
|
| 233 |
function() {
|
| 234 |
-
year =
|
| 235 |
-
|
| 236 |
if (
|
| 237 |
-
!
|
| 238 |
-
||
|
| 239 |
|| changedAddress
|
| 240 |
) {
|
| 241 |
-
|
| 242 |
-
sendData(
|
| 243 |
}
|
| 244 |
-
|
| 245 |
if (
|
| 246 |
-
!
|
| 247 |
-
||
|
| 248 |
|| changedAddress
|
| 249 |
) {
|
| 250 |
-
|
| 251 |
-
sendData(
|
| 252 |
}
|
| 253 |
-
|
| 254 |
oldYear = year;
|
| 255 |
}
|
| 256 |
);
|
| 257 |
|
| 258 |
-
|
| 259 |
function() {
|
| 260 |
-
if (!
|
| 261 |
changedAddress = true;
|
| 262 |
-
} else if (
|
| 263 |
changedAddress = false;
|
| 264 |
}
|
| 265 |
}
|
| 6 |
oldMonth = '';
|
| 7 |
oldYear = '';
|
| 8 |
oldPhone = '';
|
| 9 |
+
originalAddress = jQuery_144('#billing-address-select option:selected').val();
|
| 10 |
changedAddress = false;
|
| 11 |
+
jQuery_144("#billing\\:firstname").change(
|
| 12 |
function() {
|
| 13 |
+
firstname = jQuery_144(this).val();
|
| 14 |
+
|
| 15 |
if (
|
| 16 |
+
!jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerfirstname').val()
|
| 17 |
+
|| jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerfirstname').val() == oldFirstname
|
| 18 |
|| changedAddress
|
| 19 |
) {
|
| 20 |
+
jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerfirstname').val(firstname);
|
| 21 |
+
sendData(jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerfirstname'));
|
| 22 |
}
|
| 23 |
+
|
| 24 |
if (
|
| 25 |
+
!jQuery_144('#buckaroo3extended_payperemail_BPE_Customerfirstname').val()
|
| 26 |
+
|| jQuery_144('#buckaroo3extended_payperemail_BPE_Customerfirstname').val() == oldFirstname
|
| 27 |
|| changedAddress
|
| 28 |
) {
|
| 29 |
+
jQuery_144('#buckaroo3extended_payperemail_BPE_Customerfirstname').val(firstname);
|
| 30 |
+
sendData(jQuery_144('#buckaroo3extended_payperemail_BPE_Customerfirstname'));
|
| 31 |
}
|
| 32 |
+
|
| 33 |
+
jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customername').html(
|
| 34 |
+
firstname + ' ' + jQuery_144("#billing\\:lastname").val()
|
| 35 |
);
|
| 36 |
+
|
| 37 |
+
jQuery_144('#buckaroo3extended_transfer_BPE_Customername').html(
|
| 38 |
+
firstname + ' ' + jQuery_144("#billing\\:lastname").val()
|
| 39 |
);
|
| 40 |
+
|
| 41 |
+
jQuery_144('#buckaroo3extended_directdebit_account_owner').val(
|
| 42 |
+
firstname + ' ' + jQuery_144("#billing\\:lastname").val()
|
| 43 |
);
|
| 44 |
+
|
| 45 |
+
jQuery_144('#buckaroo3extended_empayment_BPE_Accountholder').val(
|
| 46 |
+
firstname + ' ' + jQuery_144("#billing\\:lastname").val()
|
| 47 |
);
|
| 48 |
+
|
| 49 |
oldFirstname = firstname;
|
| 50 |
}
|
| 51 |
);
|
| 52 |
+
jQuery_144("#billing\\:lastname").change(
|
| 53 |
function() {
|
| 54 |
+
lastname = jQuery_144(this).val();
|
| 55 |
+
|
| 56 |
if (
|
| 57 |
+
!jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerlastname').val()
|
| 58 |
+
|| jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerlastname').val() == oldLastname
|
| 59 |
|| changedAddress
|
| 60 |
) {
|
| 61 |
+
jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerlastname').val(lastname);
|
| 62 |
+
sendData(jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customerlastname'));
|
| 63 |
}
|
| 64 |
+
|
| 65 |
if (
|
| 66 |
+
!jQuery_144('#buckaroo3extended_payperemail_BPE_Customerlastname').val()
|
| 67 |
+
|| jQuery_144('#buckaroo3extended_payperemail_BPE_Customerlastname').val() == oldLastname
|
| 68 |
|| changedAddress
|
| 69 |
) {
|
| 70 |
+
jQuery_144('#buckaroo3extended_payperemail_BPE_Customerlastname').val(lastname);
|
| 71 |
+
sendData(jQuery_144('#buckaroo3extended_payperemail_BPE_Customerlastname'));
|
| 72 |
}
|
| 73 |
+
|
| 74 |
+
jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customername').html(
|
| 75 |
+
jQuery_144("#billing\\:firstname").val() + ' ' + lastname
|
| 76 |
);
|
| 77 |
+
|
| 78 |
+
jQuery_144('#buckaroo3extended_transfer_BPE_Customername').html(
|
| 79 |
+
jQuery_144("#billing\\:firstname").val() + ' ' + lastname
|
| 80 |
);
|
| 81 |
+
|
| 82 |
+
jQuery_144('#buckaroo3extended_directdebit_account_owner').val(
|
| 83 |
+
jQuery_144("#billing\\:firstname").val() + ' ' + lastname
|
| 84 |
);
|
| 85 |
+
|
| 86 |
+
jQuery_144('#buckaroo3extended_empayment_BPE_Accountholder').val(
|
| 87 |
+
jQuery_144("#billing\\:firstname").val() + ' ' + lastname
|
| 88 |
);
|
| 89 |
+
|
| 90 |
oldLastname = lastname;
|
| 91 |
}
|
| 92 |
);
|
| 93 |
+
jQuery_144("#billing\\:email").change(
|
| 94 |
function() {
|
| 95 |
+
email = jQuery_144(this).val();
|
| 96 |
+
|
| 97 |
if (
|
| 98 |
+
!jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customermail').val()
|
| 99 |
+
|| jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customermail').val() == oldEmail
|
| 100 |
|| changedAddress
|
| 101 |
) {
|
| 102 |
+
jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customermail').val(email);
|
| 103 |
+
sendData(jQuery_144('#buckaroo3extended_onlinegiro_BPE_Customermail'));
|
| 104 |
}
|
| 105 |
+
|
| 106 |
if (
|
| 107 |
+
!jQuery_144('#buckaroo3extended_transfer_BPE_Customermail').val()
|
| 108 |
+
|| jQuery_144('#buckaroo3extended_transfer_BPE_Customermail').val() == oldEmail
|
| 109 |
|| changedAddress
|
| 110 |
) {
|
| 111 |
+
jQuery_144('#buckaroo3extended_transfer_BPE_Customermail').val(email);
|
| 112 |
+
sendData(jQuery_144('#buckaroo3extended_transfer_BPE_Customermail'));
|
| 113 |
}
|
| 114 |
+
|
| 115 |
if (
|
| 116 |
+
!jQuery_144('#buckaroo3extended_payperemail_BPE_Customermail').val()
|
| 117 |
+
|| jQuery_144('#buckaroo3extended_payperemail_BPE_Customermail').val() == oldEmail
|
| 118 |
|| changedAddress
|
| 119 |
) {
|
| 120 |
+
jQuery_144('#buckaroo3extended_payperemail_BPE_Customermail').val(email);
|
| 121 |
+
sendData(jQuery_144('#buckaroo3extended_payperemail_BPE_Customermail'));
|
| 122 |
}
|
| 123 |
+
|
| 124 |
oldEmail = email;
|
| 125 |
}
|
| 126 |
);
|
| 127 |
+
jQuery_144("#billing\\:telephone").change(
|
| 128 |
function() {
|
| 129 |
+
phone = jQuery_144(this).val();
|
| 130 |
+
|
| 131 |
if (
|
| 132 |
+
!jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customerphone').val()
|
| 133 |
+
|| jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customerphone').val() == oldPhone
|
| 134 |
|| changedAddress
|
| 135 |
) {
|
| 136 |
+
jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customerphone').val(phone);
|
| 137 |
+
sendData(jQuery_144('#buckaroo3extended_paymentguarantee_BPE_Customerphone'));
|
| 138 |
}
|
| 139 |
+
|
| 140 |
oldPhone = phone;
|
| 141 |
}
|
| 142 |
);
|
| 143 |
+
jQuery_144("#billing\\:gender").change(
|
| 144 |
function() {
|
| 145 |
+
gender = jQuery_144("#billing\\:gender option:selected").val();
|
| 146 |
+
|
| 147 |
if (
|
| 148 |
+
!jQuery_144("#buckaroo3extended_paymentguarantee_BPE_Customergender option:selected").val()
|
| 149 |
+
|| jQuery_144("#buckaroo3extended_paymentguarantee_BPE_Customergender option:selected").val() == oldGender
|
| 150 |
|| changedAddress
|
| 151 |
) {
|
| 152 |
+
jQuery_144("#buckaroo3extended_paymentguarantee_BPE_Customergender option[value='" + gender + "']").attr('selected', 'selected');
|
| 153 |
}
|
| 154 |
+
|
| 155 |
if (
|
| 156 |
+
!jQuery_144("#buckaroo3extended_onlinegiro_BPE_Customergender option:selected").val()
|
| 157 |
+
|| jQuery_144("#buckaroo3extended_onlinegiro_BPE_Customergender option:selected").val() == oldGender
|
| 158 |
|| changedAddress
|
| 159 |
) {
|
| 160 |
+
jQuery_144("#buckaroo3extended_onlinegiro_BPE_Customergender option[value='" + gender + "']").attr('selected', 'selected');
|
| 161 |
}
|
| 162 |
+
|
| 163 |
if (
|
| 164 |
+
!jQuery_144("#buckaroo3extended_transfer_BPE_Customergender option:selected").val()
|
| 165 |
+
|| jQuery_144("#buckaroo3extended_transfer_BPE_Customergender option:selected").val() == oldGender
|
| 166 |
|| changedAddress
|
| 167 |
) {
|
| 168 |
+
jQuery_144("#buckaroo3extended_transfer_BPE_Customergender option[value='" + gender + "']").attr('selected', 'selected');
|
| 169 |
}
|
| 170 |
+
|
| 171 |
if (
|
| 172 |
+
!jQuery_144("#buckaroo3extended_payperemail_BPE_Customergender option:selected").val()
|
| 173 |
+
|| jQuery_144("#buckaroo3extended_payperemail_BPE_Customergender option:selected").val() == oldGender
|
| 174 |
|| changedAddress
|
| 175 |
) {
|
| 176 |
+
jQuery_144("#buckaroo3extended_payperemail_BPE_Customergender option[value='" + gender + "']").attr('selected', 'selected');
|
| 177 |
}
|
| 178 |
+
|
| 179 |
oldGender = gender;
|
| 180 |
}
|
| 181 |
);
|
| 182 |
+
jQuery_144("#billing\\:day").change(
|
| 183 |
function() {
|
| 184 |
+
day = jQuery_144(this).val();
|
| 185 |
+
|
| 186 |
if (
|
| 187 |
+
!jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:day").val()
|
| 188 |
+
|| jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:day").val() == oldDay
|
| 189 |
|| changedAddress
|
| 190 |
) {
|
| 191 |
+
jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:day").val(day);
|
| 192 |
+
sendData(jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:day"));
|
| 193 |
}
|
| 194 |
+
|
| 195 |
if (
|
| 196 |
+
!jQuery_144('#overschrijving\\:payment\\:day').val()
|
| 197 |
+
|| jQuery_144('#overschrijving\\:payment\\:day').val() == oldDay
|
| 198 |
|| changedAddress
|
| 199 |
) {
|
| 200 |
+
jQuery_144('#overschrijving\\:payment\\:day').val(day);
|
| 201 |
+
sendData(jQuery_144('#overschrijving\\:payment\\:day'));
|
| 202 |
}
|
| 203 |
+
|
| 204 |
oldDay = day;
|
| 205 |
}
|
| 206 |
);
|
| 207 |
+
jQuery_144("#billing\\:month").change(
|
| 208 |
function() {
|
| 209 |
+
month = jQuery_144(this).val();
|
| 210 |
+
|
| 211 |
if (
|
| 212 |
+
!jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:month").val()
|
| 213 |
+
|| jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:month").val() == oldMonth
|
| 214 |
|| changedAddress
|
| 215 |
) {
|
| 216 |
+
jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:month").val(month);
|
| 217 |
+
sendData(jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:month"));
|
| 218 |
}
|
| 219 |
+
|
| 220 |
if (
|
| 221 |
+
!jQuery_144('#overschrijving\\:payment\\:month').val()
|
| 222 |
+
|| jQuery_144('#overschrijving\\:payment\\:month').val() == oldMonth
|
| 223 |
|| changedAddress
|
| 224 |
) {
|
| 225 |
+
jQuery_144('#overschrijving\\:payment\\:month').val(month);
|
| 226 |
+
sendData(jQuery_144('#overschrijving\\:payment\\:month'));
|
| 227 |
}
|
| 228 |
+
|
| 229 |
oldMonth = month;
|
| 230 |
}
|
| 231 |
);
|
| 232 |
+
jQuery_144("#billing\\:year").change(
|
| 233 |
function() {
|
| 234 |
+
year = jQuery_144(this).val();
|
| 235 |
+
|
| 236 |
if (
|
| 237 |
+
!jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:year").val()
|
| 238 |
+
|| jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:year").val() == oldYear
|
| 239 |
|| changedAddress
|
| 240 |
) {
|
| 241 |
+
jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:year").val(year);
|
| 242 |
+
sendData(jQuery_144("#container_payment_method_buckaroo3extended_paymentguarantee #payment\\:year"));
|
| 243 |
}
|
| 244 |
+
|
| 245 |
if (
|
| 246 |
+
!jQuery_144('#overschrijving\\:payment\\:year').val()
|
| 247 |
+
|| jQuery_144('#overschrijving\\:payment\\:year').val() == oldYear
|
| 248 |
|| changedAddress
|
| 249 |
) {
|
| 250 |
+
jQuery_144('#overschrijving\\:payment\\:year').val(year);
|
| 251 |
+
sendData(jQuery_144('#overschrijving\\:payment\\:year'));
|
| 252 |
}
|
| 253 |
+
|
| 254 |
oldYear = year;
|
| 255 |
}
|
| 256 |
);
|
| 257 |
|
| 258 |
+
jQuery_144('#billing-address-select').change(
|
| 259 |
function() {
|
| 260 |
+
if (!jQuery_144('#billing-address-select option:selected').val()) {
|
| 261 |
changedAddress = true;
|
| 262 |
+
} else if (jQuery_144('#billing-address-select option:selected').val() == originalAddress) {
|
| 263 |
changedAddress = false;
|
| 264 |
}
|
| 265 |
}
|
|
@@ -1,9 +1,9 @@
|
|
| 1 |
-
|
| 2 |
-
sendData(
|
| 3 |
}
|
| 4 |
);
|
| 5 |
|
| 6 |
-
|
| 7 |
-
sendData(
|
| 8 |
}
|
| 9 |
);
|
| 1 |
+
jQuery_144('.buckaroo3extended_input').find('input,select').live('change', function() {
|
| 2 |
+
sendData(jQuery_144(this));
|
| 3 |
}
|
| 4 |
);
|
| 5 |
|
| 6 |
+
jQuery_144('#buckaroo3extended_directdebit_account_owner, #buckaroo3extended_directdebit_account_number').live('change', function() {
|
| 7 |
+
sendData(jQuery_144(this));
|
| 8 |
}
|
| 9 |
);
|
