Pay_NL - Version 3.7.1

Version Notes

* Rewrote the vat calculation of the payment fees, the vat on the fee should now be correct for all vat settings.
* Added testmode, so you can send all transactions in testmode.
* fixed an exception when instore was enabled but no terminals are assigned to the merchant
* fixed notices if birthdate is empty or an address is not set
* Sending invoice emails is now configurable per paymentmethod
* added field to the order and invoice with the vat of the payment fee
* images of banks were missing

Download this release

Release Info

Developer Andy Pieters
Extension Pay_NL
Version 3.7.1
Comparing to
See all releases


Code changes from version 3.7.0 to 3.7.1

app/code/community/Pay/Payment/Block/Adminhtml/Sales/Order/Creditmemo/Totals.php CHANGED
@@ -6,7 +6,7 @@
6
  * @category Pay
7
  * @package Pay_Payment
8
  */
9
- class Pay_Payment_Block_Adminhtml_Sales_order_Creditmemo_Totals extends Pay_Payment_Block_Adminhtml_Sales_Totals
10
  {
11
  protected $_creditmemo;
12
 
@@ -37,18 +37,28 @@ class Pay_Payment_Block_Adminhtml_Sales_order_Creditmemo_Totals extends Pay_Paym
37
  protected function _initTotals()
38
  {
39
  parent::_initTotals();
40
- $this->addTotal(new Varien_Object(array(
41
- 'code' => 'adjustment_positive',
42
- 'value' => $this->getSource()->getAdjustmentPositive(),
43
- 'base_value'=> $this->getSource()->getBaseAdjustmentPositive(),
44
- 'label' => $this->helper('sales')->__('Adjustment Refund')
45
- )));
46
- $this->addTotal(new Varien_Object(array(
47
- 'code' => 'adjustment_negative',
48
- 'value' => $this->getSource()->getAdjustmentNegative(),
49
- 'base_value'=> $this->getSource()->getBaseAdjustmentNegative(),
50
- 'label' => $this->helper('sales')->__('Adjustment Fee')
51
- )));
 
 
 
 
 
 
 
 
 
 
52
  return $this;
53
  }
54
  }
6
  * @category Pay
7
  * @package Pay_Payment
8
  */
9
+ class Pay_Payment_Block_Adminhtml_Sales_Order_Creditmemo_Totals extends Mage_Adminhtml_Block_Sales_Order_Creditmemo_Totals
10
  {
11
  protected $_creditmemo;
12
 
37
  protected function _initTotals()
38
  {
39
  parent::_initTotals();
40
+ /** @var Mage_Sales_Model_Order $source */
41
+ $source = $this->getSource();
42
+ $totals = $this->_totals;
43
+ $newTotals = array();
44
+ if (count($totals)>0) {
45
+ foreach ($totals as $index=>$arr) {
46
+ if ($index == "grand_total") {
47
+ if (((float)$this->getSource()->getPaymentCharge()) != 0) {
48
+ $label = Mage::getStoreConfig('pay_payment/general/text_payment_charge', Mage::app()->getStore());
49
+ $newTotals['payment_charge'] = new Varien_Object(array(
50
+ 'code' => 'payment_charge',
51
+ 'field' => 'payment_charge',
52
+ 'base_value' => $source->getBasePaymentCharge(),
53
+ 'value' => $source->getPaymentCharge(),
54
+ 'label' => $label
55
+ ));
56
+ }
57
+ }
58
+ $newTotals[$index] = $arr;
59
+ }
60
+ $this->_totals = $newTotals;
61
+ }
62
  return $this;
63
  }
64
  }
app/code/community/Pay/Payment/Block/Adminhtml/Sales/Order/Invoice/Totals.php CHANGED
@@ -6,7 +6,7 @@
6
  * @category Pay
7
  * @package Paay_Payment
8
  */
9
- class Pay_Payment_Block_Adminhtml_Sales_order_Invoice_Totals extends Pay_Payment_Block_Adminhtml_Sales_Totals
10
  {
11
  protected $_invoice = null;
12
 
@@ -28,7 +28,7 @@ class Pay_Payment_Block_Adminhtml_Sales_order_Invoice_Totals extends Pay_Payment
28
  {
29
  return $this->getInvoice();
30
  }
31
-
32
  /**
33
  * Initialize order totals array
34
  *
@@ -37,6 +37,31 @@ class Pay_Payment_Block_Adminhtml_Sales_order_Invoice_Totals extends Pay_Payment
37
  protected function _initTotals()
38
  {
39
  parent::_initTotals();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  return $this;
41
  }
42
  }
6
  * @category Pay
7
  * @package Paay_Payment
8
  */
9
+ class Pay_Payment_Block_Adminhtml_Sales_Order_Invoice_Totals extends Mage_Adminhtml_Block_Sales_Order_Invoice_Totals
10
  {
11
  protected $_invoice = null;
12
 
28
  {
29
  return $this->getInvoice();
30
  }
31
+
32
  /**
33
  * Initialize order totals array
34
  *
37
  protected function _initTotals()
38
  {
39
  parent::_initTotals();
40
+
41
+ /** @var Mage_Sales_Model_Order $source */
42
+ $source = $this->getSource();
43
+
44
+ $totals = $this->_totals;
45
+ $newTotals = array();
46
+ if (count($totals)>0) {
47
+ foreach ($totals as $index=>$arr) {
48
+ if ($index == "grand_total") {
49
+ if (((float)$this->getSource()->getPaymentCharge()) != 0) {
50
+ $label = Mage::getStoreConfig('pay_payment/general/text_payment_charge', Mage::app()->getStore());
51
+ $newTotals['payment_charge'] = new Varien_Object(array(
52
+ 'code' => 'payment_charge',
53
+ 'field' => 'payment_charge',
54
+ 'base_value' => $source->getBasePaymentCharge(),
55
+ 'value' => $source->getPaymentCharge(),
56
+ 'label' => $label
57
+ ));
58
+ }
59
+ }
60
+ $newTotals[$index] = $arr;
61
+ }
62
+ $this->_totals = $newTotals;
63
+ }
64
+
65
  return $this;
66
  }
67
  }
app/code/community/Pay/Payment/Block/Adminhtml/Sales/Order/Totals.php CHANGED
@@ -6,9 +6,9 @@
6
  * @category Pay
7
  * @package Pay_Payment
8
  */
9
- class Pay_Payment_Block_Adminhtml_Sales_Order_Totals extends Pay_Payment_Block_Adminhtml_Sales_Totals
10
  {
11
- /**
12
  * Initialize order totals array
13
  *
14
  * @return Mage_Sales_Block_Order_Totals
@@ -16,30 +16,31 @@ class Pay_Payment_Block_Adminhtml_Sales_Order_Totals extends Pay_Payment_Block_A
16
  protected function _initTotals()
17
  {
18
  parent::_initTotals();
19
- $this->_totals['paid'] = new Varien_Object(array(
20
- 'code' => 'paid',
21
- 'strong' => true,
22
- 'value' => $this->getSource()->getTotalPaid(),
23
- 'base_value'=> $this->getSource()->getBaseTotalPaid(),
24
- 'label' => $this->helper('sales')->__('Total Paid'),
25
- 'area' => 'footer'
26
- ));
27
- $this->_totals['refunded'] = new Varien_Object(array(
28
- 'code' => 'refunded',
29
- 'strong' => true,
30
- 'value' => $this->getSource()->getTotalRefunded(),
31
- 'base_value'=> $this->getSource()->getBaseTotalRefunded(),
32
- 'label' => $this->helper('sales')->__('Total Refunded'),
33
- 'area' => 'footer'
34
- ));
35
- $this->_totals['due'] = new Varien_Object(array(
36
- 'code' => 'due',
37
- 'strong' => true,
38
- 'value' => $this->getSource()->getTotalDue(),
39
- 'base_value'=> $this->getSource()->getBaseTotalDue(),
40
- 'label' => $this->helper('sales')->__('Total Due'),
41
- 'area' => 'footer'
42
- ));
 
43
  return $this;
44
  }
45
  }
6
  * @category Pay
7
  * @package Pay_Payment
8
  */
9
+ class Pay_Payment_Block_Adminhtml_Sales_Order_Totals extends Mage_Adminhtml_Block_Sales_Order_Totals
10
  {
11
+ /**
12
  * Initialize order totals array
13
  *
14
  * @return Mage_Sales_Block_Order_Totals
16
  protected function _initTotals()
17
  {
18
  parent::_initTotals();
19
+
20
+ /** @var Mage_Sales_Model_Order $source */
21
+ $source = $this->getSource();
22
+
23
+ $totals = $this->_totals;
24
+ $newTotals = array();
25
+ if (count($totals)>0) {
26
+ foreach ($totals as $index=>$arr) {
27
+ if ($index == "grand_total") {
28
+ if (((float)$this->getSource()->getPaymentCharge()) != 0) {
29
+ $label = Mage::getStoreConfig('pay_payment/general/text_payment_charge', Mage::app()->getStore());
30
+ $newTotals['payment_charge'] = new Varien_Object(array(
31
+ 'code' => 'payment_charge',
32
+ 'field' => 'payment_charge',
33
+ 'base_value' => $source->getBasePaymentCharge(),
34
+ 'value' => $source->getPaymentCharge(),
35
+ 'label' => $label
36
+ ));
37
+ }
38
+ }
39
+ $newTotals[$index] = $arr;
40
+ }
41
+ $this->_totals = $newTotals;
42
+ }
43
+
44
  return $this;
45
  }
46
  }
app/code/community/Pay/Payment/Helper/Data.php CHANGED
@@ -290,10 +290,14 @@ class Pay_Payment_Helper_Data extends Mage_Core_Helper_Abstract
290
  }
291
 
292
  $this->loginSDK($store);
 
 
 
 
 
 
293
 
294
- $terminals = \Paynl\Instore::getAllTerminals();
295
 
296
- return $terminals->getList();
297
  }
298
 
299
  private function _saveOptions($paymentMethods, $store = null)
@@ -348,11 +352,15 @@ class Pay_Payment_Helper_Data extends Mage_Core_Helper_Abstract
348
  $paymentMethod['id'] == Pay_Payment_Model_Paymentmethod_Instore::OPTION_ID
349
  )) {
350
  foreach ($paymentMethod['banks'] as $optionSub) {
 
 
 
 
351
  $optionSubData = array(
352
  'option_sub_id' => $optionSub['id'],
353
  'option_internal_id' => $objOption->getInternalId(),
354
  'name' => $optionSub['visibleName'],
355
- 'image' => '',
356
  'active' => 1
357
  );
358
 
290
  }
291
 
292
  $this->loginSDK($store);
293
+ try{
294
+ $terminals = \Paynl\Instore::getAllTerminals();
295
+ return $terminals->getList();
296
+ } catch(Exception $e){
297
+ return array();
298
+ }
299
 
 
300
 
 
301
  }
302
 
303
  private function _saveOptions($paymentMethods, $store = null)
352
  $paymentMethod['id'] == Pay_Payment_Model_Paymentmethod_Instore::OPTION_ID
353
  )) {
354
  foreach ($paymentMethod['banks'] as $optionSub) {
355
+ $image = '';
356
+ if(isset($optionSub['image'])){
357
+ $image = $optionSub['image'];
358
+ }
359
  $optionSubData = array(
360
  'option_sub_id' => $optionSub['id'],
361
  'option_internal_id' => $objOption->getInternalId(),
362
  'name' => $optionSub['visibleName'],
363
+ 'image' => $image,
364
  'active' => 1
365
  );
366
 
app/code/community/Pay/Payment/Helper/Order.php CHANGED
@@ -74,6 +74,10 @@ class Pay_Payment_Helper_Order extends Mage_Core_Helper_Abstract
74
  $autoInvoice = $store->getConfig('pay_payment/general/auto_invoice');
75
  $invoiceEmail = $store->getConfig('pay_payment/general/invoice_email');
76
 
 
 
 
 
77
  if ($status == Pay_Payment_Model_Transaction::STATE_SUCCESS) {
78
  // als het order al canceled was, gaan we hem nu uncancelen
79
  if ($order->isCanceled()) {
74
  $autoInvoice = $store->getConfig('pay_payment/general/auto_invoice');
75
  $invoiceEmail = $store->getConfig('pay_payment/general/invoice_email');
76
 
77
+ if($invoiceEmail){
78
+ $invoiceEmail = $store->getConfig('payment/' . $payment->getMethod() . '/invoice_email');
79
+ }
80
+
81
  if ($status == Pay_Payment_Model_Transaction::STATE_SUCCESS) {
82
  // als het order al canceled was, gaan we hem nu uncancelen
83
  if ($order->isCanceled()) {
app/code/community/Pay/Payment/Model/Paymentmethod.php CHANGED
@@ -173,6 +173,7 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
173
  }
174
  private function getBillingAddress(Mage_Sales_Model_Order $order){
175
  $objBillingAddress = $order->getBillingAddress();
 
176
 
177
  $arrAddressFull = array();
178
  $arrAddressFull[] = $objBillingAddress->getStreet1();
@@ -203,6 +204,8 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
203
  private function getShippingAddress(Mage_Sales_Model_Order $order){
204
  $objShippingAddress= $order->getShippingAddress();
205
 
 
 
206
  $arrAddressFull = array();
207
  $arrAddressFull[] = $objShippingAddress->getStreet1();
208
  $arrAddressFull[] = $objShippingAddress->getStreet2();
@@ -242,23 +245,37 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
242
  }
243
 
244
  list($birthDate) = explode(' ', $order->getCustomerDob());
245
- list($dobYear, $dobMonth, $dobDay) = explode('-', $birthDate);
 
246
 
247
- $birthDate = null;
248
- if($dobDay && $dobMonth && $dobYear){
249
- $birthDate = $dobDay . '-' . $dobMonth . '-' . $dobYear;
 
 
 
250
  }
251
  $iban = $additionalData['iban'] ? $additionalData['iban'] : null;
252
 
253
  $enduser = array(
254
- 'initials' => $order->getShippingAddress()->getFirstname(),
255
- 'lastName' => $order->getShippingAddress()->getLastname(),
256
  'birthDate' => $birthDate,
257
- 'iban' => $iban,
258
- 'phoneNumber' => $order->getShippingAddress()->getTelephone(),
259
- 'emailAddress' => $order->getShippingAddress()->getEmail()
260
  );
261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  return $enduser;
263
  }
264
 
@@ -268,6 +285,7 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
268
  $session = Mage::getSingleton('checkout/session');
269
 
270
  $sendOrderData = $store->getConfig('pay_payment/general/send_order_data');
 
271
 
272
  $additionalData = $session->getPaynlPaymentData();
273
 
@@ -282,6 +300,7 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
282
 
283
  $arrStartData = array(
284
  'amount' => $order->getGrandTotal(),
 
285
  'returnUrl' => Mage::getUrl('pay_payment/order/return', array('_store' => $store->getCode())),
286
  'exchangeUrl' => Mage::getUrl('pay_payment/order/exchange', array('_store' => $store->getCode())),
287
  'paymentMethod' => $optionId,
173
  }
174
  private function getBillingAddress(Mage_Sales_Model_Order $order){
175
  $objBillingAddress = $order->getBillingAddress();
176
+ if($objBillingAddress) return array();
177
 
178
  $arrAddressFull = array();
179
  $arrAddressFull[] = $objBillingAddress->getStreet1();
204
  private function getShippingAddress(Mage_Sales_Model_Order $order){
205
  $objShippingAddress= $order->getShippingAddress();
206
 
207
+ if(!$objShippingAddress) return array();
208
+
209
  $arrAddressFull = array();
210
  $arrAddressFull[] = $objShippingAddress->getStreet1();
211
  $arrAddressFull[] = $objShippingAddress->getStreet2();
245
  }
246
 
247
  list($birthDate) = explode(' ', $order->getCustomerDob());
248
+ if(!empty(($birthDate))) {
249
+ list($dobYear, $dobMonth, $dobDay) = explode('-', $birthDate);
250
 
251
+ $birthDate = null;
252
+ if ($dobDay && $dobMonth && $dobYear) {
253
+ $birthDate = $dobDay . '-' . $dobMonth . '-' . $dobYear;
254
+ }
255
+ } else {
256
+ $birthDate = null;
257
  }
258
  $iban = $additionalData['iban'] ? $additionalData['iban'] : null;
259
 
260
  $enduser = array(
 
 
261
  'birthDate' => $birthDate,
262
+ 'iban' => $iban
 
 
263
  );
264
 
265
+ if($order->getShippingAddress()){
266
+ $enduserAddress = $order->getShippingAddress();
267
+ } else{
268
+ $enduserAddress = $order->getBillingAddress();
269
+ }
270
+ if($enduserAddress){
271
+ $enduser = array_merge($enduser, array(
272
+ 'initials' => $enduserAddress->getFirstname(),
273
+ 'lastName' => $enduserAddress->getLastname(),
274
+ 'phoneNumber' => $enduserAddress->getTelephone(),
275
+ 'emailAddress' => $enduserAddress->getEmail()
276
+ ));
277
+ }
278
+
279
  return $enduser;
280
  }
281
 
285
  $session = Mage::getSingleton('checkout/session');
286
 
287
  $sendOrderData = $store->getConfig('pay_payment/general/send_order_data');
288
+ $testMode = $store->getConfig('pay_payment/general/testmode');
289
 
290
  $additionalData = $session->getPaynlPaymentData();
291
 
300
 
301
  $arrStartData = array(
302
  'amount' => $order->getGrandTotal(),
303
+ 'testmode' => $testMode,
304
  'returnUrl' => Mage::getUrl('pay_payment/order/return', array('_store' => $store->getCode())),
305
  'exchangeUrl' => Mage::getUrl('pay_payment/order/exchange', array('_store' => $store->getCode())),
306
  'paymentMethod' => $optionId,
app/code/community/Pay/Payment/Model/Sales/Order/Creditmemo/Total/Paymentcharge.php CHANGED
@@ -2,45 +2,26 @@
2
 
3
  class Pay_Payment_Model_Sales_Order_Creditmemo_Total_Paymentcharge extends Mage_Sales_Model_Order_Creditmemo_Total_Abstract
4
  {
5
- public function collect(Mage_Sales_Model_Order_Creditmemo $creditmemo)
6
- {
7
- $creditmemo->setPaymentCharge(0);
8
- $creditmemo->setBasePaymentCharge(0);
9
-
10
- $paymentCharge = $creditmemo->getOrder()->getPaymentCharge();
11
- $basePaymentCharge = $creditmemo->getOrder()->getBasePaymentCharge();
12
 
13
- // we moeten de btw meenemen in de berekening
14
- $paymentMethod = $creditmemo->getOrder()->getPayment()->getMethod();
15
- $taxClass = Mage::helper('pay_payment')->getPaymentChargeTaxClass($paymentMethod);
 
16
 
17
- $storeId = $creditmemo->getStoreId();
 
 
 
18
 
19
- $taxCalculationModel = Mage::getSingleton('tax/calculation');
20
- $request = $taxCalculationModel->getRateRequest($creditmemo->getOrder()->getShippingAddress(), $creditmemo->getOrder()->getBillingAddress(), null, $storeId);
21
- $request->setStore(Mage::app()->getStore());
22
- $rate = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
23
 
 
 
24
 
25
- if ($rate > 0)
26
- {
27
- $baseChargeTax = round($basePaymentCharge / (1 + ($rate / 100)) * ($rate / 100), 2);
28
- $chargeTax = round($paymentCharge / (1 + ($rate / 100)) * ($rate / 100), 2);
29
- } else
30
- {
31
- $baseChargeTax = 0;
32
- $chargeTax = 0;
33
  }
34
-
35
- $creditmemo->setPaymentCharge($paymentCharge);
36
- $creditmemo->setBasePaymentCharge($basePaymentCharge);
37
-
38
- $creditmemo->setBaseTaxAmount($creditmemo->getBaseTaxAmount() + $baseChargeTax);
39
- $creditmemo->setTaxAmount($creditmemo->getTaxAmount() + $chargeTax);
40
-
41
- $creditmemo->setGrandTotal($creditmemo->getGrandTotal() + $creditmemo->getPaymentCharge());
42
- $creditmemo->setBaseGrandTotal($creditmemo->getBaseGrandTotal() + $creditmemo->getBasePaymentCharge());
43
-
44
- return $this;
45
- }
46
  }
2
 
3
  class Pay_Payment_Model_Sales_Order_Creditmemo_Total_Paymentcharge extends Mage_Sales_Model_Order_Creditmemo_Total_Abstract
4
  {
5
+ public function collect(Mage_Sales_Model_Order_Creditmemo $creditmemo)
6
+ {
7
+ $order = $creditmemo->getOrder();
 
 
 
 
8
 
9
+ $paymentCharge = $order->getPaymentCharge();
10
+ $basePaymentCharge = $order->getBasePaymentCharge();
11
+ $creditmemo->setPaymentCharge($paymentCharge);
12
+ $creditmemo->setBasePaymentCharge($basePaymentCharge);
13
 
14
+ $paymentChargeTax = $order->getPaymentChargeTaxAmount();
15
+ $baseBaymentChargeTax = $order->getBasePaymentChargeTaxAmount();
16
+ $creditmemo->setPaymentChargeTaxAmount($paymentChargeTax);
17
+ $creditmemo->setBasePaymentChargeTaxAmount($baseBaymentChargeTax);
18
 
19
+ $creditmemo->setTaxAmount(($creditmemo->getTaxAmount()*1) + $paymentChargeTax);
20
+ $creditmemo->setBaseTaxAmount(($creditmemo->getBaseTaxAmount()*1) + $baseBaymentChargeTax);
 
 
21
 
22
+ $creditmemo->setGrandTotal(($creditmemo->getGrandTotal()*1) + $paymentCharge);
23
+ $creditmemo->setBaseGrandTotal(($creditmemo->getBaseGrandTotal()*1) + $basePaymentCharge);
24
 
25
+ return $this;
 
 
 
 
 
 
 
26
  }
 
 
 
 
 
 
 
 
 
 
 
 
27
  }
app/code/community/Pay/Payment/Model/Sales/Order/Invoice/Total/Paymentcharge.php CHANGED
@@ -3,45 +3,35 @@
3
  class Pay_Payment_Model_Sales_Order_Invoice_Total_Paymentcharge extends Mage_Sales_Model_Order_Invoice_Total_Abstract
4
  {
5
 
6
- public function collect(Mage_Sales_Model_Order_Invoice $invoice)
7
- {
8
- $invoice->setPaymentCharge(0);
9
- $invoice->setBasePaymentCharge(0);
10
 
11
- $paymentCharge = $invoice->getOrder()->getPaymentCharge();
12
- $basePaymentCharge = $invoice->getOrder()->getBasePaymentCharge();
13
 
14
- // we moeten de btw meenemen in de berekening
15
- $paymentMethod = $invoice->getOrder()->getPayment()->getMethod();
16
- $taxClass = Mage::helper('pay_payment')->getPaymentChargeTaxClass($paymentMethod);
17
 
18
- $storeId = $invoice->getOrder()->getStoreId();
 
19
 
20
- $taxCalculationModel = Mage::getSingleton('tax/calculation');
21
- $request = $taxCalculationModel->getRateRequest($invoice->getOrder()->getShippingAddress(), $invoice->getOrder()->getBillingAddress(), null, $storeId);
22
- $request->setStore(Mage::app()->getStore());
23
- $rate = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
24
 
25
- if ($rate > 0)
26
- {
27
- $baseChargeTax = round($basePaymentCharge / (1 + ($rate / 100)) * ($rate / 100), 2);
28
- $chargeTax = round($paymentCharge/ (1 + ($rate / 100)) * ($rate / 100), 2);
29
- } else
30
- {
31
- $baseChargeTax = 0;
32
- $chargeTax = 0;
33
- }
34
 
35
- $invoice->setPaymentCharge($paymentCharge);
36
- $invoice->setBasePaymentCharge($basePaymentCharge);
 
 
37
 
38
- $invoice->setBaseTaxAmount($invoice->getBaseTaxAmount() + $baseChargeTax);
39
- $invoice->setTaxAmount($invoice->getTaxAmount() + $chargeTax);
40
 
41
- $invoice->setGrandTotal($invoice->getGrandTotal() + $invoice->getPaymentCharge());
42
- $invoice->setBaseGrandTotal($invoice->getBaseGrandTotal() + $invoice->getBasePaymentCharge());
43
 
44
- return $this;
45
- }
46
 
47
  }
3
  class Pay_Payment_Model_Sales_Order_Invoice_Total_Paymentcharge extends Mage_Sales_Model_Order_Invoice_Total_Abstract
4
  {
5
 
6
+ public function collect(Mage_Sales_Model_Order_Invoice $invoice)
7
+ {
8
+ $order = $invoice->getOrder();
 
9
 
10
+ $paymentCharge = $order->getPaymentCharge();
11
+ $basePaymentCharge = $order->getBasePaymentCharge();
12
 
 
 
 
13
 
14
+ $invoice->setPaymentCharge($paymentCharge);
15
+ $invoice->setBasePaymentCharge($basePaymentCharge);
16
 
17
+ $paymentChargeTaxAmount = $order->getPaymentChargeTaxAmount();
18
+ $basePaymentChargeTaxAmount = $order->getBasePaymentChargeTaxAmount();
 
 
19
 
20
+ $invoice->setPaymentChargeTaxAmount($paymentChargeTaxAmount);
21
+ $invoice->setBasePaymentChargeTaxAmount($basePaymentChargeTaxAmount);
 
 
 
 
 
 
 
22
 
23
+ $invoiceTaxAmount = $invoice->getTaxAmount()*1;
24
+ $invoiceBaseTaxAmount = $invoice->getBaseTaxAmount()*1;
25
+ $taxAmount = $paymentChargeTaxAmount+$invoiceBaseTaxAmount;
26
+ $baseTaxAmount = $basePaymentChargeTaxAmount+$invoiceTaxAmount;
27
 
28
+ $invoice->setTaxAmount($taxAmount);
29
+ $invoice->setBaseTaxAmount($baseTaxAmount);
30
 
31
+ $invoice->setGrandTotal($invoice->getGrandTotal()+$paymentCharge);
32
+ $invoice->setBaseGrandTotal($invoice->getBaseGrandTotal()+$basePaymentCharge);
33
 
34
+ return $this;
35
+ }
36
 
37
  }
app/code/community/Pay/Payment/Model/Sales/Quote/Address/Total/Paymentcharge.php CHANGED
@@ -47,6 +47,9 @@ class Pay_Payment_Model_Sales_Quote_Address_Total_Paymentcharge extends Mage_Sal
47
  $baseChargeTax = 0;
48
  $chargeTax = 0;
49
  }
 
 
 
50
 
51
  $rates = array();
52
  $applied = false;
@@ -68,7 +71,7 @@ class Pay_Payment_Model_Sales_Quote_Address_Total_Paymentcharge extends Mage_Sal
68
 
69
  $address->setGrandTotal($address->getGrandTotal() + $address->getPaymentCharge());
70
  $address->setBaseGrandTotal($address->getBaseGrandTotal() + $address->getBasePaymentCharge());
71
-
72
  }
73
  return $this;
74
  }
47
  $baseChargeTax = 0;
48
  $chargeTax = 0;
49
  }
50
+
51
+ $address->setPaymentChargeTaxAmount($chargeTax);
52
+ $address->setBasePaymentChargeTaxAmount($baseChargeTax);
53
 
54
  $rates = array();
55
  $applied = false;
71
 
72
  $address->setGrandTotal($address->getGrandTotal() + $address->getPaymentCharge());
73
  $address->setBaseGrandTotal($address->getBaseGrandTotal() + $address->getBasePaymentCharge());
74
+
75
  }
76
  return $this;
77
  }
app/code/community/Pay/Payment/composer.lock CHANGED
@@ -9,16 +9,16 @@
9
  "packages": [
10
  {
11
  "name": "paynl/sdk",
12
- "version": "v1.2.9",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/paynl/sdk.git",
16
- "reference": "3521f99df7f9d34709b8fb1acfab10423084407f"
17
  },
18
  "dist": {
19
  "type": "zip",
20
- "url": "https://api.github.com/repos/paynl/sdk/zipball/3521f99df7f9d34709b8fb1acfab10423084407f",
21
- "reference": "3521f99df7f9d34709b8fb1acfab10423084407f",
22
  "shasum": ""
23
  },
24
  "require": {
@@ -41,7 +41,7 @@
41
  "email": "andy@pay.nl"
42
  }
43
  ],
44
- "time": "2017-03-14 16:42:11"
45
  },
46
  {
47
  "name": "php-curl-class/php-curl-class",
9
  "packages": [
10
  {
11
  "name": "paynl/sdk",
12
+ "version": "v1.2.10",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/paynl/sdk.git",
16
+ "reference": "ff403586f74287d1b6abbb4c46a463f5eb29e25c"
17
  },
18
  "dist": {
19
  "type": "zip",
20
+ "url": "https://api.github.com/repos/paynl/sdk/zipball/ff403586f74287d1b6abbb4c46a463f5eb29e25c",
21
+ "reference": "ff403586f74287d1b6abbb4c46a463f5eb29e25c",
22
  "shasum": ""
23
  },
24
  "require": {
41
  "email": "andy@pay.nl"
42
  }
43
  ],
44
+ "time": "2017-04-24 15:33:14"
45
  },
46
  {
47
  "name": "php-curl-class/php-curl-class",
app/code/community/Pay/Payment/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Pay_Payment>
5
- <version>3.7.0</version>
6
  </Pay_Payment>
7
  </modules>
8
  <global>
@@ -80,6 +80,12 @@
80
  <base_payment_charge>
81
  <to_order>*</to_order>
82
  </base_payment_charge>
 
 
 
 
 
 
83
  </sales_convert_quote_address>
84
  </fieldsets>
85
  <helpers>
@@ -196,6 +202,7 @@
196
  <pay_payment>
197
  <general>
198
  <send_order_data>1</send_order_data>
 
199
  <restore_cart>1</restore_cart>
200
  <auto_invoice>1</auto_invoice>
201
  <invoice_email>0</invoice_email>
@@ -214,6 +221,7 @@
214
  <pay_payment_ideal>
215
  <active>0</active>
216
  <model>pay_payment/Paymentmethod_Ideal</model>
 
217
  <title>iDEAL</title>
218
  <text_bankselect>Selecteer uw bank</text_bankselect>
219
  <payment_action>authorize</payment_action>
@@ -224,6 +232,7 @@
224
  </pay_payment_ideal>
225
  <pay_payment_klarna>
226
  <active>0</active>
 
227
  <model>pay_payment/Paymentmethod_Klarna</model>
228
  <title>Klarna</title>
229
  <payment_action>authorize</payment_action>
@@ -234,6 +243,7 @@
234
  </pay_payment_klarna>
235
  <pay_payment_bitcoin>
236
  <active>0</active>
 
237
  <model>pay_payment/Paymentmethod_Bitcoin</model>
238
  <title>Bitcoin</title>
239
  <payment_action>authorize</payment_action>
@@ -244,6 +254,7 @@
244
  </pay_payment_bitcoin>
245
  <pay_payment_capayable>
246
  <active>0</active>
 
247
  <model>pay_payment/Paymentmethod_Capayable</model>
248
  <title>Capayable</title>
249
  <payment_action>authorize</payment_action>
@@ -254,6 +265,7 @@
254
  </pay_payment_capayable>
255
  <pay_payment_capayablegespreid>
256
  <active>0</active>
 
257
  <model>pay_payment/Paymentmethod_CapayableGespreid</model>
258
  <title>Capayable Gespreid</title>
259
  <payment_action>authorize</payment_action>
@@ -264,6 +276,7 @@
264
  </pay_payment_capayablegespreid>
265
  <pay_payment_mybank>
266
  <active>0</active>
 
267
  <model>pay_payment/Paymentmethod_Mybank</model>
268
  <title>Mybank</title>
269
  <payment_action>authorize</payment_action>
@@ -274,6 +287,7 @@
274
  </pay_payment_mybank>
275
  <pay_payment_fashioncheque>
276
  <active>0</active>
 
277
  <model>pay_payment/Paymentmethod_Fashioncheque</model>
278
  <title>Fashioncheque</title>
279
  <payment_action>authorize</payment_action>
@@ -284,6 +298,7 @@
284
  </pay_payment_fashioncheque>
285
  <pay_payment_gezondheidsbon>
286
  <active>0</active>
 
287
  <model>pay_payment/Paymentmethod_Gezondheidsbon</model>
288
  <title>Gezondheidsbon</title>
289
  <payment_action>authorize</payment_action>
@@ -294,6 +309,7 @@
294
  </pay_payment_gezondheidsbon>
295
  <pay_payment_podiumkadokaart>
296
  <active>0</active>
 
297
  <model>pay_payment/Paymentmethod_Podiumkadokaart</model>
298
  <title>Podiumkadokaart</title>
299
  <payment_action>authorize</payment_action>
@@ -304,6 +320,7 @@
304
  </pay_payment_podiumkadokaart>
305
  <pay_payment_yourgift>
306
  <active>0</active>
 
307
  <model>pay_payment/Paymentmethod_Yourgift</model>
308
  <title>Yourgift</title>
309
  <payment_action>authorize</payment_action>
@@ -314,6 +331,7 @@
314
  </pay_payment_yourgift>
315
  <pay_payment_overboeking>
316
  <active>0</active>
 
317
  <model>pay_payment/Paymentmethod_Overboeking</model>
318
  <title>Overboeking</title>
319
  <payment_action>authorize</payment_action>
@@ -324,6 +342,7 @@
324
  </pay_payment_overboeking>
325
  <pay_payment_incasso>
326
  <active>0</active>
 
327
  <model>pay_payment/Paymentmethod_Incasso</model>
328
  <title>Incasso</title>
329
  <payment_action>authorize</payment_action>
@@ -334,6 +353,7 @@
334
  </pay_payment_incasso>
335
  <pay_payment_instore>
336
  <active>0</active>
 
337
  <active_checkout>0</active_checkout>
338
  <model>pay_payment/Paymentmethod_Instore</model>
339
  <title>Pinnen</title>
@@ -345,6 +365,7 @@
345
  </pay_payment_instore>
346
  <pay_payment_paypal>
347
  <active>0</active>
 
348
  <model>pay_payment/Paymentmethod_Paypal</model>
349
  <title>Paypal</title>
350
  <payment_action>authorize</payment_action>
@@ -355,6 +376,7 @@
355
  </pay_payment_paypal>
356
  <pay_payment_mistercash>
357
  <active>0</active>
 
358
  <model>pay_payment/Paymentmethod_Mistercash</model>
359
  <title>Mistercash</title>
360
  <payment_action>authorize</payment_action>
@@ -365,6 +387,7 @@
365
  </pay_payment_mistercash>
366
  <pay_payment_sofortbanking>
367
  <active>0</active>
 
368
  <model>pay_payment/Paymentmethod_Sofortbanking</model>
369
  <title>Sofortbanking</title>
370
  <payment_action>authorize</payment_action>
@@ -375,6 +398,7 @@
375
  </pay_payment_sofortbanking>
376
  <pay_payment_giropay>
377
  <active>0</active>
 
378
  <model>pay_payment/Paymentmethod_Giropay</model>
379
  <title>Giropay</title>
380
  <payment_action>authorize</payment_action>
@@ -385,6 +409,7 @@
385
  </pay_payment_giropay>
386
  <pay_payment_visamastercard>
387
  <active>0</active>
 
388
  <model>pay_payment/Paymentmethod_Visamastercard</model>
389
  <title>Visa/Mastercard</title>
390
  <payment_action>authorize</payment_action>
@@ -395,6 +420,7 @@
395
  </pay_payment_visamastercard>
396
  <pay_payment_maestro>
397
  <active>0</active>
 
398
  <model>pay_payment/Paymentmethod_Maestro</model>
399
  <title>Maestro</title>
400
  <payment_action>authorize</payment_action>
@@ -405,6 +431,7 @@
405
  </pay_payment_maestro>
406
  <pay_payment_afterpay>
407
  <active>0</active>
 
408
  <model>pay_payment/Paymentmethod_Afterpay</model>
409
  <title>Afterpay</title>
410
  <payment_action>authorize</payment_action>
@@ -415,6 +442,7 @@
415
  </pay_payment_afterpay>
416
  <pay_payment_afterpayem>
417
  <active>0</active>
 
418
  <model>pay_payment/Paymentmethod_Afterpayem</model>
419
  <title>Afterpay Eenmalige Machtiging</title>
420
  <payment_action>authorize</payment_action>
@@ -425,6 +453,7 @@
425
  </pay_payment_afterpayem>
426
  <pay_payment_telefoon>
427
  <active>0</active>
 
428
  <model>pay_payment/Paymentmethod_Telefoon</model>
429
  <title>Telefoon</title>
430
  <payment_action>authorize</payment_action>
@@ -435,6 +464,7 @@
435
  </pay_payment_telefoon>
436
  <pay_payment_paysafecard>
437
  <active>0</active>
 
438
  <model>pay_payment/Paymentmethod_Paysafecard</model>
439
  <title>Paysafecard</title>
440
  <payment_action>authorize</payment_action>
@@ -445,6 +475,7 @@
445
  </pay_payment_paysafecard>
446
  <pay_payment_webshopgiftcard>
447
  <active>0</active>
 
448
  <model>pay_payment/Paymentmethod_Webshopgiftcard</model>
449
  <title>Webshopgiftcard</title>
450
  <payment_action>authorize</payment_action>
@@ -455,6 +486,7 @@
455
  </pay_payment_webshopgiftcard>
456
  <pay_payment_cartebleue>
457
  <active>0</active>
 
458
  <model>pay_payment/Paymentmethod_Cartebleue</model>
459
  <title>Cartebleue</title>
460
  <payment_action>authorize</payment_action>
@@ -465,6 +497,7 @@
465
  </pay_payment_cartebleue>
466
  <pay_payment_postepay>
467
  <active>0</active>
 
468
  <model>pay_payment/Paymentmethod_Postepay</model>
469
  <title>Postepay</title>
470
  <payment_action>authorize</payment_action>
@@ -475,6 +508,7 @@
475
  </pay_payment_postepay>
476
  <pay_payment_billink>
477
  <active>0</active>
 
478
  <model>pay_payment/Paymentmethod_Billink</model>
479
  <title>Billink</title>
480
  <payment_action>authorize</payment_action>
@@ -487,6 +521,7 @@
487
  </pay_payment_billink>
488
  <pay_payment_givacard>
489
  <active>0</active>
 
490
  <model>pay_payment/Paymentmethod_Givacard</model>
491
  <title>Givacard</title>
492
  <payment_action>authorize</payment_action>
@@ -497,6 +532,7 @@
497
  </pay_payment_givacard>
498
  <pay_payment_wijncadeau>
499
  <active>0</active>
 
500
  <model>pay_payment/Paymentmethod_Wijncadeau</model>
501
  <title>Wijncadeau</title>
502
  <payment_action>authorize</payment_action>
@@ -507,6 +543,7 @@
507
  </pay_payment_wijncadeau>
508
  <pay_payment_amex>
509
  <active>0</active>
 
510
  <model>pay_payment/Paymentmethod_Amex</model>
511
  <title>American Express (AMEX)</title>
512
  <payment_action>authorize</payment_action>
@@ -519,6 +556,7 @@
519
  </pay_payment_amex>
520
  <pay_payment_focum>
521
  <active>0</active>
 
522
  <model>pay_payment/Paymentmethod_Focum</model>
523
  <title>AchterafBetalen.nl</title>
524
  <payment_action>authorize</payment_action>
@@ -529,6 +567,7 @@
529
  </pay_payment_focum>
530
  <pay_payment_vvvgiftcard>
531
  <active>0</active>
 
532
  <model>pay_payment/Paymentmethod_Vvvgiftcard</model>
533
  <title>VVV Giftcard</title>
534
  <payment_action>authorize</payment_action>
@@ -539,6 +578,7 @@
539
  </pay_payment_vvvgiftcard>
540
  <pay_payment_paylink>
541
  <active>1</active>
 
542
  <model>pay_payment/Paymentmethod_Paylink</model>
543
  <title>Pay.nl Betaallink</title>
544
  <payment_action>authorize</payment_action>
@@ -549,6 +589,7 @@
549
  </pay_payment_paylink>
550
  <pay_payment_yehhpay>
551
  <active>0</active>
 
552
  <model>pay_payment/Paymentmethod_Yehhpay</model>
553
  <title>Yehhpay</title>
554
  <payment_action>authorize</payment_action>
2
  <config>
3
  <modules>
4
  <Pay_Payment>
5
+ <version>3.7.1</version>
6
  </Pay_Payment>
7
  </modules>
8
  <global>
80
  <base_payment_charge>
81
  <to_order>*</to_order>
82
  </base_payment_charge>
83
+ <payment_charge_tax_amount>
84
+ <to_order>*</to_order>
85
+ </payment_charge_tax_amount>
86
+ <base_payment_charge_tax_amount>
87
+ <to_order>*</to_order>
88
+ </base_payment_charge_tax_amount>
89
  </sales_convert_quote_address>
90
  </fieldsets>
91
  <helpers>
202
  <pay_payment>
203
  <general>
204
  <send_order_data>1</send_order_data>
205
+ <testmode>0</testmode>
206
  <restore_cart>1</restore_cart>
207
  <auto_invoice>1</auto_invoice>
208
  <invoice_email>0</invoice_email>
221
  <pay_payment_ideal>
222
  <active>0</active>
223
  <model>pay_payment/Paymentmethod_Ideal</model>
224
+ <invoice_email>1</invoice_email>
225
  <title>iDEAL</title>
226
  <text_bankselect>Selecteer uw bank</text_bankselect>
227
  <payment_action>authorize</payment_action>
232
  </pay_payment_ideal>
233
  <pay_payment_klarna>
234
  <active>0</active>
235
+ <invoice_email>1</invoice_email>
236
  <model>pay_payment/Paymentmethod_Klarna</model>
237
  <title>Klarna</title>
238
  <payment_action>authorize</payment_action>
243
  </pay_payment_klarna>
244
  <pay_payment_bitcoin>
245
  <active>0</active>
246
+ <invoice_email>1</invoice_email>
247
  <model>pay_payment/Paymentmethod_Bitcoin</model>
248
  <title>Bitcoin</title>
249
  <payment_action>authorize</payment_action>
254
  </pay_payment_bitcoin>
255
  <pay_payment_capayable>
256
  <active>0</active>
257
+ <invoice_email>1</invoice_email>
258
  <model>pay_payment/Paymentmethod_Capayable</model>
259
  <title>Capayable</title>
260
  <payment_action>authorize</payment_action>
265
  </pay_payment_capayable>
266
  <pay_payment_capayablegespreid>
267
  <active>0</active>
268
+ <invoice_email>1</invoice_email>
269
  <model>pay_payment/Paymentmethod_CapayableGespreid</model>
270
  <title>Capayable Gespreid</title>
271
  <payment_action>authorize</payment_action>
276
  </pay_payment_capayablegespreid>
277
  <pay_payment_mybank>
278
  <active>0</active>
279
+ <invoice_email>1</invoice_email>
280
  <model>pay_payment/Paymentmethod_Mybank</model>
281
  <title>Mybank</title>
282
  <payment_action>authorize</payment_action>
287
  </pay_payment_mybank>
288
  <pay_payment_fashioncheque>
289
  <active>0</active>
290
+ <invoice_email>1</invoice_email>
291
  <model>pay_payment/Paymentmethod_Fashioncheque</model>
292
  <title>Fashioncheque</title>
293
  <payment_action>authorize</payment_action>
298
  </pay_payment_fashioncheque>
299
  <pay_payment_gezondheidsbon>
300
  <active>0</active>
301
+ <invoice_email>1</invoice_email>
302
  <model>pay_payment/Paymentmethod_Gezondheidsbon</model>
303
  <title>Gezondheidsbon</title>
304
  <payment_action>authorize</payment_action>
309
  </pay_payment_gezondheidsbon>
310
  <pay_payment_podiumkadokaart>
311
  <active>0</active>
312
+ <invoice_email>1</invoice_email>
313
  <model>pay_payment/Paymentmethod_Podiumkadokaart</model>
314
  <title>Podiumkadokaart</title>
315
  <payment_action>authorize</payment_action>
320
  </pay_payment_podiumkadokaart>
321
  <pay_payment_yourgift>
322
  <active>0</active>
323
+ <invoice_email>1</invoice_email>
324
  <model>pay_payment/Paymentmethod_Yourgift</model>
325
  <title>Yourgift</title>
326
  <payment_action>authorize</payment_action>
331
  </pay_payment_yourgift>
332
  <pay_payment_overboeking>
333
  <active>0</active>
334
+ <invoice_email>1</invoice_email>
335
  <model>pay_payment/Paymentmethod_Overboeking</model>
336
  <title>Overboeking</title>
337
  <payment_action>authorize</payment_action>
342
  </pay_payment_overboeking>
343
  <pay_payment_incasso>
344
  <active>0</active>
345
+ <invoice_email>1</invoice_email>
346
  <model>pay_payment/Paymentmethod_Incasso</model>
347
  <title>Incasso</title>
348
  <payment_action>authorize</payment_action>
353
  </pay_payment_incasso>
354
  <pay_payment_instore>
355
  <active>0</active>
356
+ <invoice_email>1</invoice_email>
357
  <active_checkout>0</active_checkout>
358
  <model>pay_payment/Paymentmethod_Instore</model>
359
  <title>Pinnen</title>
365
  </pay_payment_instore>
366
  <pay_payment_paypal>
367
  <active>0</active>
368
+ <invoice_email>1</invoice_email>
369
  <model>pay_payment/Paymentmethod_Paypal</model>
370
  <title>Paypal</title>
371
  <payment_action>authorize</payment_action>
376
  </pay_payment_paypal>
377
  <pay_payment_mistercash>
378
  <active>0</active>
379
+ <invoice_email>1</invoice_email>
380
  <model>pay_payment/Paymentmethod_Mistercash</model>
381
  <title>Mistercash</title>
382
  <payment_action>authorize</payment_action>
387
  </pay_payment_mistercash>
388
  <pay_payment_sofortbanking>
389
  <active>0</active>
390
+ <invoice_email>1</invoice_email>
391
  <model>pay_payment/Paymentmethod_Sofortbanking</model>
392
  <title>Sofortbanking</title>
393
  <payment_action>authorize</payment_action>
398
  </pay_payment_sofortbanking>
399
  <pay_payment_giropay>
400
  <active>0</active>
401
+ <invoice_email>1</invoice_email>
402
  <model>pay_payment/Paymentmethod_Giropay</model>
403
  <title>Giropay</title>
404
  <payment_action>authorize</payment_action>
409
  </pay_payment_giropay>
410
  <pay_payment_visamastercard>
411
  <active>0</active>
412
+ <invoice_email>1</invoice_email>
413
  <model>pay_payment/Paymentmethod_Visamastercard</model>
414
  <title>Visa/Mastercard</title>
415
  <payment_action>authorize</payment_action>
420
  </pay_payment_visamastercard>
421
  <pay_payment_maestro>
422
  <active>0</active>
423
+ <invoice_email>1</invoice_email>
424
  <model>pay_payment/Paymentmethod_Maestro</model>
425
  <title>Maestro</title>
426
  <payment_action>authorize</payment_action>
431
  </pay_payment_maestro>
432
  <pay_payment_afterpay>
433
  <active>0</active>
434
+ <invoice_email>1</invoice_email>
435
  <model>pay_payment/Paymentmethod_Afterpay</model>
436
  <title>Afterpay</title>
437
  <payment_action>authorize</payment_action>
442
  </pay_payment_afterpay>
443
  <pay_payment_afterpayem>
444
  <active>0</active>
445
+ <invoice_email>1</invoice_email>
446
  <model>pay_payment/Paymentmethod_Afterpayem</model>
447
  <title>Afterpay Eenmalige Machtiging</title>
448
  <payment_action>authorize</payment_action>
453
  </pay_payment_afterpayem>
454
  <pay_payment_telefoon>
455
  <active>0</active>
456
+ <invoice_email>1</invoice_email>
457
  <model>pay_payment/Paymentmethod_Telefoon</model>
458
  <title>Telefoon</title>
459
  <payment_action>authorize</payment_action>
464
  </pay_payment_telefoon>
465
  <pay_payment_paysafecard>
466
  <active>0</active>
467
+ <invoice_email>1</invoice_email>
468
  <model>pay_payment/Paymentmethod_Paysafecard</model>
469
  <title>Paysafecard</title>
470
  <payment_action>authorize</payment_action>
475
  </pay_payment_paysafecard>
476
  <pay_payment_webshopgiftcard>
477
  <active>0</active>
478
+ <invoice_email>1</invoice_email>
479
  <model>pay_payment/Paymentmethod_Webshopgiftcard</model>
480
  <title>Webshopgiftcard</title>
481
  <payment_action>authorize</payment_action>
486
  </pay_payment_webshopgiftcard>
487
  <pay_payment_cartebleue>
488
  <active>0</active>
489
+ <invoice_email>1</invoice_email>
490
  <model>pay_payment/Paymentmethod_Cartebleue</model>
491
  <title>Cartebleue</title>
492
  <payment_action>authorize</payment_action>
497
  </pay_payment_cartebleue>
498
  <pay_payment_postepay>
499
  <active>0</active>
500
+ <invoice_email>1</invoice_email>
501
  <model>pay_payment/Paymentmethod_Postepay</model>
502
  <title>Postepay</title>
503
  <payment_action>authorize</payment_action>
508
  </pay_payment_postepay>
509
  <pay_payment_billink>
510
  <active>0</active>
511
+ <invoice_email>1</invoice_email>
512
  <model>pay_payment/Paymentmethod_Billink</model>
513
  <title>Billink</title>
514
  <payment_action>authorize</payment_action>
521
  </pay_payment_billink>
522
  <pay_payment_givacard>
523
  <active>0</active>
524
+ <invoice_email>1</invoice_email>
525
  <model>pay_payment/Paymentmethod_Givacard</model>
526
  <title>Givacard</title>
527
  <payment_action>authorize</payment_action>
532
  </pay_payment_givacard>
533
  <pay_payment_wijncadeau>
534
  <active>0</active>
535
+ <invoice_email>1</invoice_email>
536
  <model>pay_payment/Paymentmethod_Wijncadeau</model>
537
  <title>Wijncadeau</title>
538
  <payment_action>authorize</payment_action>
543
  </pay_payment_wijncadeau>
544
  <pay_payment_amex>
545
  <active>0</active>
546
+ <invoice_email>1</invoice_email>
547
  <model>pay_payment/Paymentmethod_Amex</model>
548
  <title>American Express (AMEX)</title>
549
  <payment_action>authorize</payment_action>
556
  </pay_payment_amex>
557
  <pay_payment_focum>
558
  <active>0</active>
559
+ <invoice_email>1</invoice_email>
560
  <model>pay_payment/Paymentmethod_Focum</model>
561
  <title>AchterafBetalen.nl</title>
562
  <payment_action>authorize</payment_action>
567
  </pay_payment_focum>
568
  <pay_payment_vvvgiftcard>
569
  <active>0</active>
570
+ <invoice_email>1</invoice_email>
571
  <model>pay_payment/Paymentmethod_Vvvgiftcard</model>
572
  <title>VVV Giftcard</title>
573
  <payment_action>authorize</payment_action>
578
  </pay_payment_vvvgiftcard>
579
  <pay_payment_paylink>
580
  <active>1</active>
581
+ <invoice_email>1</invoice_email>
582
  <model>pay_payment/Paymentmethod_Paylink</model>
583
  <title>Pay.nl Betaallink</title>
584
  <payment_action>authorize</payment_action>
589
  </pay_payment_paylink>
590
  <pay_payment_yehhpay>
591
  <active>0</active>
592
+ <invoice_email>1</invoice_email>
593
  <model>pay_payment/Paymentmethod_Yehhpay</model>
594
  <title>Yehhpay</title>
595
  <payment_action>authorize</payment_action>
app/code/community/Pay/Payment/etc/system.xml CHANGED
@@ -48,13 +48,25 @@
48
  <show_in_website>1</show_in_website>
49
  <show_in_store>1</show_in_store>
50
  </serviceid>
 
 
 
 
 
 
 
 
 
 
 
 
51
  <auto_invoice translate="label comment">
52
  <label>Automatisch factureren</label>
53
  <comment>
54
  <![CDATA[Betaalde orders automatisch factureren, LET OP! Als dit op NEE staat kun je orders ook niet refunden]]></comment>
55
  <frontend_type>select</frontend_type>
56
  <source_model>adminhtml/system_config_source_yesno</source_model>
57
- <sort_order>4</sort_order>
58
  <show_in_default>1</show_in_default>
59
  <show_in_website>1</show_in_website>
60
  <show_in_store>1</show_in_store>
@@ -64,7 +76,7 @@
64
  <comment><![CDATA[Een email sturen met de factuur]]></comment>
65
  <frontend_type>select</frontend_type>
66
  <source_model>adminhtml/system_config_source_yesno</source_model>
67
- <sort_order>5</sort_order>
68
  <show_in_default>1</show_in_default>
69
  <show_in_website>1</show_in_website>
70
  <show_in_store>1</show_in_store>
@@ -74,7 +86,7 @@
74
  <comment><![CDATA[Updates sturen wanner de status van de order wijzigt]]></comment>
75
  <frontend_type>select</frontend_type>
76
  <source_model>adminhtml/system_config_source_yesno</source_model>
77
- <sort_order>6</sort_order>
78
  <show_in_default>1</show_in_default>
79
  <show_in_website>1</show_in_website>
80
  <show_in_store>1</show_in_store>
@@ -85,7 +97,7 @@
85
  <![CDATA[Klantgegeven en orderdata naar pay versturen, verplicht indien u gebruik maakt van een achteraf betaalmethode, of wanneer u gebruik wilt maken van Second Chance]]></comment>
86
  <frontend_type>select</frontend_type>
87
  <source_model>adminhtml/system_config_source_yesno</source_model>
88
- <sort_order>7</sort_order>
89
  <show_in_default>1</show_in_default>
90
  <show_in_website>1</show_in_website>
91
  <show_in_store>1</show_in_store>
@@ -96,7 +108,7 @@
96
  <![CDATA[Geef aan of u wilt dat de winkelwagen weer wordt gevuld met de producten die waren besteld als de gebruiker op het betaalscherm op annuleren heeft geklikt]]></comment>
97
  <frontend_type>select</frontend_type>
98
  <source_model>adminhtml/system_config_source_yesno</source_model>
99
- <sort_order>8</sort_order>
100
  <show_in_default>1</show_in_default>
101
  <show_in_website>1</show_in_website>
102
  <show_in_store>1</show_in_store>
@@ -106,7 +118,7 @@
106
  <comment>
107
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een geslaagde betaling]]></comment>
108
  <frontend_type>text</frontend_type>
109
- <sort_order>9</sort_order>
110
  <show_in_default>1</show_in_default>
111
  <show_in_website>1</show_in_website>
112
  <show_in_store>1</show_in_store>
@@ -116,7 +128,7 @@
116
  <comment>
117
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden wanneer de betaalstatus nog pending is (bijv. bij paypal komt de statusupdate later)]]></comment>
118
  <frontend_type>text</frontend_type>
119
- <sort_order>10</sort_order>
120
  <show_in_default>1</show_in_default>
121
  <show_in_website>1</show_in_website>
122
  <show_in_store>1</show_in_store>
@@ -126,7 +138,7 @@
126
  <comment>
127
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een mislukte/geannuleerde betaling]]></comment>
128
  <frontend_type>text</frontend_type>
129
- <sort_order>11</sort_order>
130
  <show_in_default>1</show_in_default>
131
  <show_in_website>1</show_in_website>
132
  <show_in_store>1</show_in_store>
@@ -137,7 +149,7 @@
137
  <![CDATA[De taalcode die naar pay.nl moet worden gestuurd, dit is van invloed op de taal van het betaalscherm en de eventuele email die naar de gebruiker wordt gestuurd door pay (bijvoorbeeld bij bankoverschrijving).]]></comment>
138
  <frontend_type>select</frontend_type>
139
  <source_model>pay_payment/source_language</source_model>
140
- <sort_order>12</sort_order>
141
  <show_in_default>1</show_in_default>
142
  <show_in_website>1</show_in_website>
143
  <show_in_store>1</show_in_store>
@@ -147,7 +159,7 @@
147
  <comment><![CDATA[Icoontjes bij de betaalmethoden weergeven]]></comment>
148
  <frontend_type>select</frontend_type>
149
  <source_model>adminhtml/system_config_source_yesno</source_model>
150
- <sort_order>13</sort_order>
151
  <show_in_default>1</show_in_default>
152
  <show_in_website>1</show_in_website>
153
  <show_in_store>1</show_in_store>
@@ -157,7 +169,7 @@
157
  <comment><![CDATA[Kosten voor de betaalmethode weergeven in de checkout]]></comment>
158
  <frontend_type>select</frontend_type>
159
  <source_model>pay_payment/source_showfee</source_model>
160
- <sort_order>14</sort_order>
161
  <show_in_default>1</show_in_default>
162
  <show_in_website>1</show_in_website>
163
  <show_in_store>1</show_in_store>
@@ -168,7 +180,7 @@
168
  <![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
169
  <frontend_type>select</frontend_type>
170
  <source_model>pay_payment/source_iconsize</source_model>
171
- <sort_order>15</sort_order>
172
  <show_in_default>1</show_in_default>
173
  <show_in_website>1</show_in_website>
174
  <show_in_store>1</show_in_store>
@@ -177,7 +189,7 @@
177
  <label>Text betalingskosten</label>
178
  <comment><![CDATA[De text die wordt weergegeven bij de betalingskosten]]></comment>
179
  <frontend_type>text</frontend_type>
180
- <sort_order>16</sort_order>
181
  <show_in_default>1</show_in_default>
182
  <show_in_website>1</show_in_website>
183
  <show_in_store>1</show_in_store>
@@ -188,7 +200,7 @@
188
  <![CDATA[Gebruik de standard gateway, op <a href='http://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen]]></comment>
189
  <frontend_type>select</frontend_type>
190
  <source_model>pay_payment/source_gateway</source_model>
191
- <sort_order>17</sort_order>
192
  <show_in_default>1</show_in_default>
193
  </use_backup_api>
194
  <backup_api_url>
@@ -199,7 +211,7 @@
199
  </comment>
200
  <label>Failover gateway</label>
201
  <frontend_type>text</frontend_type>
202
- <sort_order>18</sort_order>
203
  <show_in_default>1</show_in_default>
204
  </backup_api_url>
205
  <enable_refund>
@@ -207,7 +219,7 @@
207
  <comment>Schakel dit uit indien u het rechstreeks refunden wilt uitschakelen</comment>
208
  <frontend_type>select</frontend_type>
209
  <source_model>adminhtml/system_config_source_yesno</source_model>
210
- <sort_order>19</sort_order>
211
  <show_in_default>1</show_in_default>
212
  </enable_refund>
213
  </fields>
@@ -353,6 +365,20 @@
353
  <source_model>pay_payment/source_sendmail</source_model>
354
  <config_path>payment/pay_payment_paylink/send_mail</config_path>
355
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  </fields>
357
  </pay_payment_paylink>
358
  <pay_payment_afterpay type="group" translate="label" module="pay_payment">
@@ -578,6 +604,20 @@
578
  <source_model>pay_payment/source_sendmail</source_model>
579
  <config_path>payment/pay_payment_afterpay/send_mail</config_path>
580
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  </fields>
582
  </pay_payment_afterpay>
583
  <pay_payment_afterpayem type="group" translate="label" module="pay_payment">
@@ -611,7 +651,6 @@
611
  <show_in_store>1</show_in_store>
612
  <config_path>payment/pay_payment_afterpayem/title</config_path>
613
  </title>
614
-
615
  <sort_order translate="label">
616
  <depends>
617
  <active>1</active>
@@ -804,6 +843,20 @@
804
  <source_model>pay_payment/source_sendmail</source_model>
805
  <config_path>payment/pay_payment_afterpayem/send_mail</config_path>
806
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
807
  </fields>
808
  </pay_payment_afterpayem>
809
  <pay_payment_amex type="group" translate="label" module="pay_payment">
@@ -837,7 +890,6 @@
837
  <show_in_store>1</show_in_store>
838
  <config_path>payment/pay_payment_amex/title</config_path>
839
  </title>
840
-
841
  <sort_order translate="label">
842
  <depends>
843
  <active>1</active>
@@ -1030,6 +1082,20 @@
1030
  <source_model>pay_payment/source_sendmail</source_model>
1031
  <config_path>payment/pay_payment_amex/send_mail</config_path>
1032
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1033
  </fields>
1034
  </pay_payment_amex>
1035
  <pay_payment_billink type="group" translate="label" module="pay_payment">
@@ -1063,7 +1129,6 @@
1063
  <show_in_store>1</show_in_store>
1064
  <config_path>payment/pay_payment_billink/title</config_path>
1065
  </title>
1066
-
1067
  <sort_order translate="label">
1068
  <depends>
1069
  <active>1</active>
@@ -1090,7 +1155,6 @@
1090
  <show_in_store>1</show_in_store>
1091
  <config_path>payment/pay_payment_billink/min_order_total</config_path>
1092
  </min_order_total>
1093
-
1094
  <max_order_total translate="label">
1095
  <depends>
1096
  <active>1</active>
@@ -1286,6 +1350,20 @@
1286
  <source_model>pay_payment/source_sendmail</source_model>
1287
  <config_path>payment/pay_payment_billink/send_mail</config_path>
1288
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1289
  </fields>
1290
  </pay_payment_billink>
1291
  <pay_payment_bitcoin type="group" translate="label" module="pay_payment">
@@ -1319,7 +1397,6 @@
1319
  <show_in_store>1</show_in_store>
1320
  <config_path>payment/pay_payment_bitcoin/title</config_path>
1321
  </title>
1322
-
1323
  <sort_order translate="label">
1324
  <depends>
1325
  <active>1</active>
@@ -1512,6 +1589,20 @@
1512
  <source_model>pay_payment/source_sendmail</source_model>
1513
  <config_path>payment/pay_payment_bitcoin/send_mail</config_path>
1514
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1515
  </fields>
1516
  </pay_payment_bitcoin>
1517
  <pay_payment_capayable type="group" translate="label" module="pay_payment">
@@ -1545,7 +1636,6 @@
1545
  <show_in_store>1</show_in_store>
1546
  <config_path>payment/pay_payment_capayable/title</config_path>
1547
  </title>
1548
-
1549
  <sort_order translate="label">
1550
  <depends>
1551
  <active>1</active>
@@ -1738,6 +1828,20 @@
1738
  <source_model>pay_payment/source_sendmail</source_model>
1739
  <config_path>payment/pay_payment_capayable/send_mail</config_path>
1740
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1741
  </fields>
1742
  </pay_payment_capayable>
1743
  <pay_payment_capayablegespreid type="group" translate="label" module="pay_payment">
@@ -1772,7 +1876,6 @@
1772
  <show_in_store>1</show_in_store>
1773
  <config_path>payment/pay_payment_capayablegespreid/title</config_path>
1774
  </title>
1775
-
1776
  <sort_order translate="label">
1777
  <depends>
1778
  <active>1</active>
@@ -1965,6 +2068,20 @@
1965
  <source_model>pay_payment/source_sendmail</source_model>
1966
  <config_path>payment/pay_payment_capayablegespreid/send_mail</config_path>
1967
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1968
  </fields>
1969
  </pay_payment_capayablegespreid>
1970
  <pay_payment_cartebleue type="group" translate="label" module="pay_payment">
@@ -1998,7 +2115,6 @@
1998
  <show_in_store>1</show_in_store>
1999
  <config_path>payment/pay_payment_cartebleue/title</config_path>
2000
  </title>
2001
-
2002
  <sort_order translate="label">
2003
  <depends>
2004
  <active>1</active>
@@ -2191,6 +2307,20 @@
2191
  <source_model>pay_payment/source_sendmail</source_model>
2192
  <config_path>payment/pay_payment_cartebleue/send_mail</config_path>
2193
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2194
  </fields>
2195
  </pay_payment_cartebleue>
2196
  <pay_payment_fashioncheque type="group" translate="label" module="pay_payment">
@@ -2224,7 +2354,6 @@
2224
  <show_in_store>1</show_in_store>
2225
  <config_path>payment/pay_payment_fashioncheque/title</config_path>
2226
  </title>
2227
-
2228
  <sort_order translate="label">
2229
  <depends>
2230
  <active>1</active>
@@ -2417,6 +2546,20 @@
2417
  <source_model>pay_payment/source_sendmail</source_model>
2418
  <config_path>payment/pay_payment_fashioncheque/send_mail</config_path>
2419
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2420
  </fields>
2421
  </pay_payment_fashioncheque>
2422
  <pay_payment_focum type="group" translate="label" module="pay_payment">
@@ -2450,7 +2593,6 @@
2450
  <show_in_store>1</show_in_store>
2451
  <config_path>payment/pay_payment_focum/title</config_path>
2452
  </title>
2453
-
2454
  <sort_order translate="label">
2455
  <depends>
2456
  <active>1</active>
@@ -2643,6 +2785,20 @@
2643
  <source_model>pay_payment/source_sendmail</source_model>
2644
  <config_path>payment/pay_payment_focum/send_mail</config_path>
2645
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2646
  </fields>
2647
  </pay_payment_focum>
2648
  <pay_payment_gezondheidsbon type="group" translate="label" module="pay_payment">
@@ -2676,7 +2832,6 @@
2676
  <show_in_store>1</show_in_store>
2677
  <config_path>payment/pay_payment_gezondheidsbon/title</config_path>
2678
  </title>
2679
-
2680
  <sort_order translate="label">
2681
  <depends>
2682
  <active>1</active>
@@ -2869,6 +3024,20 @@
2869
  <source_model>pay_payment/source_sendmail</source_model>
2870
  <config_path>payment/pay_payment_gezondheidsbon/send_mail</config_path>
2871
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2872
  </fields>
2873
  </pay_payment_gezondheidsbon>
2874
  <pay_payment_giropay type="group" translate="label" module="pay_payment">
@@ -2902,7 +3071,6 @@
2902
  <show_in_store>1</show_in_store>
2903
  <config_path>payment/pay_payment_giropay/title</config_path>
2904
  </title>
2905
-
2906
  <sort_order translate="label">
2907
  <depends>
2908
  <active>1</active>
@@ -3095,6 +3263,20 @@
3095
  <source_model>pay_payment/source_sendmail</source_model>
3096
  <config_path>payment/pay_payment_giropay/send_mail</config_path>
3097
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  </fields>
3099
  </pay_payment_giropay>
3100
  <pay_payment_givacard type="group" translate="label" module="pay_payment">
@@ -3128,7 +3310,6 @@
3128
  <show_in_store>1</show_in_store>
3129
  <config_path>payment/pay_payment_givacard/title</config_path>
3130
  </title>
3131
-
3132
  <sort_order translate="label">
3133
  <depends>
3134
  <active>1</active>
@@ -3321,6 +3502,20 @@
3321
  <source_model>pay_payment/source_sendmail</source_model>
3322
  <config_path>payment/pay_payment_givacard/send_mail</config_path>
3323
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3324
  </fields>
3325
  </pay_payment_givacard>
3326
  <pay_payment_ideal type="group" translate="label" module="pay_payment">
@@ -3342,7 +3537,6 @@
3342
  <source_model>pay_payment/source_paymentmethod_ideal_active</source_model>
3343
  <config_path>payment/pay_payment_ideal/active</config_path>
3344
  </active>
3345
-
3346
  <title translate="label">
3347
  <depends>
3348
  <active>1</active>
@@ -3577,6 +3771,20 @@
3577
  <source_model>pay_payment/source_sendmail</source_model>
3578
  <config_path>payment/pay_payment_ideal/send_mail</config_path>
3579
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3580
  </fields>
3581
  </pay_payment_ideal>
3582
  <pay_payment_incasso type="group" translate="label" module="pay_payment">
@@ -3610,7 +3818,6 @@
3610
  <show_in_store>1</show_in_store>
3611
  <config_path>payment/pay_payment_incasso/title</config_path>
3612
  </title>
3613
-
3614
  <sort_order translate="label">
3615
  <depends>
3616
  <active>1</active>
@@ -3803,6 +4010,20 @@
3803
  <source_model>pay_payment/source_sendmail</source_model>
3804
  <config_path>payment/pay_payment_incasso/send_mail</config_path>
3805
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3806
  </fields>
3807
  </pay_payment_incasso>
3808
  <pay_payment_instore type="group" translate="label" module="pay_payment">
@@ -3850,7 +4071,6 @@
3850
  <show_in_store>1</show_in_store>
3851
  <config_path>payment/pay_payment_instore/title</config_path>
3852
  </title>
3853
-
3854
  <sort_order translate="label">
3855
  <depends>
3856
  <active>1</active>
@@ -4043,6 +4263,20 @@
4043
  <source_model>pay_payment/source_sendmail</source_model>
4044
  <config_path>payment/pay_payment_instore/send_mail</config_path>
4045
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4046
  </fields>
4047
  </pay_payment_instore>
4048
  <pay_payment_klarna type="group" translate="label" module="pay_payment">
@@ -4268,6 +4502,20 @@
4268
  <source_model>pay_payment/source_sendmail</source_model>
4269
  <config_path>payment/pay_payment_klarna/send_mail</config_path>
4270
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4271
  </fields>
4272
  </pay_payment_klarna>
4273
  <pay_payment_maestro type="group" translate="label" module="pay_payment">
@@ -4301,7 +4549,6 @@
4301
  <show_in_store>1</show_in_store>
4302
  <config_path>payment/pay_payment_maestro/title</config_path>
4303
  </title>
4304
-
4305
  <sort_order translate="label">
4306
  <depends>
4307
  <active>1</active>
@@ -4494,6 +4741,20 @@
4494
  <source_model>pay_payment/source_sendmail</source_model>
4495
  <config_path>payment/pay_payment_maestro/send_mail</config_path>
4496
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4497
  </fields>
4498
  </pay_payment_maestro>
4499
  <pay_payment_mistercash type="group" translate="label" module="pay_payment">
@@ -4527,7 +4788,6 @@
4527
  <show_in_store>1</show_in_store>
4528
  <config_path>payment/pay_payment_mistercash/title</config_path>
4529
  </title>
4530
-
4531
  <sort_order translate="label">
4532
  <depends>
4533
  <active>1</active>
@@ -4720,6 +4980,20 @@
4720
  <source_model>pay_payment/source_sendmail</source_model>
4721
  <config_path>payment/pay_payment_mistercash/send_mail</config_path>
4722
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4723
  </fields>
4724
  </pay_payment_mistercash>
4725
  <pay_payment_mybank type="group" translate="label" module="pay_payment">
@@ -4753,7 +5027,6 @@
4753
  <show_in_store>1</show_in_store>
4754
  <config_path>payment/pay_payment_mybank/title</config_path>
4755
  </title>
4756
-
4757
  <sort_order translate="label">
4758
  <depends>
4759
  <active>1</active>
@@ -4946,6 +5219,20 @@
4946
  <source_model>pay_payment/source_sendmail</source_model>
4947
  <config_path>payment/pay_payment_mybank/send_mail</config_path>
4948
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4949
  </fields>
4950
  </pay_payment_mybank>
4951
  <pay_payment_overboeking type="group" translate="label" module="pay_payment">
@@ -4979,7 +5266,6 @@
4979
  <show_in_store>1</show_in_store>
4980
  <config_path>payment/pay_payment_overboeking/title</config_path>
4981
  </title>
4982
-
4983
  <sort_order translate="label">
4984
  <depends>
4985
  <active>1</active>
@@ -5172,6 +5458,20 @@
5172
  <source_model>pay_payment/source_sendmail</source_model>
5173
  <config_path>payment/pay_payment_overboeking/send_mail</config_path>
5174
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5175
  </fields>
5176
  </pay_payment_overboeking>
5177
  <pay_payment_paypal type="group" translate="label" module="pay_payment">
@@ -5205,7 +5505,6 @@
5205
  <show_in_store>1</show_in_store>
5206
  <config_path>payment/pay_payment_paypal/title</config_path>
5207
  </title>
5208
-
5209
  <sort_order translate="label">
5210
  <depends>
5211
  <active>1</active>
@@ -5398,6 +5697,20 @@
5398
  <source_model>pay_payment/source_sendmail</source_model>
5399
  <config_path>payment/pay_payment_paypal/send_mail</config_path>
5400
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5401
  </fields>
5402
  </pay_payment_paypal>
5403
  <pay_payment_paysafecard type="group" translate="label" module="pay_payment">
@@ -5431,7 +5744,6 @@
5431
  <show_in_store>1</show_in_store>
5432
  <config_path>payment/pay_payment_paysafecard/title</config_path>
5433
  </title>
5434
-
5435
  <sort_order translate="label">
5436
  <depends>
5437
  <active>1</active>
@@ -5624,6 +5936,20 @@
5624
  <source_model>pay_payment/source_sendmail</source_model>
5625
  <config_path>payment/pay_payment_paysafecard/send_mail</config_path>
5626
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5627
  </fields>
5628
  </pay_payment_paysafecard>
5629
  <pay_payment_podiumkadokaart type="group" translate="label" module="pay_payment">
@@ -5657,7 +5983,6 @@
5657
  <show_in_store>1</show_in_store>
5658
  <config_path>payment/pay_payment_podiumkadokaart/title</config_path>
5659
  </title>
5660
-
5661
  <sort_order translate="label">
5662
  <depends>
5663
  <active>1</active>
@@ -5850,6 +6175,20 @@
5850
  <source_model>pay_payment/source_sendmail</source_model>
5851
  <config_path>payment/pay_payment_podiumkadokaart/send_mail</config_path>
5852
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5853
  </fields>
5854
  </pay_payment_podiumkadokaart>
5855
  <pay_payment_postepay type="group" translate="label" module="pay_payment">
@@ -5883,7 +6222,6 @@
5883
  <show_in_store>1</show_in_store>
5884
  <config_path>payment/pay_payment_postepay/title</config_path>
5885
  </title>
5886
-
5887
  <sort_order translate="label">
5888
  <depends>
5889
  <active>1</active>
@@ -6076,6 +6414,20 @@
6076
  <source_model>pay_payment/source_sendmail</source_model>
6077
  <config_path>payment/pay_payment_postepay/send_mail</config_path>
6078
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6079
  </fields>
6080
  </pay_payment_postepay>
6081
  <pay_payment_sofortbanking type="group" translate="label" module="pay_payment">
@@ -6109,7 +6461,6 @@
6109
  <show_in_store>1</show_in_store>
6110
  <config_path>payment/pay_payment_sofortbanking/title</config_path>
6111
  </title>
6112
-
6113
  <sort_order translate="label">
6114
  <depends>
6115
  <active>1</active>
@@ -6302,6 +6653,20 @@
6302
  <source_model>pay_payment/source_sendmail</source_model>
6303
  <config_path>payment/pay_payment_sofortbanking/send_mail</config_path>
6304
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6305
  </fields>
6306
  </pay_payment_sofortbanking>
6307
  <pay_payment_telefoon type="group" translate="label" module="pay_payment">
@@ -6335,7 +6700,6 @@
6335
  <show_in_store>1</show_in_store>
6336
  <config_path>payment/pay_payment_telefoon/title</config_path>
6337
  </title>
6338
-
6339
  <sort_order translate="label">
6340
  <depends>
6341
  <active>1</active>
@@ -6528,6 +6892,20 @@
6528
  <source_model>pay_payment/source_sendmail</source_model>
6529
  <config_path>payment/pay_payment_telefoon/send_mail</config_path>
6530
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6531
  </fields>
6532
  </pay_payment_telefoon>
6533
  <pay_payment_visamastercard type="group" translate="label" module="pay_payment">
@@ -6561,7 +6939,6 @@
6561
  <show_in_store>1</show_in_store>
6562
  <config_path>payment/pay_payment_visamastercard/title</config_path>
6563
  </title>
6564
-
6565
  <sort_order translate="label">
6566
  <depends>
6567
  <active>1</active>
@@ -6754,6 +7131,20 @@
6754
  <source_model>pay_payment/source_sendmail</source_model>
6755
  <config_path>payment/pay_payment_visamastercard/send_mail</config_path>
6756
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6757
  </fields>
6758
  </pay_payment_visamastercard>
6759
  <pay_payment_vvvgiftcard type="group" translate="label" module="pay_payment">
@@ -6979,6 +7370,20 @@
6979
  <source_model>pay_payment/source_sendmail</source_model>
6980
  <config_path>payment/pay_payment_vvvgiftcard/send_mail</config_path>
6981
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6982
  </fields>
6983
  </pay_payment_vvvgiftcard>
6984
  <pay_payment_webshopgiftcard type="group" translate="label" module="pay_payment">
@@ -7012,7 +7417,6 @@
7012
  <show_in_store>1</show_in_store>
7013
  <config_path>payment/pay_payment_webshopgiftcard/title</config_path>
7014
  </title>
7015
-
7016
  <sort_order translate="label">
7017
  <depends>
7018
  <active>1</active>
@@ -7205,6 +7609,20 @@
7205
  <source_model>pay_payment/source_sendmail</source_model>
7206
  <config_path>payment/pay_payment_webshopgiftcard/send_mail</config_path>
7207
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7208
  </fields>
7209
  </pay_payment_webshopgiftcard>
7210
  <pay_payment_wijncadeau type="group" translate="label" module="pay_payment">
@@ -7238,7 +7656,6 @@
7238
  <show_in_store>1</show_in_store>
7239
  <config_path>payment/pay_payment_wijncadeau/title</config_path>
7240
  </title>
7241
-
7242
  <sort_order translate="label">
7243
  <depends>
7244
  <active>1</active>
@@ -7431,6 +7848,20 @@
7431
  <source_model>pay_payment/source_sendmail</source_model>
7432
  <config_path>payment/pay_payment_wijncadeau/send_mail</config_path>
7433
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7434
  </fields>
7435
  </pay_payment_wijncadeau>
7436
  <pay_payment_yehhpay type="group" translate="label" module="pay_payment">
@@ -7464,7 +7895,6 @@
7464
  <show_in_store>1</show_in_store>
7465
  <config_path>payment/pay_payment_yehhpay/title</config_path>
7466
  </title>
7467
-
7468
  <sort_order translate="label">
7469
  <depends>
7470
  <active>1</active>
@@ -7657,6 +8087,20 @@
7657
  <source_model>pay_payment/source_sendmail</source_model>
7658
  <config_path>payment/pay_payment_yehhpay/send_mail</config_path>
7659
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7660
  </fields>
7661
  </pay_payment_yehhpay>
7662
  <pay_payment_yourgift type="group" translate="label" module="pay_payment">
@@ -7690,7 +8134,6 @@
7690
  <show_in_store>1</show_in_store>
7691
  <config_path>payment/pay_payment_yourgift/title</config_path>
7692
  </title>
7693
-
7694
  <sort_order translate="label">
7695
  <depends>
7696
  <active>1</active>
@@ -7883,6 +8326,20 @@
7883
  <source_model>pay_payment/source_sendmail</source_model>
7884
  <config_path>payment/pay_payment_yourgift/send_mail</config_path>
7885
  </send_mail>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7886
  </fields>
7887
  </pay_payment_yourgift>
7888
  </groups>
48
  <show_in_website>1</show_in_website>
49
  <show_in_store>1</show_in_store>
50
  </serviceid>
51
+ <testmode translate="label comment">
52
+ <label>Testmode</label>
53
+ <comment>
54
+ <![CDATA[Schakel in om alle betalingen in testmode te starten. Je kunt de betaling vervolgens bevestigen met je apitoken]]>
55
+ </comment>
56
+ <frontend_type>select</frontend_type>
57
+ <source_model>adminhtml/system_config_source_yesno</source_model>
58
+ <sort_order>4</sort_order>
59
+ <show_in_default>1</show_in_default>
60
+ <show_in_website>1</show_in_website>
61
+ <show_in_store>1</show_in_store>
62
+ </testmode>
63
  <auto_invoice translate="label comment">
64
  <label>Automatisch factureren</label>
65
  <comment>
66
  <![CDATA[Betaalde orders automatisch factureren, LET OP! Als dit op NEE staat kun je orders ook niet refunden]]></comment>
67
  <frontend_type>select</frontend_type>
68
  <source_model>adminhtml/system_config_source_yesno</source_model>
69
+ <sort_order>5</sort_order>
70
  <show_in_default>1</show_in_default>
71
  <show_in_website>1</show_in_website>
72
  <show_in_store>1</show_in_store>
76
  <comment><![CDATA[Een email sturen met de factuur]]></comment>
77
  <frontend_type>select</frontend_type>
78
  <source_model>adminhtml/system_config_source_yesno</source_model>
79
+ <sort_order>6</sort_order>
80
  <show_in_default>1</show_in_default>
81
  <show_in_website>1</show_in_website>
82
  <show_in_store>1</show_in_store>
86
  <comment><![CDATA[Updates sturen wanner de status van de order wijzigt]]></comment>
87
  <frontend_type>select</frontend_type>
88
  <source_model>adminhtml/system_config_source_yesno</source_model>
89
+ <sort_order>7</sort_order>
90
  <show_in_default>1</show_in_default>
91
  <show_in_website>1</show_in_website>
92
  <show_in_store>1</show_in_store>
97
  <![CDATA[Klantgegeven en orderdata naar pay versturen, verplicht indien u gebruik maakt van een achteraf betaalmethode, of wanneer u gebruik wilt maken van Second Chance]]></comment>
98
  <frontend_type>select</frontend_type>
99
  <source_model>adminhtml/system_config_source_yesno</source_model>
100
+ <sort_order>8</sort_order>
101
  <show_in_default>1</show_in_default>
102
  <show_in_website>1</show_in_website>
103
  <show_in_store>1</show_in_store>
108
  <![CDATA[Geef aan of u wilt dat de winkelwagen weer wordt gevuld met de producten die waren besteld als de gebruiker op het betaalscherm op annuleren heeft geklikt]]></comment>
109
  <frontend_type>select</frontend_type>
110
  <source_model>adminhtml/system_config_source_yesno</source_model>
111
+ <sort_order>9</sort_order>
112
  <show_in_default>1</show_in_default>
113
  <show_in_website>1</show_in_website>
114
  <show_in_store>1</show_in_store>
118
  <comment>
119
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een geslaagde betaling]]></comment>
120
  <frontend_type>text</frontend_type>
121
+ <sort_order>10</sort_order>
122
  <show_in_default>1</show_in_default>
123
  <show_in_website>1</show_in_website>
124
  <show_in_store>1</show_in_store>
128
  <comment>
129
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden wanneer de betaalstatus nog pending is (bijv. bij paypal komt de statusupdate later)]]></comment>
130
  <frontend_type>text</frontend_type>
131
+ <sort_order>11</sort_order>
132
  <show_in_default>1</show_in_default>
133
  <show_in_website>1</show_in_website>
134
  <show_in_store>1</show_in_store>
138
  <comment>
139
  <![CDATA[De pagina waar de gebruiker naartoe gestuurd moet worden bij een mislukte/geannuleerde betaling]]></comment>
140
  <frontend_type>text</frontend_type>
141
+ <sort_order>12</sort_order>
142
  <show_in_default>1</show_in_default>
143
  <show_in_website>1</show_in_website>
144
  <show_in_store>1</show_in_store>
149
  <![CDATA[De taalcode die naar pay.nl moet worden gestuurd, dit is van invloed op de taal van het betaalscherm en de eventuele email die naar de gebruiker wordt gestuurd door pay (bijvoorbeeld bij bankoverschrijving).]]></comment>
150
  <frontend_type>select</frontend_type>
151
  <source_model>pay_payment/source_language</source_model>
152
+ <sort_order>13</sort_order>
153
  <show_in_default>1</show_in_default>
154
  <show_in_website>1</show_in_website>
155
  <show_in_store>1</show_in_store>
159
  <comment><![CDATA[Icoontjes bij de betaalmethoden weergeven]]></comment>
160
  <frontend_type>select</frontend_type>
161
  <source_model>adminhtml/system_config_source_yesno</source_model>
162
+ <sort_order>14</sort_order>
163
  <show_in_default>1</show_in_default>
164
  <show_in_website>1</show_in_website>
165
  <show_in_store>1</show_in_store>
169
  <comment><![CDATA[Kosten voor de betaalmethode weergeven in de checkout]]></comment>
170
  <frontend_type>select</frontend_type>
171
  <source_model>pay_payment/source_showfee</source_model>
172
+ <sort_order>15</sort_order>
173
  <show_in_default>1</show_in_default>
174
  <show_in_website>1</show_in_website>
175
  <show_in_store>1</show_in_store>
180
  <![CDATA[Selecteer hoe groot de icoontjes van de betaalmethoden moeten zijn]]></comment>
181
  <frontend_type>select</frontend_type>
182
  <source_model>pay_payment/source_iconsize</source_model>
183
+ <sort_order>16</sort_order>
184
  <show_in_default>1</show_in_default>
185
  <show_in_website>1</show_in_website>
186
  <show_in_store>1</show_in_store>
189
  <label>Text betalingskosten</label>
190
  <comment><![CDATA[De text die wordt weergegeven bij de betalingskosten]]></comment>
191
  <frontend_type>text</frontend_type>
192
+ <sort_order>17</sort_order>
193
  <show_in_default>1</show_in_default>
194
  <show_in_website>1</show_in_website>
195
  <show_in_store>1</show_in_store>
200
  <![CDATA[Gebruik de standard gateway, op <a href='http://status-pay.nl'>status-pay.nl</a> kunt u de status van onze techniek volgen]]></comment>
201
  <frontend_type>select</frontend_type>
202
  <source_model>pay_payment/source_gateway</source_model>
203
+ <sort_order>18</sort_order>
204
  <show_in_default>1</show_in_default>
205
  </use_backup_api>
206
  <backup_api_url>
211
  </comment>
212
  <label>Failover gateway</label>
213
  <frontend_type>text</frontend_type>
214
+ <sort_order>19</sort_order>
215
  <show_in_default>1</show_in_default>
216
  </backup_api_url>
217
  <enable_refund>
219
  <comment>Schakel dit uit indien u het rechstreeks refunden wilt uitschakelen</comment>
220
  <frontend_type>select</frontend_type>
221
  <source_model>adminhtml/system_config_source_yesno</source_model>
222
+ <sort_order>20</sort_order>
223
  <show_in_default>1</show_in_default>
224
  </enable_refund>
225
  </fields>
365
  <source_model>pay_payment/source_sendmail</source_model>
366
  <config_path>payment/pay_payment_paylink/send_mail</config_path>
367
  </send_mail>
368
+ <invoice_email translate="label comment">
369
+ <depends>
370
+ <active>1</active>
371
+ </depends>
372
+ <label>Emailen bij factureren</label>
373
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
374
+ <frontend_type>select</frontend_type>
375
+ <source_model>adminhtml/system_config_source_yesno</source_model>
376
+ <sort_order>400</sort_order>
377
+ <show_in_default>1</show_in_default>
378
+ <show_in_website>1</show_in_website>
379
+ <show_in_store>1</show_in_store>
380
+ <config_path>payment/pay_payment_paylink/invoice_email</config_path>
381
+ </invoice_email>
382
  </fields>
383
  </pay_payment_paylink>
384
  <pay_payment_afterpay type="group" translate="label" module="pay_payment">
604
  <source_model>pay_payment/source_sendmail</source_model>
605
  <config_path>payment/pay_payment_afterpay/send_mail</config_path>
606
  </send_mail>
607
+ <invoice_email translate="label comment">
608
+ <depends>
609
+ <active>1</active>
610
+ </depends>
611
+ <label>Emailen bij factureren</label>
612
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
613
+ <frontend_type>select</frontend_type>
614
+ <source_model>adminhtml/system_config_source_yesno</source_model>
615
+ <sort_order>400</sort_order>
616
+ <show_in_default>1</show_in_default>
617
+ <show_in_website>1</show_in_website>
618
+ <show_in_store>1</show_in_store>
619
+ <config_path>payment/pay_payment_afterpay/invoice_email</config_path>
620
+ </invoice_email>
621
  </fields>
622
  </pay_payment_afterpay>
623
  <pay_payment_afterpayem type="group" translate="label" module="pay_payment">
651
  <show_in_store>1</show_in_store>
652
  <config_path>payment/pay_payment_afterpayem/title</config_path>
653
  </title>
 
654
  <sort_order translate="label">
655
  <depends>
656
  <active>1</active>
843
  <source_model>pay_payment/source_sendmail</source_model>
844
  <config_path>payment/pay_payment_afterpayem/send_mail</config_path>
845
  </send_mail>
846
+ <invoice_email translate="label comment">
847
+ <depends>
848
+ <active>1</active>
849
+ </depends>
850
+ <label>Emailen bij factureren</label>
851
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
852
+ <frontend_type>select</frontend_type>
853
+ <source_model>adminhtml/system_config_source_yesno</source_model>
854
+ <sort_order>400</sort_order>
855
+ <show_in_default>1</show_in_default>
856
+ <show_in_website>1</show_in_website>
857
+ <show_in_store>1</show_in_store>
858
+ <config_path>payment/pay_payment_afterpayem/invoice_email</config_path>
859
+ </invoice_email>
860
  </fields>
861
  </pay_payment_afterpayem>
862
  <pay_payment_amex type="group" translate="label" module="pay_payment">
890
  <show_in_store>1</show_in_store>
891
  <config_path>payment/pay_payment_amex/title</config_path>
892
  </title>
 
893
  <sort_order translate="label">
894
  <depends>
895
  <active>1</active>
1082
  <source_model>pay_payment/source_sendmail</source_model>
1083
  <config_path>payment/pay_payment_amex/send_mail</config_path>
1084
  </send_mail>
1085
+ <invoice_email translate="label comment">
1086
+ <depends>
1087
+ <active>1</active>
1088
+ </depends>
1089
+ <label>Emailen bij factureren</label>
1090
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
1091
+ <frontend_type>select</frontend_type>
1092
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1093
+ <sort_order>400</sort_order>
1094
+ <show_in_default>1</show_in_default>
1095
+ <show_in_website>1</show_in_website>
1096
+ <show_in_store>1</show_in_store>
1097
+ <config_path>payment/pay_payment_amex/invoice_email</config_path>
1098
+ </invoice_email>
1099
  </fields>
1100
  </pay_payment_amex>
1101
  <pay_payment_billink type="group" translate="label" module="pay_payment">
1129
  <show_in_store>1</show_in_store>
1130
  <config_path>payment/pay_payment_billink/title</config_path>
1131
  </title>
 
1132
  <sort_order translate="label">
1133
  <depends>
1134
  <active>1</active>
1155
  <show_in_store>1</show_in_store>
1156
  <config_path>payment/pay_payment_billink/min_order_total</config_path>
1157
  </min_order_total>
 
1158
  <max_order_total translate="label">
1159
  <depends>
1160
  <active>1</active>
1350
  <source_model>pay_payment/source_sendmail</source_model>
1351
  <config_path>payment/pay_payment_billink/send_mail</config_path>
1352
  </send_mail>
1353
+ <invoice_email translate="label comment">
1354
+ <depends>
1355
+ <active>1</active>
1356
+ </depends>
1357
+ <label>Emailen bij factureren</label>
1358
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
1359
+ <frontend_type>select</frontend_type>
1360
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1361
+ <sort_order>400</sort_order>
1362
+ <show_in_default>1</show_in_default>
1363
+ <show_in_website>1</show_in_website>
1364
+ <show_in_store>1</show_in_store>
1365
+ <config_path>payment/pay_payment_billink/invoice_email</config_path>
1366
+ </invoice_email>
1367
  </fields>
1368
  </pay_payment_billink>
1369
  <pay_payment_bitcoin type="group" translate="label" module="pay_payment">
1397
  <show_in_store>1</show_in_store>
1398
  <config_path>payment/pay_payment_bitcoin/title</config_path>
1399
  </title>
 
1400
  <sort_order translate="label">
1401
  <depends>
1402
  <active>1</active>
1589
  <source_model>pay_payment/source_sendmail</source_model>
1590
  <config_path>payment/pay_payment_bitcoin/send_mail</config_path>
1591
  </send_mail>
1592
+ <invoice_email translate="label comment">
1593
+ <depends>
1594
+ <active>1</active>
1595
+ </depends>
1596
+ <label>Emailen bij factureren</label>
1597
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
1598
+ <frontend_type>select</frontend_type>
1599
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1600
+ <sort_order>400</sort_order>
1601
+ <show_in_default>1</show_in_default>
1602
+ <show_in_website>1</show_in_website>
1603
+ <show_in_store>1</show_in_store>
1604
+ <config_path>payment/pay_payment_bitcoin/invoice_email</config_path>
1605
+ </invoice_email>
1606
  </fields>
1607
  </pay_payment_bitcoin>
1608
  <pay_payment_capayable type="group" translate="label" module="pay_payment">
1636
  <show_in_store>1</show_in_store>
1637
  <config_path>payment/pay_payment_capayable/title</config_path>
1638
  </title>
 
1639
  <sort_order translate="label">
1640
  <depends>
1641
  <active>1</active>
1828
  <source_model>pay_payment/source_sendmail</source_model>
1829
  <config_path>payment/pay_payment_capayable/send_mail</config_path>
1830
  </send_mail>
1831
+ <invoice_email translate="label comment">
1832
+ <depends>
1833
+ <active>1</active>
1834
+ </depends>
1835
+ <label>Emailen bij factureren</label>
1836
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
1837
+ <frontend_type>select</frontend_type>
1838
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1839
+ <sort_order>400</sort_order>
1840
+ <show_in_default>1</show_in_default>
1841
+ <show_in_website>1</show_in_website>
1842
+ <show_in_store>1</show_in_store>
1843
+ <config_path>payment/pay_payment_capayable/invoice_email</config_path>
1844
+ </invoice_email>
1845
  </fields>
1846
  </pay_payment_capayable>
1847
  <pay_payment_capayablegespreid type="group" translate="label" module="pay_payment">
1876
  <show_in_store>1</show_in_store>
1877
  <config_path>payment/pay_payment_capayablegespreid/title</config_path>
1878
  </title>
 
1879
  <sort_order translate="label">
1880
  <depends>
1881
  <active>1</active>
2068
  <source_model>pay_payment/source_sendmail</source_model>
2069
  <config_path>payment/pay_payment_capayablegespreid/send_mail</config_path>
2070
  </send_mail>
2071
+ <invoice_email translate="label comment">
2072
+ <depends>
2073
+ <active>1</active>
2074
+ </depends>
2075
+ <label>Emailen bij factureren</label>
2076
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
2077
+ <frontend_type>select</frontend_type>
2078
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2079
+ <sort_order>400</sort_order>
2080
+ <show_in_default>1</show_in_default>
2081
+ <show_in_website>1</show_in_website>
2082
+ <show_in_store>1</show_in_store>
2083
+ <config_path>payment/pay_payment_capayablegespreid/invoice_email</config_path>
2084
+ </invoice_email>
2085
  </fields>
2086
  </pay_payment_capayablegespreid>
2087
  <pay_payment_cartebleue type="group" translate="label" module="pay_payment">
2115
  <show_in_store>1</show_in_store>
2116
  <config_path>payment/pay_payment_cartebleue/title</config_path>
2117
  </title>
 
2118
  <sort_order translate="label">
2119
  <depends>
2120
  <active>1</active>
2307
  <source_model>pay_payment/source_sendmail</source_model>
2308
  <config_path>payment/pay_payment_cartebleue/send_mail</config_path>
2309
  </send_mail>
2310
+ <invoice_email translate="label comment">
2311
+ <depends>
2312
+ <active>1</active>
2313
+ </depends>
2314
+ <label>Emailen bij factureren</label>
2315
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
2316
+ <frontend_type>select</frontend_type>
2317
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2318
+ <sort_order>400</sort_order>
2319
+ <show_in_default>1</show_in_default>
2320
+ <show_in_website>1</show_in_website>
2321
+ <show_in_store>1</show_in_store>
2322
+ <config_path>payment/pay_payment_cartebleue/invoice_email</config_path>
2323
+ </invoice_email>
2324
  </fields>
2325
  </pay_payment_cartebleue>
2326
  <pay_payment_fashioncheque type="group" translate="label" module="pay_payment">
2354
  <show_in_store>1</show_in_store>
2355
  <config_path>payment/pay_payment_fashioncheque/title</config_path>
2356
  </title>
 
2357
  <sort_order translate="label">
2358
  <depends>
2359
  <active>1</active>
2546
  <source_model>pay_payment/source_sendmail</source_model>
2547
  <config_path>payment/pay_payment_fashioncheque/send_mail</config_path>
2548
  </send_mail>
2549
+ <invoice_email translate="label comment">
2550
+ <depends>
2551
+ <active>1</active>
2552
+ </depends>
2553
+ <label>Emailen bij factureren</label>
2554
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
2555
+ <frontend_type>select</frontend_type>
2556
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2557
+ <sort_order>400</sort_order>
2558
+ <show_in_default>1</show_in_default>
2559
+ <show_in_website>1</show_in_website>
2560
+ <show_in_store>1</show_in_store>
2561
+ <config_path>payment/pay_payment_fashioncheque/invoice_email</config_path>
2562
+ </invoice_email>
2563
  </fields>
2564
  </pay_payment_fashioncheque>
2565
  <pay_payment_focum type="group" translate="label" module="pay_payment">
2593
  <show_in_store>1</show_in_store>
2594
  <config_path>payment/pay_payment_focum/title</config_path>
2595
  </title>
 
2596
  <sort_order translate="label">
2597
  <depends>
2598
  <active>1</active>
2785
  <source_model>pay_payment/source_sendmail</source_model>
2786
  <config_path>payment/pay_payment_focum/send_mail</config_path>
2787
  </send_mail>
2788
+ <invoice_email translate="label comment">
2789
+ <depends>
2790
+ <active>1</active>
2791
+ </depends>
2792
+ <label>Emailen bij factureren</label>
2793
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
2794
+ <frontend_type>select</frontend_type>
2795
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2796
+ <sort_order>400</sort_order>
2797
+ <show_in_default>1</show_in_default>
2798
+ <show_in_website>1</show_in_website>
2799
+ <show_in_store>1</show_in_store>
2800
+ <config_path>payment/pay_payment_focum/invoice_email</config_path>
2801
+ </invoice_email>
2802
  </fields>
2803
  </pay_payment_focum>
2804
  <pay_payment_gezondheidsbon type="group" translate="label" module="pay_payment">
2832
  <show_in_store>1</show_in_store>
2833
  <config_path>payment/pay_payment_gezondheidsbon/title</config_path>
2834
  </title>
 
2835
  <sort_order translate="label">
2836
  <depends>
2837
  <active>1</active>
3024
  <source_model>pay_payment/source_sendmail</source_model>
3025
  <config_path>payment/pay_payment_gezondheidsbon/send_mail</config_path>
3026
  </send_mail>
3027
+ <invoice_email translate="label comment">
3028
+ <depends>
3029
+ <active>1</active>
3030
+ </depends>
3031
+ <label>Emailen bij factureren</label>
3032
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
3033
+ <frontend_type>select</frontend_type>
3034
+ <source_model>adminhtml/system_config_source_yesno</source_model>
3035
+ <sort_order>400</sort_order>
3036
+ <show_in_default>1</show_in_default>
3037
+ <show_in_website>1</show_in_website>
3038
+ <show_in_store>1</show_in_store>
3039
+ <config_path>payment/pay_payment_gezondheidsbon/invoice_email</config_path>
3040
+ </invoice_email>
3041
  </fields>
3042
  </pay_payment_gezondheidsbon>
3043
  <pay_payment_giropay type="group" translate="label" module="pay_payment">
3071
  <show_in_store>1</show_in_store>
3072
  <config_path>payment/pay_payment_giropay/title</config_path>
3073
  </title>
 
3074
  <sort_order translate="label">
3075
  <depends>
3076
  <active>1</active>
3263
  <source_model>pay_payment/source_sendmail</source_model>
3264
  <config_path>payment/pay_payment_giropay/send_mail</config_path>
3265
  </send_mail>
3266
+ <invoice_email translate="label comment">
3267
+ <depends>
3268
+ <active>1</active>
3269
+ </depends>
3270
+ <label>Emailen bij factureren</label>
3271
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
3272
+ <frontend_type>select</frontend_type>
3273
+ <source_model>adminhtml/system_config_source_yesno</source_model>
3274
+ <sort_order>400</sort_order>
3275
+ <show_in_default>1</show_in_default>
3276
+ <show_in_website>1</show_in_website>
3277
+ <show_in_store>1</show_in_store>
3278
+ <config_path>payment/pay_payment_giropay/invoice_email</config_path>
3279
+ </invoice_email>
3280
  </fields>
3281
  </pay_payment_giropay>
3282
  <pay_payment_givacard type="group" translate="label" module="pay_payment">
3310
  <show_in_store>1</show_in_store>
3311
  <config_path>payment/pay_payment_givacard/title</config_path>
3312
  </title>
 
3313
  <sort_order translate="label">
3314
  <depends>
3315
  <active>1</active>
3502
  <source_model>pay_payment/source_sendmail</source_model>
3503
  <config_path>payment/pay_payment_givacard/send_mail</config_path>
3504
  </send_mail>
3505
+ <invoice_email translate="label comment">
3506
+ <depends>
3507
+ <active>1</active>
3508
+ </depends>
3509
+ <label>Emailen bij factureren</label>
3510
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
3511
+ <frontend_type>select</frontend_type>
3512
+ <source_model>adminhtml/system_config_source_yesno</source_model>
3513
+ <sort_order>400</sort_order>
3514
+ <show_in_default>1</show_in_default>
3515
+ <show_in_website>1</show_in_website>
3516
+ <show_in_store>1</show_in_store>
3517
+ <config_path>payment/pay_payment_givacard/invoice_email</config_path>
3518
+ </invoice_email>
3519
  </fields>
3520
  </pay_payment_givacard>
3521
  <pay_payment_ideal type="group" translate="label" module="pay_payment">
3537
  <source_model>pay_payment/source_paymentmethod_ideal_active</source_model>
3538
  <config_path>payment/pay_payment_ideal/active</config_path>
3539
  </active>
 
3540
  <title translate="label">
3541
  <depends>
3542
  <active>1</active>
3771
  <source_model>pay_payment/source_sendmail</source_model>
3772
  <config_path>payment/pay_payment_ideal/send_mail</config_path>
3773
  </send_mail>
3774
+ <invoice_email translate="label comment">
3775
+ <depends>
3776
+ <active>1</active>
3777
+ </depends>
3778
+ <label>Emailen bij factureren</label>
3779
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
3780
+ <frontend_type>select</frontend_type>
3781
+ <source_model>adminhtml/system_config_source_yesno</source_model>
3782
+ <sort_order>400</sort_order>
3783
+ <show_in_default>1</show_in_default>
3784
+ <show_in_website>1</show_in_website>
3785
+ <show_in_store>1</show_in_store>
3786
+ <config_path>payment/pay_payment_ideal/invoice_email</config_path>
3787
+ </invoice_email>
3788
  </fields>
3789
  </pay_payment_ideal>
3790
  <pay_payment_incasso type="group" translate="label" module="pay_payment">
3818
  <show_in_store>1</show_in_store>
3819
  <config_path>payment/pay_payment_incasso/title</config_path>
3820
  </title>
 
3821
  <sort_order translate="label">
3822
  <depends>
3823
  <active>1</active>
4010
  <source_model>pay_payment/source_sendmail</source_model>
4011
  <config_path>payment/pay_payment_incasso/send_mail</config_path>
4012
  </send_mail>
4013
+ <invoice_email translate="label comment">
4014
+ <depends>
4015
+ <active>1</active>
4016
+ </depends>
4017
+ <label>Emailen bij factureren</label>
4018
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
4019
+ <frontend_type>select</frontend_type>
4020
+ <source_model>adminhtml/system_config_source_yesno</source_model>
4021
+ <sort_order>400</sort_order>
4022
+ <show_in_default>1</show_in_default>
4023
+ <show_in_website>1</show_in_website>
4024
+ <show_in_store>1</show_in_store>
4025
+ <config_path>payment/pay_payment_incasso/invoice_email</config_path>
4026
+ </invoice_email>
4027
  </fields>
4028
  </pay_payment_incasso>
4029
  <pay_payment_instore type="group" translate="label" module="pay_payment">
4071
  <show_in_store>1</show_in_store>
4072
  <config_path>payment/pay_payment_instore/title</config_path>
4073
  </title>
 
4074
  <sort_order translate="label">
4075
  <depends>
4076
  <active>1</active>
4263
  <source_model>pay_payment/source_sendmail</source_model>
4264
  <config_path>payment/pay_payment_instore/send_mail</config_path>
4265
  </send_mail>
4266
+ <invoice_email translate="label comment">
4267
+ <depends>
4268
+ <active>1</active>
4269
+ </depends>
4270
+ <label>Emailen bij factureren</label>
4271
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
4272
+ <frontend_type>select</frontend_type>
4273
+ <source_model>adminhtml/system_config_source_yesno</source_model>
4274
+ <sort_order>400</sort_order>
4275
+ <show_in_default>1</show_in_default>
4276
+ <show_in_website>1</show_in_website>
4277
+ <show_in_store>1</show_in_store>
4278
+ <config_path>payment/pay_payment_instore/invoice_email</config_path>
4279
+ </invoice_email>
4280
  </fields>
4281
  </pay_payment_instore>
4282
  <pay_payment_klarna type="group" translate="label" module="pay_payment">
4502
  <source_model>pay_payment/source_sendmail</source_model>
4503
  <config_path>payment/pay_payment_klarna/send_mail</config_path>
4504
  </send_mail>
4505
+ <invoice_email translate="label comment">
4506
+ <depends>
4507
+ <active>1</active>
4508
+ </depends>
4509
+ <label>Emailen bij factureren</label>
4510
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
4511
+ <frontend_type>select</frontend_type>
4512
+ <source_model>adminhtml/system_config_source_yesno</source_model>
4513
+ <sort_order>400</sort_order>
4514
+ <show_in_default>1</show_in_default>
4515
+ <show_in_website>1</show_in_website>
4516
+ <show_in_store>1</show_in_store>
4517
+ <config_path>payment/pay_payment_klarna/invoice_email</config_path>
4518
+ </invoice_email>
4519
  </fields>
4520
  </pay_payment_klarna>
4521
  <pay_payment_maestro type="group" translate="label" module="pay_payment">
4549
  <show_in_store>1</show_in_store>
4550
  <config_path>payment/pay_payment_maestro/title</config_path>
4551
  </title>
 
4552
  <sort_order translate="label">
4553
  <depends>
4554
  <active>1</active>
4741
  <source_model>pay_payment/source_sendmail</source_model>
4742
  <config_path>payment/pay_payment_maestro/send_mail</config_path>
4743
  </send_mail>
4744
+ <invoice_email translate="label comment">
4745
+ <depends>
4746
+ <active>1</active>
4747
+ </depends>
4748
+ <label>Emailen bij factureren</label>
4749
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
4750
+ <frontend_type>select</frontend_type>
4751
+ <source_model>adminhtml/system_config_source_yesno</source_model>
4752
+ <sort_order>400</sort_order>
4753
+ <show_in_default>1</show_in_default>
4754
+ <show_in_website>1</show_in_website>
4755
+ <show_in_store>1</show_in_store>
4756
+ <config_path>payment/pay_payment_maestro/invoice_email</config_path>
4757
+ </invoice_email>
4758
  </fields>
4759
  </pay_payment_maestro>
4760
  <pay_payment_mistercash type="group" translate="label" module="pay_payment">
4788
  <show_in_store>1</show_in_store>
4789
  <config_path>payment/pay_payment_mistercash/title</config_path>
4790
  </title>
 
4791
  <sort_order translate="label">
4792
  <depends>
4793
  <active>1</active>
4980
  <source_model>pay_payment/source_sendmail</source_model>
4981
  <config_path>payment/pay_payment_mistercash/send_mail</config_path>
4982
  </send_mail>
4983
+ <invoice_email translate="label comment">
4984
+ <depends>
4985
+ <active>1</active>
4986
+ </depends>
4987
+ <label>Emailen bij factureren</label>
4988
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
4989
+ <frontend_type>select</frontend_type>
4990
+ <source_model>adminhtml/system_config_source_yesno</source_model>
4991
+ <sort_order>400</sort_order>
4992
+ <show_in_default>1</show_in_default>
4993
+ <show_in_website>1</show_in_website>
4994
+ <show_in_store>1</show_in_store>
4995
+ <config_path>payment/pay_payment_mistercash/invoice_email</config_path>
4996
+ </invoice_email>
4997
  </fields>
4998
  </pay_payment_mistercash>
4999
  <pay_payment_mybank type="group" translate="label" module="pay_payment">
5027
  <show_in_store>1</show_in_store>
5028
  <config_path>payment/pay_payment_mybank/title</config_path>
5029
  </title>
 
5030
  <sort_order translate="label">
5031
  <depends>
5032
  <active>1</active>
5219
  <source_model>pay_payment/source_sendmail</source_model>
5220
  <config_path>payment/pay_payment_mybank/send_mail</config_path>
5221
  </send_mail>
5222
+ <invoice_email translate="label comment">
5223
+ <depends>
5224
+ <active>1</active>
5225
+ </depends>
5226
+ <label>Emailen bij factureren</label>
5227
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
5228
+ <frontend_type>select</frontend_type>
5229
+ <source_model>adminhtml/system_config_source_yesno</source_model>
5230
+ <sort_order>400</sort_order>
5231
+ <show_in_default>1</show_in_default>
5232
+ <show_in_website>1</show_in_website>
5233
+ <show_in_store>1</show_in_store>
5234
+ <config_path>payment/pay_payment_mybank/invoice_email</config_path>
5235
+ </invoice_email>
5236
  </fields>
5237
  </pay_payment_mybank>
5238
  <pay_payment_overboeking type="group" translate="label" module="pay_payment">
5266
  <show_in_store>1</show_in_store>
5267
  <config_path>payment/pay_payment_overboeking/title</config_path>
5268
  </title>
 
5269
  <sort_order translate="label">
5270
  <depends>
5271
  <active>1</active>
5458
  <source_model>pay_payment/source_sendmail</source_model>
5459
  <config_path>payment/pay_payment_overboeking/send_mail</config_path>
5460
  </send_mail>
5461
+ <invoice_email translate="label comment">
5462
+ <depends>
5463
+ <active>1</active>
5464
+ </depends>
5465
+ <label>Emailen bij factureren</label>
5466
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
5467
+ <frontend_type>select</frontend_type>
5468
+ <source_model>adminhtml/system_config_source_yesno</source_model>
5469
+ <sort_order>400</sort_order>
5470
+ <show_in_default>1</show_in_default>
5471
+ <show_in_website>1</show_in_website>
5472
+ <show_in_store>1</show_in_store>
5473
+ <config_path>payment/pay_payment_mybank/invoice_email</config_path>
5474
+ </invoice_email>
5475
  </fields>
5476
  </pay_payment_overboeking>
5477
  <pay_payment_paypal type="group" translate="label" module="pay_payment">
5505
  <show_in_store>1</show_in_store>
5506
  <config_path>payment/pay_payment_paypal/title</config_path>
5507
  </title>
 
5508
  <sort_order translate="label">
5509
  <depends>
5510
  <active>1</active>
5697
  <source_model>pay_payment/source_sendmail</source_model>
5698
  <config_path>payment/pay_payment_paypal/send_mail</config_path>
5699
  </send_mail>
5700
+ <invoice_email translate="label comment">
5701
+ <depends>
5702
+ <active>1</active>
5703
+ </depends>
5704
+ <label>Emailen bij factureren</label>
5705
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
5706
+ <frontend_type>select</frontend_type>
5707
+ <source_model>adminhtml/system_config_source_yesno</source_model>
5708
+ <sort_order>400</sort_order>
5709
+ <show_in_default>1</show_in_default>
5710
+ <show_in_website>1</show_in_website>
5711
+ <show_in_store>1</show_in_store>
5712
+ <config_path>payment/pay_payment_paypal/invoice_email</config_path>
5713
+ </invoice_email>
5714
  </fields>
5715
  </pay_payment_paypal>
5716
  <pay_payment_paysafecard type="group" translate="label" module="pay_payment">
5744
  <show_in_store>1</show_in_store>
5745
  <config_path>payment/pay_payment_paysafecard/title</config_path>
5746
  </title>
 
5747
  <sort_order translate="label">
5748
  <depends>
5749
  <active>1</active>
5936
  <source_model>pay_payment/source_sendmail</source_model>
5937
  <config_path>payment/pay_payment_paysafecard/send_mail</config_path>
5938
  </send_mail>
5939
+ <invoice_email translate="label comment">
5940
+ <depends>
5941
+ <active>1</active>
5942
+ </depends>
5943
+ <label>Emailen bij factureren</label>
5944
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
5945
+ <frontend_type>select</frontend_type>
5946
+ <source_model>adminhtml/system_config_source_yesno</source_model>
5947
+ <sort_order>400</sort_order>
5948
+ <show_in_default>1</show_in_default>
5949
+ <show_in_website>1</show_in_website>
5950
+ <show_in_store>1</show_in_store>
5951
+ <config_path>payment/pay_payment_paysafecard/invoice_email</config_path>
5952
+ </invoice_email>
5953
  </fields>
5954
  </pay_payment_paysafecard>
5955
  <pay_payment_podiumkadokaart type="group" translate="label" module="pay_payment">
5983
  <show_in_store>1</show_in_store>
5984
  <config_path>payment/pay_payment_podiumkadokaart/title</config_path>
5985
  </title>
 
5986
  <sort_order translate="label">
5987
  <depends>
5988
  <active>1</active>
6175
  <source_model>pay_payment/source_sendmail</source_model>
6176
  <config_path>payment/pay_payment_podiumkadokaart/send_mail</config_path>
6177
  </send_mail>
6178
+ <invoice_email translate="label comment">
6179
+ <depends>
6180
+ <active>1</active>
6181
+ </depends>
6182
+ <label>Emailen bij factureren</label>
6183
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
6184
+ <frontend_type>select</frontend_type>
6185
+ <source_model>adminhtml/system_config_source_yesno</source_model>
6186
+ <sort_order>400</sort_order>
6187
+ <show_in_default>1</show_in_default>
6188
+ <show_in_website>1</show_in_website>
6189
+ <show_in_store>1</show_in_store>
6190
+ <config_path>payment/pay_payment_podiumkadokaart/invoice_email</config_path>
6191
+ </invoice_email>
6192
  </fields>
6193
  </pay_payment_podiumkadokaart>
6194
  <pay_payment_postepay type="group" translate="label" module="pay_payment">
6222
  <show_in_store>1</show_in_store>
6223
  <config_path>payment/pay_payment_postepay/title</config_path>
6224
  </title>
 
6225
  <sort_order translate="label">
6226
  <depends>
6227
  <active>1</active>
6414
  <source_model>pay_payment/source_sendmail</source_model>
6415
  <config_path>payment/pay_payment_postepay/send_mail</config_path>
6416
  </send_mail>
6417
+ <invoice_email translate="label comment">
6418
+ <depends>
6419
+ <active>1</active>
6420
+ </depends>
6421
+ <label>Emailen bij factureren</label>
6422
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
6423
+ <frontend_type>select</frontend_type>
6424
+ <source_model>adminhtml/system_config_source_yesno</source_model>
6425
+ <sort_order>400</sort_order>
6426
+ <show_in_default>1</show_in_default>
6427
+ <show_in_website>1</show_in_website>
6428
+ <show_in_store>1</show_in_store>
6429
+ <config_path>payment/pay_payment_postepay/invoice_email</config_path>
6430
+ </invoice_email>
6431
  </fields>
6432
  </pay_payment_postepay>
6433
  <pay_payment_sofortbanking type="group" translate="label" module="pay_payment">
6461
  <show_in_store>1</show_in_store>
6462
  <config_path>payment/pay_payment_sofortbanking/title</config_path>
6463
  </title>
 
6464
  <sort_order translate="label">
6465
  <depends>
6466
  <active>1</active>
6653
  <source_model>pay_payment/source_sendmail</source_model>
6654
  <config_path>payment/pay_payment_sofortbanking/send_mail</config_path>
6655
  </send_mail>
6656
+ <invoice_email translate="label comment">
6657
+ <depends>
6658
+ <active>1</active>
6659
+ </depends>
6660
+ <label>Emailen bij factureren</label>
6661
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
6662
+ <frontend_type>select</frontend_type>
6663
+ <source_model>adminhtml/system_config_source_yesno</source_model>
6664
+ <sort_order>400</sort_order>
6665
+ <show_in_default>1</show_in_default>
6666
+ <show_in_website>1</show_in_website>
6667
+ <show_in_store>1</show_in_store>
6668
+ <config_path>payment/pay_payment_sofortbanking/invoice_email</config_path>
6669
+ </invoice_email>
6670
  </fields>
6671
  </pay_payment_sofortbanking>
6672
  <pay_payment_telefoon type="group" translate="label" module="pay_payment">
6700
  <show_in_store>1</show_in_store>
6701
  <config_path>payment/pay_payment_telefoon/title</config_path>
6702
  </title>
 
6703
  <sort_order translate="label">
6704
  <depends>
6705
  <active>1</active>
6892
  <source_model>pay_payment/source_sendmail</source_model>
6893
  <config_path>payment/pay_payment_telefoon/send_mail</config_path>
6894
  </send_mail>
6895
+ <invoice_email translate="label comment">
6896
+ <depends>
6897
+ <active>1</active>
6898
+ </depends>
6899
+ <label>Emailen bij factureren</label>
6900
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
6901
+ <frontend_type>select</frontend_type>
6902
+ <source_model>adminhtml/system_config_source_yesno</source_model>
6903
+ <sort_order>400</sort_order>
6904
+ <show_in_default>1</show_in_default>
6905
+ <show_in_website>1</show_in_website>
6906
+ <show_in_store>1</show_in_store>
6907
+ <config_path>payment/pay_payment_telefoon/invoice_email</config_path>
6908
+ </invoice_email>
6909
  </fields>
6910
  </pay_payment_telefoon>
6911
  <pay_payment_visamastercard type="group" translate="label" module="pay_payment">
6939
  <show_in_store>1</show_in_store>
6940
  <config_path>payment/pay_payment_visamastercard/title</config_path>
6941
  </title>
 
6942
  <sort_order translate="label">
6943
  <depends>
6944
  <active>1</active>
7131
  <source_model>pay_payment/source_sendmail</source_model>
7132
  <config_path>payment/pay_payment_visamastercard/send_mail</config_path>
7133
  </send_mail>
7134
+ <invoice_email translate="label comment">
7135
+ <depends>
7136
+ <active>1</active>
7137
+ </depends>
7138
+ <label>Emailen bij factureren</label>
7139
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
7140
+ <frontend_type>select</frontend_type>
7141
+ <source_model>adminhtml/system_config_source_yesno</source_model>
7142
+ <sort_order>400</sort_order>
7143
+ <show_in_default>1</show_in_default>
7144
+ <show_in_website>1</show_in_website>
7145
+ <show_in_store>1</show_in_store>
7146
+ <config_path>payment/pay_payment_visamastercard/invoice_email</config_path>
7147
+ </invoice_email>
7148
  </fields>
7149
  </pay_payment_visamastercard>
7150
  <pay_payment_vvvgiftcard type="group" translate="label" module="pay_payment">
7370
  <source_model>pay_payment/source_sendmail</source_model>
7371
  <config_path>payment/pay_payment_vvvgiftcard/send_mail</config_path>
7372
  </send_mail>
7373
+ <invoice_email translate="label comment">
7374
+ <depends>
7375
+ <active>1</active>
7376
+ </depends>
7377
+ <label>Emailen bij factureren</label>
7378
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
7379
+ <frontend_type>select</frontend_type>
7380
+ <source_model>adminhtml/system_config_source_yesno</source_model>
7381
+ <sort_order>400</sort_order>
7382
+ <show_in_default>1</show_in_default>
7383
+ <show_in_website>1</show_in_website>
7384
+ <show_in_store>1</show_in_store>
7385
+ <config_path>payment/pay_payment_vvvgiftcard/invoice_email</config_path>
7386
+ </invoice_email>
7387
  </fields>
7388
  </pay_payment_vvvgiftcard>
7389
  <pay_payment_webshopgiftcard type="group" translate="label" module="pay_payment">
7417
  <show_in_store>1</show_in_store>
7418
  <config_path>payment/pay_payment_webshopgiftcard/title</config_path>
7419
  </title>
 
7420
  <sort_order translate="label">
7421
  <depends>
7422
  <active>1</active>
7609
  <source_model>pay_payment/source_sendmail</source_model>
7610
  <config_path>payment/pay_payment_webshopgiftcard/send_mail</config_path>
7611
  </send_mail>
7612
+ <invoice_email translate="label comment">
7613
+ <depends>
7614
+ <active>1</active>
7615
+ </depends>
7616
+ <label>Emailen bij factureren</label>
7617
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
7618
+ <frontend_type>select</frontend_type>
7619
+ <source_model>adminhtml/system_config_source_yesno</source_model>
7620
+ <sort_order>400</sort_order>
7621
+ <show_in_default>1</show_in_default>
7622
+ <show_in_website>1</show_in_website>
7623
+ <show_in_store>1</show_in_store>
7624
+ <config_path>payment/pay_payment_webshopgiftcard/invoice_email</config_path>
7625
+ </invoice_email>
7626
  </fields>
7627
  </pay_payment_webshopgiftcard>
7628
  <pay_payment_wijncadeau type="group" translate="label" module="pay_payment">
7656
  <show_in_store>1</show_in_store>
7657
  <config_path>payment/pay_payment_wijncadeau/title</config_path>
7658
  </title>
 
7659
  <sort_order translate="label">
7660
  <depends>
7661
  <active>1</active>
7848
  <source_model>pay_payment/source_sendmail</source_model>
7849
  <config_path>payment/pay_payment_wijncadeau/send_mail</config_path>
7850
  </send_mail>
7851
+ <invoice_email translate="label comment">
7852
+ <depends>
7853
+ <active>1</active>
7854
+ </depends>
7855
+ <label>Emailen bij factureren</label>
7856
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
7857
+ <frontend_type>select</frontend_type>
7858
+ <source_model>adminhtml/system_config_source_yesno</source_model>
7859
+ <sort_order>400</sort_order>
7860
+ <show_in_default>1</show_in_default>
7861
+ <show_in_website>1</show_in_website>
7862
+ <show_in_store>1</show_in_store>
7863
+ <config_path>payment/pay_payment_wijncadeau/invoice_email</config_path>
7864
+ </invoice_email>
7865
  </fields>
7866
  </pay_payment_wijncadeau>
7867
  <pay_payment_yehhpay type="group" translate="label" module="pay_payment">
7895
  <show_in_store>1</show_in_store>
7896
  <config_path>payment/pay_payment_yehhpay/title</config_path>
7897
  </title>
 
7898
  <sort_order translate="label">
7899
  <depends>
7900
  <active>1</active>
8087
  <source_model>pay_payment/source_sendmail</source_model>
8088
  <config_path>payment/pay_payment_yehhpay/send_mail</config_path>
8089
  </send_mail>
8090
+ <invoice_email translate="label comment">
8091
+ <depends>
8092
+ <active>1</active>
8093
+ </depends>
8094
+ <label>Emailen bij factureren</label>
8095
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
8096
+ <frontend_type>select</frontend_type>
8097
+ <source_model>adminhtml/system_config_source_yesno</source_model>
8098
+ <sort_order>400</sort_order>
8099
+ <show_in_default>1</show_in_default>
8100
+ <show_in_website>1</show_in_website>
8101
+ <show_in_store>1</show_in_store>
8102
+ <config_path>payment/pay_payment_yehhpay/invoice_email</config_path>
8103
+ </invoice_email>
8104
  </fields>
8105
  </pay_payment_yehhpay>
8106
  <pay_payment_yourgift type="group" translate="label" module="pay_payment">
8134
  <show_in_store>1</show_in_store>
8135
  <config_path>payment/pay_payment_yourgift/title</config_path>
8136
  </title>
 
8137
  <sort_order translate="label">
8138
  <depends>
8139
  <active>1</active>
8326
  <source_model>pay_payment/source_sendmail</source_model>
8327
  <config_path>payment/pay_payment_yourgift/send_mail</config_path>
8328
  </send_mail>
8329
+ <invoice_email translate="label comment">
8330
+ <depends>
8331
+ <active>1</active>
8332
+ </depends>
8333
+ <label>Emailen bij factureren</label>
8334
+ <comment><![CDATA[Een email sturen met de factuur, LET OP: De email wordt alleen gestuurd als je bovenaan bij Algemene instellingen emailen bij factureren aan hebt staan]]></comment>
8335
+ <frontend_type>select</frontend_type>
8336
+ <source_model>adminhtml/system_config_source_yesno</source_model>
8337
+ <sort_order>400</sort_order>
8338
+ <show_in_default>1</show_in_default>
8339
+ <show_in_website>1</show_in_website>
8340
+ <show_in_store>1</show_in_store>
8341
+ <config_path>payment/pay_payment_yourgift/invoice_email</config_path>
8342
+ </invoice_email>
8343
  </fields>
8344
  </pay_payment_yourgift>
8345
  </groups>
app/code/community/Pay/Payment/sql/pay_payment_setup/{install-3.7.0.php → install-3.7.1.php} RENAMED
@@ -16,6 +16,18 @@ $installer->addAttribute('invoice', 'base_payment_charge', array('type' => 'deci
16
  $installer->addAttribute('creditmemo', 'payment_charge', array('type' => 'decimal'));
17
  $installer->addAttribute('creditmemo', 'base_payment_charge', array('type' => 'decimal'));
18
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  //create the pay_payment/option table
20
  $tableName = $installer->getTable('pay_payment/option');
21
 
16
  $installer->addAttribute('creditmemo', 'payment_charge', array('type' => 'decimal'));
17
  $installer->addAttribute('creditmemo', 'base_payment_charge', array('type' => 'decimal'));
18
 
19
+ $installer->addAttribute('quote_address', 'payment_charge_tax_amount', array('type' => 'decimal'));
20
+ $installer->addAttribute('quote_address', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
21
+
22
+ $installer->addAttribute('order', 'payment_charge_tax_amount', array('type' => 'decimal'));
23
+ $installer->addAttribute('order', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
24
+
25
+ $installer->addAttribute('invoice', 'payment_charge_tax_amount', array('type' => 'decimal'));
26
+ $installer->addAttribute('invoice', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
27
+
28
+ $installer->addAttribute('creditmemo', 'payment_charge_tax_amount', array('type' => 'decimal'));
29
+ $installer->addAttribute('creditmemo', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
30
+
31
  //create the pay_payment/option table
32
  $tableName = $installer->getTable('pay_payment/option');
33
 
app/code/community/Pay/Payment/sql/pay_payment_setup/upgrade-3.7.0-3.7.1.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* @var $installer Mage_Sales_Model_Mysql4_Setup */
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->addAttribute('quote_address', 'payment_charge_tax_amount', array('type' => 'decimal'));
7
+ $installer->addAttribute('quote_address', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
8
+
9
+ $installer->addAttribute('order', 'payment_charge_tax_amount', array('type' => 'decimal'));
10
+ $installer->addAttribute('order', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
11
+
12
+ $installer->addAttribute('invoice', 'payment_charge_tax_amount', array('type' => 'decimal'));
13
+ $installer->addAttribute('invoice', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
14
+
15
+ $installer->addAttribute('creditmemo', 'payment_charge_tax_amount', array('type' => 'decimal'));
16
+ $installer->addAttribute('creditmemo', 'base_payment_charge_tax_amount', array('type' => 'decimal'));
17
+
18
+ $installer->endSetup();
app/code/community/Pay/Payment/vendor/autoload.php CHANGED
@@ -2,6 +2,6 @@
2
 
3
  // autoload.php @generated by Composer
4
 
5
- require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
  return ComposerAutoloaderInitea3453e1b724e71ac1e1487d7036efba::getLoader();
2
 
3
  // autoload.php @generated by Composer
4
 
5
+ require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
  return ComposerAutoloaderInitea3453e1b724e71ac1e1487d7036efba::getLoader();
app/code/community/Pay/Payment/vendor/composer/ClassLoader.php CHANGED
@@ -53,8 +53,8 @@ class ClassLoader
53
 
54
  private $useIncludePath = false;
55
  private $classMap = array();
56
-
57
  private $classMapAuthoritative = false;
 
58
 
59
  public function getPrefixes()
60
  {
@@ -322,20 +322,20 @@ class ClassLoader
322
  if (isset($this->classMap[$class])) {
323
  return $this->classMap[$class];
324
  }
325
- if ($this->classMapAuthoritative) {
326
  return false;
327
  }
328
 
329
  $file = $this->findFileWithExtension($class, '.php');
330
 
331
  // Search for Hack files if we are running on HHVM
332
- if ($file === null && defined('HHVM_VERSION')) {
333
  $file = $this->findFileWithExtension($class, '.hh');
334
  }
335
 
336
- if ($file === null) {
337
  // Remember that this class does not exist.
338
- return $this->classMap[$class] = false;
339
  }
340
 
341
  return $file;
@@ -399,6 +399,8 @@ class ClassLoader
399
  if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
400
  return $file;
401
  }
 
 
402
  }
403
  }
404
 
53
 
54
  private $useIncludePath = false;
55
  private $classMap = array();
 
56
  private $classMapAuthoritative = false;
57
+ private $missingClasses = array();
58
 
59
  public function getPrefixes()
60
  {
322
  if (isset($this->classMap[$class])) {
323
  return $this->classMap[$class];
324
  }
325
+ if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
326
  return false;
327
  }
328
 
329
  $file = $this->findFileWithExtension($class, '.php');
330
 
331
  // Search for Hack files if we are running on HHVM
332
+ if (false === $file && defined('HHVM_VERSION')) {
333
  $file = $this->findFileWithExtension($class, '.hh');
334
  }
335
 
336
+ if (false === $file) {
337
  // Remember that this class does not exist.
338
+ $this->missingClasses[$class] = true;
339
  }
340
 
341
  return $file;
399
  if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
400
  return $file;
401
  }
402
+
403
+ return false;
404
  }
405
  }
406
 
app/code/community/Pay/Payment/vendor/composer/installed.json CHANGED
@@ -59,17 +59,17 @@
59
  },
60
  {
61
  "name": "paynl/sdk",
62
- "version": "v1.2.9",
63
- "version_normalized": "1.2.9.0",
64
  "source": {
65
  "type": "git",
66
  "url": "https://github.com/paynl/sdk.git",
67
- "reference": "3521f99df7f9d34709b8fb1acfab10423084407f"
68
  },
69
  "dist": {
70
  "type": "zip",
71
- "url": "https://api.github.com/repos/paynl/sdk/zipball/3521f99df7f9d34709b8fb1acfab10423084407f",
72
- "reference": "3521f99df7f9d34709b8fb1acfab10423084407f",
73
  "shasum": ""
74
  },
75
  "require": {
@@ -79,7 +79,7 @@
79
  "phpunit/phpunit": "^4.8",
80
  "satooshi/php-coveralls": "~1.0"
81
  },
82
- "time": "2017-03-14 16:42:11",
83
  "type": "library",
84
  "installation-source": "dist",
85
  "autoload": {
59
  },
60
  {
61
  "name": "paynl/sdk",
62
+ "version": "v1.2.10",
63
+ "version_normalized": "1.2.10.0",
64
  "source": {
65
  "type": "git",
66
  "url": "https://github.com/paynl/sdk.git",
67
+ "reference": "ff403586f74287d1b6abbb4c46a463f5eb29e25c"
68
  },
69
  "dist": {
70
  "type": "zip",
71
+ "url": "https://api.github.com/repos/paynl/sdk/zipball/ff403586f74287d1b6abbb4c46a463f5eb29e25c",
72
+ "reference": "ff403586f74287d1b6abbb4c46a463f5eb29e25c",
73
  "shasum": ""
74
  },
75
  "require": {
79
  "phpunit/phpunit": "^4.8",
80
  "satooshi/php-coveralls": "~1.0"
81
  },
82
+ "time": "2017-04-24 15:33:14",
83
  "type": "library",
84
  "installation-source": "dist",
85
  "autoload": {
app/code/community/Pay/Payment/vendor/paynl/sdk/README.md CHANGED
@@ -39,7 +39,7 @@ You can download the zip on the projects [releases](https://github.com/paynl/sdk
39
 
40
  ### Requirements
41
 
42
- The Pay.nl PHP SDK works on php versions 5.3, 5.4, 5.5 and 5.6.
43
  Also the php curl extension needs to be installed.
44
 
45
  ### Quick start and examples
39
 
40
  ### Requirements
41
 
42
+ The Pay.nl PHP SDK works on php versions 5.3, 5.4, 5.5, 5.6, 7.0 and 7.1
43
  Also the php curl extension needs to be installed.
44
 
45
  ### Quick start and examples
app/code/community/Pay/Payment/vendor/paynl/sdk/src/Paymentmethods.php CHANGED
@@ -38,6 +38,8 @@ class Paymentmethods
38
  {
39
  $paymentMethods = array();
40
 
 
 
41
  foreach ($input['countryOptionList'] as $country) {
42
  foreach ($country['paymentOptionList'] as $paymentOption) {
43
  if (isset($paymentMethods[$paymentOption['id']])) {
@@ -46,10 +48,15 @@ class Paymentmethods
46
  $banks = array();
47
  if (!empty($paymentOption['paymentOptionSubList'])) {
48
  foreach ($paymentOption['paymentOptionSubList'] as $optionSub) {
 
 
 
 
49
  $bank = array();
50
  $bank['id'] = $optionSub['id'];
51
  $bank['name'] = $optionSub['name'];
52
  $bank['visibleName'] = $optionSub['visibleName'];
 
53
  $banks[] = $bank;
54
  }
55
  }
38
  {
39
  $paymentMethods = array();
40
 
41
+ $basePath = $input['service']['basePath'];
42
+
43
  foreach ($input['countryOptionList'] as $country) {
44
  foreach ($country['paymentOptionList'] as $paymentOption) {
45
  if (isset($paymentMethods[$paymentOption['id']])) {
48
  $banks = array();
49
  if (!empty($paymentOption['paymentOptionSubList'])) {
50
  foreach ($paymentOption['paymentOptionSubList'] as $optionSub) {
51
+ $image = "";
52
+ if($paymentOption['id'] == 10){// only add images for ideal, because the rest will not have images
53
+ $image = $basePath.$optionSub['path'].$optionSub['img'];
54
+ }
55
  $bank = array();
56
  $bank['id'] = $optionSub['id'];
57
  $bank['name'] = $optionSub['name'];
58
  $bank['visibleName'] = $optionSub['visibleName'];
59
+ $bank['image'] = $image;
60
  $banks[] = $bank;
61
  }
62
  }
package.xml CHANGED
@@ -1,20 +1,24 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Pay_NL</name>
4
- <version>3.7.0</version>
5
  <stability>stable</stability>
6
  <license>Pay</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Betaalmethoden van pay.nl</summary>
10
  <description>Magento plugin voor betaalmethoden van pay.nl</description>
11
- <notes>Now using the paynl SDK&#xD;
12
- Added instore payments (PIN)&#xD;
13
- Added Yehhpay</notes>
 
 
 
 
14
  <authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
15
- <date>2017-04-04</date>
16
- <time>13:51:18</time>
17
- <contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="efa170c6d6373db23cbbc431dfd16dd1"/></dir><dir name="Invoice"><file name="Totals.php" hash="660af963b2284d67f2a7d2fed81547f5"/></dir><file name="Totals.php" hash="6e1b2e3ff405dd6b71b3fcad4b7aa6dd"/></dir><file name="Totals.php" hash="53f1e18fa57da728bb7ae8391099322a"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="3a88ab9907aa9729c9224a136e4ef17c"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="c700934ea3e0438828093602e3ac9455"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Instore.php" hash="f175a59da6a95ce976a2b516cd12ed82"/><file name="Klarna.php" hash="5af95f201b4318cf8d35441a735ba513"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paylink.php" hash="88aa76f66dd6de2c1edbaa8fa2f82848"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yehhpay.php" hash="1dfaa01621b4a366a6a83c92471c4dfd"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><file name="Data.php" hash="7a85d020f0d905b3036fc4283230b45c"/><file name="Order.php" hash="4c9403a8af8d532e7a1f61a22f701d3f"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Observer.php" hash="12fe99ed9392d34d11f8dd3c5c142914"/><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="ad86753b77f5ba38f9f487a21b5dd740"/><file name="Afterpayem.php" hash="0e46d05dbd0e50568ce501f015a4bef9"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="16c12d733d8a1e22e92a4e8ee7dcffd1"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="60f67926b2921a8b88b5b00766ae4694"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Focum.php" hash="8f7e4b3dfde76bf83a5a72d38cd276c3"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="ce91a44aae3943e0f17fbd2fed5bf3c9"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Instore.php" hash="b5753b82c481db4dd20df558b1466137"/><file name="Klarna.php" hash="2acd614cae4e98808af233b67e72091f"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paylink.php" hash="9817ea9b14aa5be1e236758e354ce554"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yehhpay.php" hash="f5c4a4b71fd35237479370e7a91647dc"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="22fdf0f16389f5b71e1b961a49bed664"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="619284bfb8096b8077e1db0d5706d258"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="c20ce4be3936651db99074c21a9135d6"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="4476aaa1f0bf6ea3ba4e028b698b1767"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Instore"><file name="Active.php" hash="3a6bc8939693c22823e0a9c9c67ef22a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yehhpay"><file name="Active.php" hash="bea1e10dcd469224e5f356864a691de2"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><dir name="Transaction"><file name="LockException.php" hash="57054928500c8bac587bb93f631e14fc"/></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><file name="composer.json" hash="6c8823e38701d6ad4db0d02873530de2"/><file name="composer.lock" hash="dccb41623004068bd6cfef8fe4919092"/><dir name="controllers"><file name="CheckoutController.php" hash="e49b7563e4c080ea8db8e307f50d5780"/><file name="OrderController.php" hash="e2da5c7341641a0db70c744f3c1d16a3"/></dir><dir name="etc"><file name="config.xml" hash="7e85e98d2ff1df87bb6bea9d8986c686"/><file name="system.xml" hash="e11dfaf8590ddd5f4480ad047cbde738"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.7.0.php" hash="b8dead7d2b7f40e567a620468783b342"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="c30b9d725fc24bc00ce1548a7cb23137"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/><file name="upgrade-3.6.5-3.6.6.php" hash="9c181eca48b537f84910292982b99c02"/><file name="upgrade-3.6.6-3.7.0.php" hash="6dc3deaa1086c87ef9d994ac6f7f7ea3"/></dir></dir><dir name="vendor"><file name="autoload.php" hash="fdadd3ab9e39bfd346c019dd4a6ca188"/><dir name="composer"><file name="ClassLoader.php" hash="c67ebce5ff31e99311ceb750202adf2e"/><file name="LICENSE" hash="efa04e84182a9053f7563cf94064966f"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="35e12c7d76c4a81633bcf547c0e229a9"/><file name="autoload_psr4.php" hash="8fb5e4874e376f6218f954feb91d329f"/><file name="autoload_real.php" hash="29aed176b804fbe46a2756c54e7d2547"/><file name="autoload_static.php" hash="fed89d87b7ac73ef219dafa263bd3be9"/><file name="installed.json" hash="4ce976d508cdad595fcc7266b3bc7b38"/></dir><dir name="paynl"><dir name="sdk"><file name="README.md" hash="ad26dbf74651fecbe208de7cbe336bd0"/><file name="composer.json" hash="8d66100746c7a72daae2eabbafa624b3"/><dir name="samples"><file name="config.sample.php" hash="4fab7308ade8623b5335732a9904e9bd"/><dir name="directDebit"><file name="add.php" hash="4034615d2c1c9b4dd3990749fe2fcb1d"/><file name="get.php" hash="5e5f3bf39602bd7f9a24a6bafdc4d85e"/><dir name="mandate"><file name="add.php" hash="7bc185514dd6b3727b058a8ee8f410bd"/><file name="addTransaction.php" hash="f8fa8c889c4878c4f31a586b00e78c9e"/><file name="get.php" hash="418ee427a180237a7a259cedd349e74c"/></dir><dir name="recurring"><file name="add.php" hash="7292977cd9de5da0e35569e5a3dc3a13"/><file name="get.php" hash="b96da3f0716a43625b1cc918edf90f7f"/></dir></dir><file name="exchange.php" hash="ece154591da8abd7f167635adbb84a3d"/><dir name="instore"><file name="confirmPayment.php" hash="0dc20bbab68f5ad8014d1627417c74b2"/><file name="getAllTerminals.php" hash="248a1c34de92cb4b26928e12eac7a24d"/><file name="getReceipt.php" hash="22f9736437a47f88d2c9ac8ad991c311"/><file name="payment.php" hash="e2895873daef84ef859a9251f62e7910"/><file name="status.php" hash="76172816339a3342beacbd90a46644b3"/></dir><file name="return.php" hash="7aa22326d6a8bd68b633e202fd85a487"/><dir name="service"><file name="getPaylinkUrl.php" hash="95962291c6feab31089be6d324f79283"/></dir><dir name="transaction"><file name="capture.php" hash="16d94830ef9737004c1704d31025e64a"/><file name="paymentMethods.php" hash="bb61b10cc5fd28db8708bb3c337aa7a8"/><file name="refund.php" hash="3ff5fe3329078bae5b70957317b077fc"/><file name="start.php" hash="520eb67c540d80688c046752c40342cd"/><file name="void.php" hash="13ae46719190684c9749069f70a38bcd"/></dir><dir name="validate"><file name="isPayServerIp.php" hash="19058a723db11ddeed3c52a3ba917ce6"/></dir></dir><dir name="src"><dir name="Api"><file name="Api.php" hash="f85c4cf757986c8dd1f858646fdb0438"/><dir name="Currency"><file name="Currency.php" hash="89ae7fd4e4095e374f33ba66f7d7ca32"/><file name="GetAll.php" hash="2fdc83ffbb9671d88dc583890118b6ef"/></dir><dir name="DirectDebit"><file name="DebitAdd.php" hash="7199518dc836d34144ad72711d435bbe"/><file name="DebitGet.php" hash="04115c7e84d216396a5f2f1b844a6e0f"/><file name="Delete.php" hash="851f6abc00869821aeceaebf78ce2f80"/><file name="DirectDebit.php" hash="b11c24151503c2402f6c696b2dab90af"/><file name="MandateAdd.php" hash="e92716cd8eeddab5ac0e28666a5ddd61"/><file name="MandateDebit.php" hash="ae09eb661936b125a3bca5bba39ca375"/><file name="MandateGet.php" hash="5e53cf099612a0b82a89f3516ec55d17"/><file name="RecurringAdd.php" hash="167a30314a8713bbfaa6906ae72aad57"/><file name="RecurringGet.php" hash="db7d5d73370b0428f86667e1f6b92101"/><file name="Update.php" hash="6ee552228f2fd98990eb453204b8506a"/></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="f8dad4880859a66e605209155459df01"/><file name="GetAllTerminals.php" hash="17f824a8519736ac04f63829f2d83edb"/><file name="GetTransactionTicket.php" hash="57e956e4bfef63a853b03759d13f8174"/><file name="Instore.php" hash="a4ebe56c07aabf875fa2975929a33f21"/><file name="Payment.php" hash="da4ee88b3b6992f7a4b438d4c2991330"/><file name="Status.php" hash="0507f8028097860e3145dee82f364297"/></dir><dir name="Refund"><file name="Add.php" hash="3dc8bf8b3c7be9f28982188276fcd74c"/><file name="Refund.php" hash="7d237e5128a9c1063ba70e705cca3c37"/></dir><dir name="Service"><file name="GetPayLinkUrl.php" hash="a290b8533f30b871b46f3a0295c41dad"/><file name="Service.php" hash="1e664edea598d318466b050144ba6880"/></dir><dir name="Transaction"><file name="Approve.php" hash="d1709966f1f042b41d1bc44926f27dee"/><file name="Capture.php" hash="604738b3fe9b4451d5802de1c07fc9ba"/><file name="Decline.php" hash="0a6c37c859560af8bef2ec37edc64450"/><file name="GetService.php" hash="0bca117078f4ff5e705e0577fb70c586"/><file name="Info.php" hash="7a9f8568b606c096984c0a7da7916e11"/><file name="Refund.php" hash="d4e01fbcb8abba8df170498c0dd56168"/><file name="Start.php" hash="8cd62ceeaedd845378c9d2c714aca19c"/><file name="Transaction.php" hash="d80ebf3623abd560e8ecd4ae8c92639a"/><file name="Void.php" hash="e76c3dc2432e51db9c7d785ee4f0dbd5"/></dir><dir name="Validate"><file name="IsPayServerIp.php" hash="c403fb225d08b6b011edf866c9d43156"/><file name="Validate.php" hash="d3feb1fa0edb37bbee86ef935d149f38"/></dir><dir name="Voucher"><file name="Activate.php" hash="7932b7899e9770821e712b59e952e3b5"/><file name="Balance.php" hash="5e4cf8999d7e353d98006c8b068ca069"/><file name="Charge.php" hash="525d1e8491418c49e705d08f907aabdc"/><file name="Voucher.php" hash="ba71c6cd712fb89c6682a70b03f550f3"/></dir></dir><file name="Config.php" hash="e73385a4fc039062d12d406435a9716b"/><dir name="Curl"><file name="Dummy.php" hash="1745478bcae3d5081f9b12cc81f1e0ca"/></dir><file name="Currency.php" hash="49f1340a25d7a9b1cfdfb3073104e92c"/><dir name="DirectDebit"><file name="Mandate.php" hash="6b778ce4c44d2d2d4db66f6dcea08e29"/><file name="Recurring.php" hash="821065f96b13bda3d0f835638a745ee0"/></dir><file name="DirectDebit.php" hash="329bd85db112da942644a766b79802f0"/><dir name="Error"><file name="Api.php" hash="bbe509d6742ba5ac54e67db2865b9d59"/><file name="Error.php" hash="63a453baf90355604d24ddf015df7a34"/><file name="NotFound.php" hash="115ec3c5650244dd84c9e71ada3945ed"/><dir name="Required"><file name="ApiToken.php" hash="0485882225b6e0679e0f6c974b1b7aeb"/><file name="ServiceId.php" hash="8e17bb932fa9b03c265512143c57dd5d"/></dir><file name="Required.php" hash="37f246dd05e95cb5a5793ec80b618f32"/></dir><file name="Helper.php" hash="5b327f622fcc7b6dcc601761283956d2"/><file name="Instore.php" hash="a114c542769c3ead1521ee52bfab58e7"/><file name="Paymentmethods.php" hash="e27a873550b7f9b0e86b4b0b079abbdc"/><file name="Refund.php" hash="ab8011579f035c5529f71e1af32ee816"/><dir name="Result"><dir name="DirectDebit"><file name="Add.php" hash="710be2f5e0c263226de6ddcc12b5160f"/><file name="Get.php" hash="044463d71af40ef9f8022bf9aa54394c"/><dir name="Mandate"><file name="Add.php" hash="28c1cd015980a69a0827509222b13922"/><file name="AddTransaction.php" hash="60d92d48c11921d03f036aa6b3b3425e"/><file name="Get.php" hash="e27eda30346c16512d74d2682c8542b0"/></dir><dir name="Recurring"><file name="Add.php" hash="5a317db77bccf59ec7ec3b5604ec53ba"/><file name="Get.php" hash="ed4c97826dd6af0144e415d93535d61d"/></dir></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="c40673aa1b0986581f20c64c03be9e5e"/><file name="Payment.php" hash="4cebf421c4fc05ec86d3adfef5ec8261"/><file name="Receipt.php" hash="93363b372e01a7125335d574d8634760"/><file name="Status.php" hash="9a53d172946cd5760d058370d52ba2c7"/><file name="Terminals.php" hash="865b4b8afd074f70c4e2201bc11f4771"/></dir><dir name="Refund"><file name="Add.php" hash="d055da637564eef29e804a1faef1dbf8"/></dir><file name="Result.php" hash="4175022c91a50bdbd91ffe438b043d2b"/><dir name="Transaction"><file name="Refund.php" hash="3e22f2aa8f531a6eb07fde33047ed82e"/><file name="Start.php" hash="7200ebdb50cf149ceea8c013c82c6eab"/><file name="Transaction.php" hash="351737022ccf57de09e75d25fb7eedfd"/></dir><dir name="Voucher"><file name="Voucher.php" hash="d3d991fac30467cce37b0de53a615ae1"/></dir></dir><file name="Service.php" hash="bcfb8d540a089363ddd8db69d09c8b60"/><file name="Transaction.php" hash="4f459a95471b40ee742f0d78cef3a740"/><file name="Validate.php" hash="8469564f78184177934295ce28b96a54"/><file name="Voucher.php" hash="d6e202d522ffd37692aad50989f001ec"/></dir><dir name="tests"><file name="ConfigTest.php" hash="b7f00c625a9df9718d97b3bf6b688c99"/><file name="CurrencyTest.php" hash="e9cfe5bb2bc4371321fb408fc53f83d8"/><file name="HelperTest.php" hash="61f43eaa726ad662ab47f9a718438983"/><file name="PaymentmethodsTest.php" hash="eec5b50c78f43edac925cfb9f89b33cd"/><file name="RefundTest.php" hash="8a93fe0d1eb2ffe13c14214d4cd0109a"/><file name="TransactionTest.php" hash="85318b09514abc0432dcda91c647187f"/><file name="ValidateTest.php" hash="b5090dd8ee903face24f21a9bdce2c95"/><dir name="dummyData"><dir name="Refund"><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/></dir><dir name="Transaction"><dir name="Result"><file name="approve.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="decline.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/><file name="transactionPaid.json" hash="938a9e79081292a6ebaf2163175d64ec"/><file name="transactionVerify.json" hash="a04928cef5af76fa2d3cd23662517d89"/></dir><file name="startOk.json" hash="0fea5cb9fa6a59dba6226942053648fb"/></dir><dir name="Validate"><file name="isPayServerIpNo.json" hash="476b4edbf5412cdfb318c74fc21a11d8"/><file name="isPayServerIpYes.json" hash="6ce66f3fb6a06d6b77059803d4fef7c0"/></dir><file name="currencies.json" hash="103b88f54e43ff2585d42a70b6370c67"/><file name="getService.json" hash="345a55bdadb305146b121b7996f4b9c0"/></dir></dir><file name=".gitignore" hash="54b761861a00672137da5cf9fe00e2de"/><file name=".travis.yml" hash="ccf7c0d24624132428b4b9539b78ecf3"/></dir></dir><dir name="php-curl-class"><dir name="php-curl-class"><file name="LICENSE" hash="7246f848faa4e9c9fc0ea91122d6e680"/><file name="README.md" hash="f2eeff9b53b4824b6fd88b2be85e4dcc"/><file name="composer.json" hash="c27df8073014d0fea654e916009f8466"/><dir name="docs"><file name="Makefile" hash="1b19a74bb48c433ab52d7c381b78dc7e"/><file name="README.md" hash="9e9a36f20f8c03c734345beaa2edb0a5"/><dir name="source"><file name="conf.py" hash="98412cfa8535eb2749a53b6d88371635"/><file name="faq.rst" hash="fc97af6348e454000aca799cab6d0053"/><file name="index.rst" hash="d8e3e63cc6a63f60721bc1a1c3f5001c"/><file name="overview.rst" hash="1e62e027121ef9aaa19bdd317d44ede2"/></dir><file name=".gitignore" hash="2529e845806d223afb1ff7dcdeab55d4"/></dir><dir name="examples"><file name="README.md" hash="944a15e05bd22c875d6698a6389399c8"/><file name="coinbase_account_balance.php" hash="06c04fad60f4fa6670f674165003e9af"/><file name="coinbase_spot_rate.php" hash="27bb3b0f5387e019ff906fe3d13bf2c4"/><file name="deviant_art_rss.php" hash="fa0151454eb0de60483bfbf2649b8f8a"/><file name="download_file.php" hash="c1cced0f90217042812e29db6ac0c10d"/><file name="download_file_with_callback.php" hash="3ea9b3feebbc3bd83f77ed52a18de05d"/><file name="flickr.class.php" hash="43179dade7dd33508981ee478002a2f5"/><file name="flickr_photo_search.php" hash="26d02cb1ccdfb7a7a3ec39b6c59d4971"/><file name="flickr_upload_photo.php" hash="0d11e5ba8f41398fec8e6cc977b55c82"/><file name="get.php" hash="c47177bc4f87f84b1502f35ba0e6d1e6"/><file name="get_base_url_1.php" hash="9ed7f693187b90ce9ee1aa4b420ffe52"/><file name="get_base_url_2.php" hash="8b499939e897066c0885928ff475b44b"/><file name="github_create_gist.php" hash="3192e4063a43dce6bf3901d782c4ac40"/><file name="gmail_send_email.php" hash="5e4411eb80b16d4d42f2b94053f32c30"/><file name="google_maps_geocode_address.php" hash="f150e2ec72013094a774092b2696d670"/><file name="google_plus_profile.php" hash="ab6e6cf7b33945fda76fe7c2ed66c540"/><file name="gratipay_send_tip.php" hash="05ea71d33448196288445feb14d431d6"/><file name="instagram_popular_media.php" hash="f7266d36e6fa96ac7594654a6918abf5"/><file name="instagram_search_photos.php" hash="f8d44579efe04a7ed739e45a5af26bdd"/><file name="mailchimp_subscribe_email_address.php" hash="1bd4d2508a06096a33088943c539d643"/><file name="multi_curl_before_send.php" hash="98f002a915261b6375e2a8cbf033c624"/><file name="multi_curl_delete.php" hash="2384ea09bff8b031565e63e75e313040"/><file name="multi_curl_download.php" hash="8701601b7192d1671ed834020684480d"/><file name="multi_curl_download_with_callback.php" hash="f68cffed4c903407320396188604f422"/><file name="multi_curl_get.php" hash="f4b8b67ca9d8370a48ca791b9cd37328"/><file name="multi_curl_get_callbacks.php" hash="b8af5ee91e9c24a2cf1f1440a244b3ce"/><file name="multi_curl_patch.php" hash="9237e7c26a7f0cd45034bf55e602c256"/><file name="multi_curl_post.php" hash="1f7a00588adde05f39e1f93d3840d7ed"/><file name="multi_curl_put.php" hash="5ba9ddeae279a4089f7f7eaad942aa95"/><file name="post.php" hash="5414eda7a246263ddeb5920ee7c45bc3"/><file name="post_json.php" hash="0a5fdb77bc668ba5d841eca3fb2ab75c"/><file name="post_redirect_get.php" hash="042d70bc4d0bf463b89c602b20776bec"/><file name="progress.php" hash="279aa9284556d014fc78e96c1b75cd50"/><file name="progress_advanced.php" hash="c3d91329a1fc927bab54c10bed176408"/><file name="proxy.php" hash="e3acfff828e3949c2e984fe860fa479f"/><file name="put.php" hash="7d75554c8c4b2195bd2598c77c952838"/><file name="reddit_top_pics.php" hash="7fda200709ea7ec03df2c8a53a485892"/><file name="set_cookie.php" hash="2600096ebec5c6583156c9280955a7e2"/><file name="set_url_1.php" hash="fabbe1c29525b92888a0936485691d29"/><file name="set_url_2.php" hash="3c71c517455f994a06cb08d2e94ce0c8"/><file name="twitter_post_tweet.php" hash="a252660e9bffd0641381a0ad0813fa78"/><file name="twitter_trending_topics.php" hash="23053d5dfd766c98182378f3a1249e5d"/><file name="upload_file.php" hash="05050db0aa963192e9d85171b77ae341"/><file name="youtube_list_playlist_videos.php" hash="6c5ae3f3cdf6dcb5c5fe360624d47bef"/><file name="youtube_video_count.php" hash="f9d7598ab61717f719b99d9b076b2ca4"/></dir><dir name="scripts"><file name="bump_major_version.php" hash="f930cf07539423734d5f7378fa5646de"/><file name="bump_minor_version.php" hash="03754135acff395b4ecca040471b509e"/><file name="bump_patch_version.php" hash="df1d6bdffd08a3972878fa9096ca8982"/><file name="update_readme_methods.sh" hash="6a84cc9cb7e74303a854104201333e0e"/><file name="v4_migration.php" hash="1204efd398ee5562283229f9e12250c3"/></dir><dir name="src"><dir name="Curl"><file name="CaseInsensitiveArray.php" hash="517e786b03deb69d055072059a6f6589"/><file name="Curl.php" hash="f80a854bc7e74bd2a9960dd95483fadd"/><file name="MultiCurl.php" hash="9030703db3afaf9ff3851454dca961b3"/></dir></dir><dir name="tests"><dir name="PHPCurlClass"><file name="Helper.php" hash="a90668ebc6045420e86582fd30c3c11c"/><file name="PHPCurlClassTest.php" hash="b1c186f447b184fdebd5b44b280ea820"/><file name="PHPMultiCurlClassTest.php" hash="80cbe86949f4c0a2fa9002c1135bbada"/><file name="server.php" hash="69ed2817f2a3d5fc91ccfc2b0a35d5fa"/></dir><file name="before_script.sh" hash="9662ccee85ad2a2d6756bc9042f1a972"/><file name="check_syntax.sh" hash="bcec868d19007801e7a6d97a8a352d30"/><file name="phpunit.xml" hash="02538f4dc944563d09cb7c8503304f6c"/><file name="run.sh" hash="b480ddd83c3c09ec768a25ed8ca53e02"/><file name="script.sh" hash="fc29b81395c851a876531d73a2591b55"/></dir><dir name=".github"><file name="CONTRIBUTING.md" hash="8ddd43058158bea44998b574a271fe64"/><file name="ISSUE_TEMPLATE.md" hash="2249b43c827634a6b3616cfabd9f51f2"/></dir><file name=".gitignore" hash="62f86c4700c6fd118d837d9b9cb369ae"/><file name=".travis.yml" hash="3da971d2cee55f305f06c243db0179fb"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/><file name="yehhpay.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5a93eefb7c592c05478681dce9d16b3b"/><file name="klarna.phtml" hash="1a496f7ebb8bd1361332519a3331faaa"/><file name="paylink.phtml" hash="1f030c00390300cac93e347872c560cf"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Pay_NL</name>
4
+ <version>3.7.1</version>
5
  <stability>stable</stability>
6
  <license>Pay</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Betaalmethoden van pay.nl</summary>
10
  <description>Magento plugin voor betaalmethoden van pay.nl</description>
11
+ <notes>* Rewrote the vat calculation of the payment fees, the vat on the fee should now be correct for all vat settings.&#xD;
12
+ * Added testmode, so you can send all transactions in testmode.&#xD;
13
+ * fixed an exception when instore was enabled but no terminals are assigned to the merchant&#xD;
14
+ * fixed notices if birthdate is empty or an address is not set&#xD;
15
+ * Sending invoice emails is now configurable per paymentmethod&#xD;
16
+ * added field to the order and invoice with the vat of the payment fee&#xD;
17
+ * images of banks were missing</notes>
18
  <authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
19
+ <date>2017-05-01</date>
20
+ <time>15:26:24</time>
21
+ <contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="17f7aa9dd229b05b8150ad8580d26ea2"/></dir><dir name="Invoice"><file name="Totals.php" hash="4fda933239ba6c5efe0abf855a578abe"/></dir><file name="Totals.php" hash="76764ff8e32876bf937c276acd2fcf17"/></dir><file name="Totals.php" hash="53f1e18fa57da728bb7ae8391099322a"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="3a88ab9907aa9729c9224a136e4ef17c"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="c700934ea3e0438828093602e3ac9455"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Instore.php" hash="f175a59da6a95ce976a2b516cd12ed82"/><file name="Klarna.php" hash="5af95f201b4318cf8d35441a735ba513"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paylink.php" hash="88aa76f66dd6de2c1edbaa8fa2f82848"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yehhpay.php" hash="1dfaa01621b4a366a6a83c92471c4dfd"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><file name="Data.php" hash="70c554539e82603f64368cd0944dcca4"/><file name="Order.php" hash="cb36a7d6d33c7705307630303ee827e6"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Observer.php" hash="12fe99ed9392d34d11f8dd3c5c142914"/><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="ad86753b77f5ba38f9f487a21b5dd740"/><file name="Afterpayem.php" hash="0e46d05dbd0e50568ce501f015a4bef9"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="16c12d733d8a1e22e92a4e8ee7dcffd1"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="60f67926b2921a8b88b5b00766ae4694"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Focum.php" hash="8f7e4b3dfde76bf83a5a72d38cd276c3"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="ce91a44aae3943e0f17fbd2fed5bf3c9"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Instore.php" hash="b5753b82c481db4dd20df558b1466137"/><file name="Klarna.php" hash="2acd614cae4e98808af233b67e72091f"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paylink.php" hash="9817ea9b14aa5be1e236758e354ce554"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yehhpay.php" hash="f5c4a4b71fd35237479370e7a91647dc"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="098fd04a194ee1a61fa935d70d1ae65d"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="00177802127ff3c9d8d58d54f7b2e4d7"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="9cfd81f13a15fee779d77b3cf63cf825"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="908268174ed3923773b4a522e180da97"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Instore"><file name="Active.php" hash="3a6bc8939693c22823e0a9c9c67ef22a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yehhpay"><file name="Active.php" hash="bea1e10dcd469224e5f356864a691de2"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><dir name="Transaction"><file name="LockException.php" hash="57054928500c8bac587bb93f631e14fc"/></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><file name="composer.json" hash="6c8823e38701d6ad4db0d02873530de2"/><file name="composer.lock" hash="a698d2e14b8f113f6e9246d8b63e2078"/><dir name="controllers"><file name="CheckoutController.php" hash="e49b7563e4c080ea8db8e307f50d5780"/><file name="OrderController.php" hash="e2da5c7341641a0db70c744f3c1d16a3"/></dir><dir name="etc"><file name="config.xml" hash="0bcc129a6063c496b28c5cc3637392ed"/><file name="system.xml" hash="95ce97b1e89d2f19ff252d1d05253162"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.7.1.php" hash="827660dd9690002a99d49a5ab0420f0f"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="c30b9d725fc24bc00ce1548a7cb23137"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/><file name="upgrade-3.6.5-3.6.6.php" hash="9c181eca48b537f84910292982b99c02"/><file name="upgrade-3.6.6-3.7.0.php" hash="6dc3deaa1086c87ef9d994ac6f7f7ea3"/><file name="upgrade-3.7.0-3.7.1.php" hash="8ee7093a83e9a4d2e1c2788ab31a99cd"/></dir></dir><dir name="vendor"><file name="autoload.php" hash="83d1056ba028254c33e7b71a4fe2e756"/><dir name="composer"><file name="ClassLoader.php" hash="bf6c4758ae060fd8f3e3a88e6c24ac3c"/><file name="LICENSE" hash="efa04e84182a9053f7563cf94064966f"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="35e12c7d76c4a81633bcf547c0e229a9"/><file name="autoload_psr4.php" hash="8fb5e4874e376f6218f954feb91d329f"/><file name="autoload_real.php" hash="29aed176b804fbe46a2756c54e7d2547"/><file name="autoload_static.php" hash="fed89d87b7ac73ef219dafa263bd3be9"/><file name="installed.json" hash="7ef7e41f9a1dc3321e1d0ed7f8938138"/></dir><dir name="paynl"><dir name="sdk"><file name="README.md" hash="b0bffdca80e42d6cb52e820a4427b2f1"/><file name="composer.json" hash="8d66100746c7a72daae2eabbafa624b3"/><dir name="samples"><file name="config.sample.php" hash="4fab7308ade8623b5335732a9904e9bd"/><dir name="directDebit"><file name="add.php" hash="4034615d2c1c9b4dd3990749fe2fcb1d"/><file name="get.php" hash="5e5f3bf39602bd7f9a24a6bafdc4d85e"/><dir name="mandate"><file name="add.php" hash="7bc185514dd6b3727b058a8ee8f410bd"/><file name="addTransaction.php" hash="f8fa8c889c4878c4f31a586b00e78c9e"/><file name="get.php" hash="418ee427a180237a7a259cedd349e74c"/></dir><dir name="recurring"><file name="add.php" hash="7292977cd9de5da0e35569e5a3dc3a13"/><file name="get.php" hash="b96da3f0716a43625b1cc918edf90f7f"/></dir></dir><file name="exchange.php" hash="ece154591da8abd7f167635adbb84a3d"/><dir name="instore"><file name="confirmPayment.php" hash="0dc20bbab68f5ad8014d1627417c74b2"/><file name="getAllTerminals.php" hash="248a1c34de92cb4b26928e12eac7a24d"/><file name="getReceipt.php" hash="22f9736437a47f88d2c9ac8ad991c311"/><file name="payment.php" hash="e2895873daef84ef859a9251f62e7910"/><file name="status.php" hash="76172816339a3342beacbd90a46644b3"/></dir><file name="return.php" hash="7aa22326d6a8bd68b633e202fd85a487"/><dir name="service"><file name="getPaylinkUrl.php" hash="95962291c6feab31089be6d324f79283"/></dir><dir name="transaction"><file name="capture.php" hash="16d94830ef9737004c1704d31025e64a"/><file name="paymentMethods.php" hash="bb61b10cc5fd28db8708bb3c337aa7a8"/><file name="refund.php" hash="3ff5fe3329078bae5b70957317b077fc"/><file name="start.php" hash="520eb67c540d80688c046752c40342cd"/><file name="void.php" hash="13ae46719190684c9749069f70a38bcd"/></dir><dir name="validate"><file name="isPayServerIp.php" hash="19058a723db11ddeed3c52a3ba917ce6"/></dir></dir><dir name="src"><dir name="Api"><file name="Api.php" hash="f85c4cf757986c8dd1f858646fdb0438"/><dir name="Currency"><file name="Currency.php" hash="89ae7fd4e4095e374f33ba66f7d7ca32"/><file name="GetAll.php" hash="2fdc83ffbb9671d88dc583890118b6ef"/></dir><dir name="DirectDebit"><file name="DebitAdd.php" hash="7199518dc836d34144ad72711d435bbe"/><file name="DebitGet.php" hash="04115c7e84d216396a5f2f1b844a6e0f"/><file name="Delete.php" hash="851f6abc00869821aeceaebf78ce2f80"/><file name="DirectDebit.php" hash="b11c24151503c2402f6c696b2dab90af"/><file name="MandateAdd.php" hash="e92716cd8eeddab5ac0e28666a5ddd61"/><file name="MandateDebit.php" hash="ae09eb661936b125a3bca5bba39ca375"/><file name="MandateGet.php" hash="5e53cf099612a0b82a89f3516ec55d17"/><file name="RecurringAdd.php" hash="167a30314a8713bbfaa6906ae72aad57"/><file name="RecurringGet.php" hash="db7d5d73370b0428f86667e1f6b92101"/><file name="Update.php" hash="6ee552228f2fd98990eb453204b8506a"/></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="f8dad4880859a66e605209155459df01"/><file name="GetAllTerminals.php" hash="17f824a8519736ac04f63829f2d83edb"/><file name="GetTransactionTicket.php" hash="57e956e4bfef63a853b03759d13f8174"/><file name="Instore.php" hash="a4ebe56c07aabf875fa2975929a33f21"/><file name="Payment.php" hash="da4ee88b3b6992f7a4b438d4c2991330"/><file name="Status.php" hash="0507f8028097860e3145dee82f364297"/></dir><dir name="Refund"><file name="Add.php" hash="3dc8bf8b3c7be9f28982188276fcd74c"/><file name="Refund.php" hash="7d237e5128a9c1063ba70e705cca3c37"/></dir><dir name="Service"><file name="GetPayLinkUrl.php" hash="a290b8533f30b871b46f3a0295c41dad"/><file name="Service.php" hash="1e664edea598d318466b050144ba6880"/></dir><dir name="Transaction"><file name="Approve.php" hash="d1709966f1f042b41d1bc44926f27dee"/><file name="Capture.php" hash="604738b3fe9b4451d5802de1c07fc9ba"/><file name="Decline.php" hash="0a6c37c859560af8bef2ec37edc64450"/><file name="GetService.php" hash="0bca117078f4ff5e705e0577fb70c586"/><file name="Info.php" hash="7a9f8568b606c096984c0a7da7916e11"/><file name="Refund.php" hash="d4e01fbcb8abba8df170498c0dd56168"/><file name="Start.php" hash="8cd62ceeaedd845378c9d2c714aca19c"/><file name="Transaction.php" hash="d80ebf3623abd560e8ecd4ae8c92639a"/><file name="Void.php" hash="e76c3dc2432e51db9c7d785ee4f0dbd5"/></dir><dir name="Validate"><file name="IsPayServerIp.php" hash="c403fb225d08b6b011edf866c9d43156"/><file name="Validate.php" hash="d3feb1fa0edb37bbee86ef935d149f38"/></dir><dir name="Voucher"><file name="Activate.php" hash="7932b7899e9770821e712b59e952e3b5"/><file name="Balance.php" hash="5e4cf8999d7e353d98006c8b068ca069"/><file name="Charge.php" hash="525d1e8491418c49e705d08f907aabdc"/><file name="Voucher.php" hash="ba71c6cd712fb89c6682a70b03f550f3"/></dir></dir><file name="Config.php" hash="e73385a4fc039062d12d406435a9716b"/><dir name="Curl"><file name="Dummy.php" hash="1745478bcae3d5081f9b12cc81f1e0ca"/></dir><file name="Currency.php" hash="49f1340a25d7a9b1cfdfb3073104e92c"/><dir name="DirectDebit"><file name="Mandate.php" hash="6b778ce4c44d2d2d4db66f6dcea08e29"/><file name="Recurring.php" hash="821065f96b13bda3d0f835638a745ee0"/></dir><file name="DirectDebit.php" hash="329bd85db112da942644a766b79802f0"/><dir name="Error"><file name="Api.php" hash="bbe509d6742ba5ac54e67db2865b9d59"/><file name="Error.php" hash="63a453baf90355604d24ddf015df7a34"/><file name="NotFound.php" hash="115ec3c5650244dd84c9e71ada3945ed"/><dir name="Required"><file name="ApiToken.php" hash="0485882225b6e0679e0f6c974b1b7aeb"/><file name="ServiceId.php" hash="8e17bb932fa9b03c265512143c57dd5d"/></dir><file name="Required.php" hash="37f246dd05e95cb5a5793ec80b618f32"/></dir><file name="Helper.php" hash="5b327f622fcc7b6dcc601761283956d2"/><file name="Instore.php" hash="a114c542769c3ead1521ee52bfab58e7"/><file name="Paymentmethods.php" hash="bbce6a45fb49fbe4d3e242b85d35b9cb"/><file name="Refund.php" hash="ab8011579f035c5529f71e1af32ee816"/><dir name="Result"><dir name="DirectDebit"><file name="Add.php" hash="710be2f5e0c263226de6ddcc12b5160f"/><file name="Get.php" hash="044463d71af40ef9f8022bf9aa54394c"/><dir name="Mandate"><file name="Add.php" hash="28c1cd015980a69a0827509222b13922"/><file name="AddTransaction.php" hash="60d92d48c11921d03f036aa6b3b3425e"/><file name="Get.php" hash="e27eda30346c16512d74d2682c8542b0"/></dir><dir name="Recurring"><file name="Add.php" hash="5a317db77bccf59ec7ec3b5604ec53ba"/><file name="Get.php" hash="ed4c97826dd6af0144e415d93535d61d"/></dir></dir><dir name="Instore"><file name="ConfirmPayment.php" hash="c40673aa1b0986581f20c64c03be9e5e"/><file name="Payment.php" hash="4cebf421c4fc05ec86d3adfef5ec8261"/><file name="Receipt.php" hash="93363b372e01a7125335d574d8634760"/><file name="Status.php" hash="9a53d172946cd5760d058370d52ba2c7"/><file name="Terminals.php" hash="865b4b8afd074f70c4e2201bc11f4771"/></dir><dir name="Refund"><file name="Add.php" hash="d055da637564eef29e804a1faef1dbf8"/></dir><file name="Result.php" hash="4175022c91a50bdbd91ffe438b043d2b"/><dir name="Transaction"><file name="Refund.php" hash="3e22f2aa8f531a6eb07fde33047ed82e"/><file name="Start.php" hash="7200ebdb50cf149ceea8c013c82c6eab"/><file name="Transaction.php" hash="351737022ccf57de09e75d25fb7eedfd"/></dir><dir name="Voucher"><file name="Voucher.php" hash="d3d991fac30467cce37b0de53a615ae1"/></dir></dir><file name="Service.php" hash="bcfb8d540a089363ddd8db69d09c8b60"/><file name="Transaction.php" hash="4f459a95471b40ee742f0d78cef3a740"/><file name="Validate.php" hash="8469564f78184177934295ce28b96a54"/><file name="Voucher.php" hash="d6e202d522ffd37692aad50989f001ec"/></dir><dir name="tests"><file name="ConfigTest.php" hash="b7f00c625a9df9718d97b3bf6b688c99"/><file name="CurrencyTest.php" hash="e9cfe5bb2bc4371321fb408fc53f83d8"/><file name="HelperTest.php" hash="61f43eaa726ad662ab47f9a718438983"/><file name="PaymentmethodsTest.php" hash="eec5b50c78f43edac925cfb9f89b33cd"/><file name="RefundTest.php" hash="8a93fe0d1eb2ffe13c14214d4cd0109a"/><file name="TransactionTest.php" hash="85318b09514abc0432dcda91c647187f"/><file name="ValidateTest.php" hash="b5090dd8ee903face24f21a9bdce2c95"/><dir name="dummyData"><dir name="Refund"><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/></dir><dir name="Transaction"><dir name="Result"><file name="approve.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="decline.json" hash="cca7667c9092cae77189660118f45aaa"/><file name="refund.json" hash="f9e4da66248a64f964723b4ed6c7ffdf"/><file name="refundError.json" hash="c71c384b2cfae94c429ccfb8d28fd4e1"/><file name="transactionPaid.json" hash="938a9e79081292a6ebaf2163175d64ec"/><file name="transactionVerify.json" hash="a04928cef5af76fa2d3cd23662517d89"/></dir><file name="startOk.json" hash="0fea5cb9fa6a59dba6226942053648fb"/></dir><dir name="Validate"><file name="isPayServerIpNo.json" hash="476b4edbf5412cdfb318c74fc21a11d8"/><file name="isPayServerIpYes.json" hash="6ce66f3fb6a06d6b77059803d4fef7c0"/></dir><file name="currencies.json" hash="103b88f54e43ff2585d42a70b6370c67"/><file name="getService.json" hash="345a55bdadb305146b121b7996f4b9c0"/></dir></dir><file name=".gitignore" hash="54b761861a00672137da5cf9fe00e2de"/><file name=".travis.yml" hash="ccf7c0d24624132428b4b9539b78ecf3"/></dir></dir><dir name="php-curl-class"><dir name="php-curl-class"><file name="LICENSE" hash="7246f848faa4e9c9fc0ea91122d6e680"/><file name="README.md" hash="f2eeff9b53b4824b6fd88b2be85e4dcc"/><file name="composer.json" hash="c27df8073014d0fea654e916009f8466"/><dir name="docs"><file name="Makefile" hash="1b19a74bb48c433ab52d7c381b78dc7e"/><file name="README.md" hash="9e9a36f20f8c03c734345beaa2edb0a5"/><dir name="source"><file name="conf.py" hash="98412cfa8535eb2749a53b6d88371635"/><file name="faq.rst" hash="fc97af6348e454000aca799cab6d0053"/><file name="index.rst" hash="d8e3e63cc6a63f60721bc1a1c3f5001c"/><file name="overview.rst" hash="1e62e027121ef9aaa19bdd317d44ede2"/></dir><file name=".gitignore" hash="2529e845806d223afb1ff7dcdeab55d4"/></dir><dir name="examples"><file name="README.md" hash="944a15e05bd22c875d6698a6389399c8"/><file name="coinbase_account_balance.php" hash="06c04fad60f4fa6670f674165003e9af"/><file name="coinbase_spot_rate.php" hash="27bb3b0f5387e019ff906fe3d13bf2c4"/><file name="deviant_art_rss.php" hash="fa0151454eb0de60483bfbf2649b8f8a"/><file name="download_file.php" hash="c1cced0f90217042812e29db6ac0c10d"/><file name="download_file_with_callback.php" hash="3ea9b3feebbc3bd83f77ed52a18de05d"/><file name="flickr.class.php" hash="43179dade7dd33508981ee478002a2f5"/><file name="flickr_photo_search.php" hash="26d02cb1ccdfb7a7a3ec39b6c59d4971"/><file name="flickr_upload_photo.php" hash="0d11e5ba8f41398fec8e6cc977b55c82"/><file name="get.php" hash="c47177bc4f87f84b1502f35ba0e6d1e6"/><file name="get_base_url_1.php" hash="9ed7f693187b90ce9ee1aa4b420ffe52"/><file name="get_base_url_2.php" hash="8b499939e897066c0885928ff475b44b"/><file name="github_create_gist.php" hash="3192e4063a43dce6bf3901d782c4ac40"/><file name="gmail_send_email.php" hash="5e4411eb80b16d4d42f2b94053f32c30"/><file name="google_maps_geocode_address.php" hash="f150e2ec72013094a774092b2696d670"/><file name="google_plus_profile.php" hash="ab6e6cf7b33945fda76fe7c2ed66c540"/><file name="gratipay_send_tip.php" hash="05ea71d33448196288445feb14d431d6"/><file name="instagram_popular_media.php" hash="f7266d36e6fa96ac7594654a6918abf5"/><file name="instagram_search_photos.php" hash="f8d44579efe04a7ed739e45a5af26bdd"/><file name="mailchimp_subscribe_email_address.php" hash="1bd4d2508a06096a33088943c539d643"/><file name="multi_curl_before_send.php" hash="98f002a915261b6375e2a8cbf033c624"/><file name="multi_curl_delete.php" hash="2384ea09bff8b031565e63e75e313040"/><file name="multi_curl_download.php" hash="8701601b7192d1671ed834020684480d"/><file name="multi_curl_download_with_callback.php" hash="f68cffed4c903407320396188604f422"/><file name="multi_curl_get.php" hash="f4b8b67ca9d8370a48ca791b9cd37328"/><file name="multi_curl_get_callbacks.php" hash="b8af5ee91e9c24a2cf1f1440a244b3ce"/><file name="multi_curl_patch.php" hash="9237e7c26a7f0cd45034bf55e602c256"/><file name="multi_curl_post.php" hash="1f7a00588adde05f39e1f93d3840d7ed"/><file name="multi_curl_put.php" hash="5ba9ddeae279a4089f7f7eaad942aa95"/><file name="post.php" hash="5414eda7a246263ddeb5920ee7c45bc3"/><file name="post_json.php" hash="0a5fdb77bc668ba5d841eca3fb2ab75c"/><file name="post_redirect_get.php" hash="042d70bc4d0bf463b89c602b20776bec"/><file name="progress.php" hash="279aa9284556d014fc78e96c1b75cd50"/><file name="progress_advanced.php" hash="c3d91329a1fc927bab54c10bed176408"/><file name="proxy.php" hash="e3acfff828e3949c2e984fe860fa479f"/><file name="put.php" hash="7d75554c8c4b2195bd2598c77c952838"/><file name="reddit_top_pics.php" hash="7fda200709ea7ec03df2c8a53a485892"/><file name="set_cookie.php" hash="2600096ebec5c6583156c9280955a7e2"/><file name="set_url_1.php" hash="fabbe1c29525b92888a0936485691d29"/><file name="set_url_2.php" hash="3c71c517455f994a06cb08d2e94ce0c8"/><file name="twitter_post_tweet.php" hash="a252660e9bffd0641381a0ad0813fa78"/><file name="twitter_trending_topics.php" hash="23053d5dfd766c98182378f3a1249e5d"/><file name="upload_file.php" hash="05050db0aa963192e9d85171b77ae341"/><file name="youtube_list_playlist_videos.php" hash="6c5ae3f3cdf6dcb5c5fe360624d47bef"/><file name="youtube_video_count.php" hash="f9d7598ab61717f719b99d9b076b2ca4"/></dir><dir name="scripts"><file name="bump_major_version.php" hash="f930cf07539423734d5f7378fa5646de"/><file name="bump_minor_version.php" hash="03754135acff395b4ecca040471b509e"/><file name="bump_patch_version.php" hash="df1d6bdffd08a3972878fa9096ca8982"/><file name="update_readme_methods.sh" hash="6a84cc9cb7e74303a854104201333e0e"/><file name="v4_migration.php" hash="1204efd398ee5562283229f9e12250c3"/></dir><dir name="src"><dir name="Curl"><file name="CaseInsensitiveArray.php" hash="517e786b03deb69d055072059a6f6589"/><file name="Curl.php" hash="f80a854bc7e74bd2a9960dd95483fadd"/><file name="MultiCurl.php" hash="9030703db3afaf9ff3851454dca961b3"/></dir></dir><dir name="tests"><dir name="PHPCurlClass"><file name="Helper.php" hash="a90668ebc6045420e86582fd30c3c11c"/><file name="PHPCurlClassTest.php" hash="b1c186f447b184fdebd5b44b280ea820"/><file name="PHPMultiCurlClassTest.php" hash="80cbe86949f4c0a2fa9002c1135bbada"/><file name="server.php" hash="69ed2817f2a3d5fc91ccfc2b0a35d5fa"/></dir><file name="before_script.sh" hash="9662ccee85ad2a2d6756bc9042f1a972"/><file name="check_syntax.sh" hash="bcec868d19007801e7a6d97a8a352d30"/><file name="phpunit.xml" hash="02538f4dc944563d09cb7c8503304f6c"/><file name="run.sh" hash="b480ddd83c3c09ec768a25ed8ca53e02"/><file name="script.sh" hash="fc29b81395c851a876531d73a2591b55"/></dir><dir name=".github"><file name="CONTRIBUTING.md" hash="8ddd43058158bea44998b574a271fe64"/><file name="ISSUE_TEMPLATE.md" hash="2249b43c827634a6b3616cfabd9f51f2"/></dir><file name=".gitignore" hash="62f86c4700c6fd118d837d9b9cb369ae"/><file name=".travis.yml" hash="3da971d2cee55f305f06c243db0179fb"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5299cf1294e69a744c6a87405859c7fd"/><file name="klarna.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/><file name="yehhpay.phtml" hash="b154ba769fd50ece09109f8780ba3b5b"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="instore.phtml" hash="5a93eefb7c592c05478681dce9d16b3b"/><file name="klarna.phtml" hash="1a496f7ebb8bd1361332519a3331faaa"/><file name="paylink.phtml" hash="1f030c00390300cac93e347872c560cf"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
24
  </package>