sisowpayment - Version 4.3.0

Version Notes

Fix: pending klarna mail
Added: Giropay payment method
Added: EPS payment method

Download this release

Release Info

Developer Magento Core Team
Extension sisowpayment
Version 4.3.0
Comparing to
See all releases


Code changes from version 4.2.4 to 4.3.0

app/code/local/Sisow/Block/Redirect.php CHANGED
@@ -353,6 +353,9 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
353
 
354
  $transaction_closed = true;
355
  $transaction_type = Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE;
 
 
 
356
  }
357
  else
358
  {
@@ -373,6 +376,9 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
373
 
374
  $transaction_closed = true;
375
  $transaction_type = Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE;
 
 
 
376
  }
377
 
378
  $order->setState($state, $st, $comm);
353
 
354
  $transaction_closed = true;
355
  $transaction_type = Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE;
356
+
357
+ if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel" || Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_with_cancel")
358
+ $order->sendNewOrderEmail();
359
  }
360
  else
361
  {
376
 
377
  $transaction_closed = true;
378
  $transaction_type = Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE;
379
+
380
+ if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel" || Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_with_cancel")
381
+ $order->sendNewOrderEmail();
382
  }
383
 
384
  $order->setState($state, $st, $comm);
app/code/local/Sisow/controllers/CheckoutController.php CHANGED
@@ -154,9 +154,7 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
154
  case "Success":
155
  if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
156
  $order->sendNewOrderEmail();
157
-
158
- Mage::log($orderid . ' send mail state: ' . Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()), null, 'log_sisow_mail.log');
159
-
160
  if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
161
  $base->trxId = $_GET['trxid'];
162
 
@@ -177,6 +175,9 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
177
  $info->save();
178
  break;
179
  case "Paid":
 
 
 
180
  if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
181
  $base->trxId = $_GET['trxid'];
182
 
@@ -233,20 +234,22 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
233
  $comm .= "Fout in netwerk (Failure).";
234
  break;
235
  case "PendingKlarna":
236
- return;
 
237
  case "Reservation":
238
- if ($payment && ($payment->getMethod() == 'sisowklarna' || $payment->getMethod() == 'sisowklaacc')) {
239
- $comm = 'Klarna reservation created.<br />';
240
- $mState = Mage_Sales_Model_Order::STATE_PROCESSING;
241
- $mStatus = Mage::getStoreConfig('sisow_core/status_reservation');
242
- if (!$mStatus) {
243
- $mStatus = Mage_Sales_Model_Order::STATE_PROCESSING;
244
- }
245
-
246
- $info = $order->getPayment()->getMethodInstance()->getInfoInstance();
247
- $info->setAdditionalInformation('trxid', $base->trxId );
248
- $info->save();
249
- }
 
250
  }
251
 
252
  $payment_transaction = Mage::getModel('sales/order_payment')
@@ -255,7 +258,7 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
255
  ->setIsTransactionClosed(true);
256
 
257
  $order->setPayment($payment_transaction);
258
-
259
  if( strpos($payment->getMethod(), 'klarna') )
260
  $mail = 0;
261
  else
@@ -269,12 +272,9 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
269
  echo '$order->setState(' . $mState . ', ' . $mStatus . ', ' . $comm . ')';
270
 
271
  } elseif ($mState !== null && ($mState != $ostate || $mStatus != $ostate)) {
272
- if($mail == 1)
273
- {
274
- $order->setState($mState, $mStatus, $comm, true);
275
- $payment_transaction->addTransaction(Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE);
276
- echo '$order->setState(' . $mState . ', ' . $mStatus . ', ' . $comm . ')';
277
- }
278
  }
279
 
280
  //$order->save();
@@ -301,6 +301,7 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
301
  echo 'Can\'t create Invoice!';
302
  }
303
  }
 
304
  $order->save();
305
 
306
  exit;
154
  case "Success":
155
  if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
156
  $order->sendNewOrderEmail();
157
+
 
 
158
  if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
159
  $base->trxId = $_GET['trxid'];
160
 
175
  $info->save();
176
  break;
177
  case "Paid":
178
+ if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
179
+ $order->sendNewOrderEmail();
180
+
181
  if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
182
  $base->trxId = $_GET['trxid'];
183
 
234
  $comm .= "Fout in netwerk (Failure).";
235
  break;
236
  case "PendingKlarna":
237
+ exit('Still Pending');
238
+ break;
239
  case "Reservation":
240
+ $comm = 'Klarna reservation created.<br />';
241
+ $mState = Mage_Sales_Model_Order::STATE_PROCESSING;
242
+ $mStatus = Mage::getStoreConfig('sisow_core/status_reservation');
243
+ if (!$mStatus) {
244
+ $mStatus = Mage_Sales_Model_Order::STATE_PROCESSING;
245
+ }
246
+
247
+ $info = $order->getPayment()->getMethodInstance()->getInfoInstance();
248
+ $info->setAdditionalInformation('trxid', $base->trxId );
249
+ $info->save();
250
+
251
+ if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
252
+ $order->sendNewOrderEmail();
253
  }
254
 
255
  $payment_transaction = Mage::getModel('sales/order_payment')
258
  ->setIsTransactionClosed(true);
259
 
260
  $order->setPayment($payment_transaction);
261
+
262
  if( strpos($payment->getMethod(), 'klarna') )
263
  $mail = 0;
264
  else
272
  echo '$order->setState(' . $mState . ', ' . $mStatus . ', ' . $comm . ')';
273
 
274
  } elseif ($mState !== null && ($mState != $ostate || $mStatus != $ostate)) {
275
+ $order->setState($mState, $mStatus, $comm, true);
276
+ $payment_transaction->addTransaction(Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE);
277
+ echo '$order->setState(' . $mState . ', ' . $mStatus . ', ' . $comm . ')';
 
 
 
278
  }
279
 
280
  //$order->save();
301
  echo 'Can\'t create Invoice!';
302
  }
303
  }
304
+
305
  $order->save();
306
 
307
  exit;
app/code/local/Sisow/etc/config.xml CHANGED
@@ -237,7 +237,7 @@
237
  <allowspecific>1</allowspecific>
238
  <specificcountry>BE</specificcountry>
239
  </sisow_mistercash>
240
- <!--<sisow_giropay>
241
  <group>sisow</group>
242
  <active>0</active>
243
  <model>sisow/methods_Giropay</model>
@@ -245,7 +245,7 @@
245
  <testmode>0</testmode>
246
  <allowspecific>1</allowspecific>
247
  <specificcountry>DE</specificcountry>
248
- </sisow_giropay>-->
249
  <sisow_sofort>
250
  <group>sisow</group>
251
  <active>0</active>
@@ -255,7 +255,7 @@
255
  <allowspecific>1</allowspecific>
256
  <specificcountry>AT,BE,FR,DE,IT,NL,PL,ES,CH</specificcountry>
257
  </sisow_sofort>
258
- <!--<sisow_eps>
259
  <group>sisow</group>
260
  <active>0</active>
261
  <model>sisow/methods_Eps</model>
@@ -263,7 +263,7 @@
263
  <testmode>0</testmode>
264
  <allowspecific>1</allowspecific>
265
  <specificcountry>AT</specificcountry>
266
- </sisow_eps>-->
267
  <sisow_visa>
268
  <group>sisow</group>
269
  <active>0</active>
237
  <allowspecific>1</allowspecific>
238
  <specificcountry>BE</specificcountry>
239
  </sisow_mistercash>
240
+ <sisow_giropay>
241
  <group>sisow</group>
242
  <active>0</active>
243
  <model>sisow/methods_Giropay</model>
245
  <testmode>0</testmode>
246
  <allowspecific>1</allowspecific>
247
  <specificcountry>DE</specificcountry>
248
+ </sisow_giropay>
249
  <sisow_sofort>
250
  <group>sisow</group>
251
  <active>0</active>
255
  <allowspecific>1</allowspecific>
256
  <specificcountry>AT,BE,FR,DE,IT,NL,PL,ES,CH</specificcountry>
257
  </sisow_sofort>
258
+ <sisow_eps>
259
  <group>sisow</group>
260
  <active>0</active>
261
  <model>sisow/methods_Eps</model>
263
  <testmode>0</testmode>
264
  <allowspecific>1</allowspecific>
265
  <specificcountry>AT</specificcountry>
266
+ </sisow_eps>
267
  <sisow_visa>
268
  <group>sisow</group>
269
  <active>0</active>
app/code/local/Sisow/etc/system.xml CHANGED
@@ -447,7 +447,7 @@
447
  </payment_fee_label>
448
  </fields>
449
  </sisow_mistercash>
450
- <!--<sisow_giropay translate="label" module="sisow">
451
  <label>Sisow Giropay</label>
452
  <sort_order>25</sort_order>
453
  <show_in_default>1</show_in_default>
@@ -600,7 +600,7 @@
600
  <comment>Payment fee label to show</comment>
601
  </payment_fee_label>
602
  </fields>
603
- </sisow_giropay>-->
604
  <sisow_sofort translate="label" module="sisow">
605
  <label>Sisow SofortBanking</label>
606
  <sort_order>30</sort_order>
@@ -755,7 +755,7 @@
755
  </payment_fee_label>
756
  </fields>
757
  </sisow_sofort>
758
- <!--<sisow_eps translate="label" module="sisow">
759
  <label>Sisow EPS</label>
760
  <sort_order>35</sort_order>
761
  <show_in_default>1</show_in_default>
@@ -908,7 +908,7 @@
908
  <comment>Payment fee label to show</comment>
909
  </payment_fee_label>
910
  </fields>
911
- </sisow_eps>-->
912
  <sisow_visa translate="label" module="sisow">
913
  <label>Sisow Visa</label>
914
  <sort_order>40</sort_order>
447
  </payment_fee_label>
448
  </fields>
449
  </sisow_mistercash>
450
+ <sisow_giropay translate="label" module="sisow">
451
  <label>Sisow Giropay</label>
452
  <sort_order>25</sort_order>
453
  <show_in_default>1</show_in_default>
600
  <comment>Payment fee label to show</comment>
601
  </payment_fee_label>
602
  </fields>
603
+ </sisow_giropay>
604
  <sisow_sofort translate="label" module="sisow">
605
  <label>Sisow SofortBanking</label>
606
  <sort_order>30</sort_order>
755
  </payment_fee_label>
756
  </fields>
757
  </sisow_sofort>
758
+ <sisow_eps translate="label" module="sisow">
759
  <label>Sisow EPS</label>
760
  <sort_order>35</sort_order>
761
  <show_in_default>1</show_in_default>
908
  <comment>Payment fee label to show</comment>
909
  </payment_fee_label>
910
  </fields>
911
+ </sisow_eps>
912
  <sisow_visa translate="label" module="sisow">
913
  <label>Sisow Visa</label>
914
  <sort_order>40</sort_order>
app/design/frontend/base/default/layout/sisow.xml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <layout version="0.1.0">
3
+ <STORE_default>
4
+ <reference name="head">
5
+ <block type="core/text" name="sisow.giropay">
6
+ <action method="setText">
7
+ <text>
8
+ <![CDATA[<link type="text/css" rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v1/style.css" media="all" />]]>
9
+ <![CDATA[<link type="text/css" rel="stylesheet" href="https://bankauswahl.giropay.de/eps/widget/v1/style.css" media="all" />]]>
10
+ <![CDATA[<script src="https://www.sisow.nl/Sisow/scripts/giro-eps.js"></script>]]>
11
+ </text>
12
+ </action>
13
+ </block>
14
+ </reference>
15
+ </STORE_default>
16
+ </layout>
app/locale/nl_NL/Sisow.csv CHANGED
@@ -15,7 +15,7 @@
15
  "You will receive an e-mail with information on how to complete your payment.", "U ontvangt een e-mail met daarin informatie hoe u uw betaling kunt voltooien."
16
  "The processing is outsourced to Sisow B.V.", "De verwerking hiervan is uitbesteed aan Sisow B.V."
17
  "You have chosen to pay in advance by bank transfer.", "U heeft ervoor gekozen om uw bestelling per bank/giro over te maken."
18
- "Salutation", "Aanhef"
19
  "Male", "De heer"
20
  "Female", "Mevrouw"
21
  "Telephone Number", "Telefoon nummer"
15
  "You will receive an e-mail with information on how to complete your payment.", "U ontvangt een e-mail met daarin informatie hoe u uw betaling kunt voltooien."
16
  "The processing is outsourced to Sisow B.V.", "De verwerking hiervan is uitbesteed aan Sisow B.V."
17
  "You have chosen to pay in advance by bank transfer.", "U heeft ervoor gekozen om uw bestelling per bank/giro over te maken."
18
+ "Salutation", "Geslacht"
19
  "Male", "De heer"
20
  "Female", "Mevrouw"
21
  "Telephone Number", "Telefoon nummer"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sisowpayment</name>
4
- <version>4.2.4</version>
5
  <stability>stable</stability>
6
  <license/>
7
  <channel>community</channel>
@@ -17,11 +17,13 @@ Klarna Account&#xD;
17
  Klarna Invoice&#xD;
18
  MisterCash&#xD;
19
  Sofort</description>
20
- <notes>Fix: pending klarna</notes>
 
 
21
  <authors><author><name>Sisow</name><user>auto-converted</user><email>support@sisow.nl</email></author></authors>
22
- <date>2015-04-01</date>
23
- <time>13:06:28</time>
24
- <contents><target name="magelocale"><dir name="nl_NL"><file name="Sisow.csv" hash="3c34bbc6892ce908fe3880bf52866b46"/></dir></target><target name="mageetc"><dir name="modules"><file name="Sisow.xml" hash="7da3fbd82a48d5428b8c723bafbb946b"/></dir></target><target name="magelocal"><dir name="Sisow"><dir name="Block"><dir name="Adminhtml"><file name="Notice.php" hash="56154d92843b3c8a205837010405923e"/></dir><dir name="Paymentfee"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="c086b64c05012dc579ee54fb6e50c5a3"/></dir></dir></dir><dir name="Checkout"><file name="Fee.php" hash="c7b7b19d5f2d2c5fbd07f355f8f57f9e"/></dir><dir name="Creditmemo"><file name="Totals.php" hash="ccfaa67f45416ab398ec55ea7356b537"/></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="a715f52568aa5f4a42a65437be3d0fb8"/></dir></dir><dir name="Order"><dir name="Totals"><file name="Fee.php" hash="2158794a5836acedc765900403649b16"/></dir></dir></dir><dir name="Paymentmethod"><file name="Creditcard.php" hash="bddf58a2a12dae02e5061b04e68345da"/><file name="Default.php" hash="b1c2947be1e0e731a5aea8757f038018"/><file name="DefaultInfo.php" hash="12bc768b15a910295c911f4790ae936a"/><file name="Eps.php" hash="561dd123d17e0b8b44c8d365d0bc4e00"/><file name="Focum.php" hash="cc242ee202d45176ff1265ca445ec937"/><file name="Giropay.php" hash="712d77e79fcab547ca5544b7e6b2807f"/><file name="Ideal.php" hash="45d11ae70ca002c9c2f10431d65f388e"/><file name="IdealInfo.php" hash="f2be70b33ab781c89a25c4be6f738067"/><file name="Klarna.php" hash="8b529f2c376fd78888b91d8d73339118"/><file name="Klarnaacc.php" hash="2923d73bb1a9b8ad712d7671c6012e37"/><file name="Overboeking.php" hash="87050fba1fb782fce9e02e5c8095ef2e"/></dir><file name="Redirect.php" hash="107b2f81b466f1b9d4e22642acbbc00e"/></dir><dir name="Helper"><file name="Data.php" hash="42c4a6fdcc9e0c827829f54144775fb6"/><file name="Paymentfee.php" hash="44f51f6166d85f0d6df2348c094ba0aa"/></dir><dir name="Model"><dir name="Config"><file name="Autoinvoice.php" hash="d4edbab951b4b16e8ccab660bbee8fda"/><file name="GeneralAutoinvoice.php" hash="603d830548bf012631fa0e0f00738802"/><file name="Newordermail.php" hash="b0225e1243442e4c1df1ea4eaab72c5c"/><file name="NewordermailMethod.php" hash="41813afa9531be21163c6a4c1550b759"/></dir><dir name="Methods"><file name="Abstract.php" hash="414b9f57a3e10811d4ba7eb3ca5ad227"/><file name="Ebill.php" hash="b4e00783ca4854a4a13e2f4ed78e0e77"/><file name="Eps.php" hash="2e167aa5f5de19e61372b82eefc43c40"/><file name="Focum.php" hash="8802d0c495c6188340391d0d6f5faa0c"/><file name="Giropay.php" hash="e9c83931c3d1491ff14d12288c4f6348"/><file name="Ideal.php" hash="26275c27874cd4e1eb32b7d59540c65e"/><file name="Klarna.php" hash="46a92a6a29e51e2e152389475e77d025"/><file name="Klarnaacc.php" hash="6905ba077eab559fe4d24a864e0ed416"/><file name="Maestro.php" hash="7372b9babeb8e60e6e7de39a6a249747"/><file name="Mastercard.php" hash="f09053c2dd9581aa094063254178207f"/><file name="Mistercash.php" hash="f56cfae23c74791432cef1e50733829c"/><file name="Overboeking.php" hash="028a8cb928c8fe1fd84645a5427ceae1"/><file name="Paypalec.php" hash="8f802ac3efc8709ab17e130671b1c8dd"/><file name="Sofort.php" hash="f9ebf43bda7ffd62582c869a5ba5014b"/><file name="Visa.php" hash="0214e927261846df04892bdf2c048792"/><file name="WebshopGiftcard.php" hash="3ea06c83b6c0d1f87f1d61dcbf3a55c7"/></dir><dir name="Observer"><file name="Order.php" hash="e5e0ce8e5a05c3c2f87d3893b9932be8"/><file name="Paymentfee.php" hash="78835217b2b6875e14da8b6630c21456"/><file name="Sendebill.php" hash="3042553c46184cea135d9e527055092c"/><file name="Submit.php" hash="47aa5da33f953cf9363f05578b2850fe"/></dir><dir name="Paymentfee"><dir name="Creditmemo"><file name="Total.php" hash="2340fd22ec6597f5fad53d9faea2d9fe"/></dir><dir name="Invoice"><dir name="Pdf"><file name="Total.php" hash="cec95df39f550cd70e6eb63b16cfb627"/></dir><file name="Tax.php" hash="5fba21bc05a7ed55b3c57ccb4b2790b5"/><file name="Total.php" hash="b77c63f1173d2112056a782490968cf6"/></dir><dir name="Quote"><file name="Quote.php" hash="838ad691a2da75b942a8ef41c2815a9a"/><file name="TaxTotal.php" hash="bd7cd2a16dc3dbc8c7a3c82746a0f671"/><file name="Total.php" hash="d2c8afd1ec4c96b6215ae28766e18177"/></dir></dir><file name="Base.php" hash="16fcca65584580b116b0ea9a75524ce3"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="f9a7575bdd75cad75286f3901f54d0b4"/><file name="NotifyController.php" hash="4793822e1b937191ace1f2925038082f"/></dir><dir name="etc"><file name="config.xml" hash="e931b6fc3bbfe92460a48803ff7ab638"/><file name="system.xml" hash="eb7e6cb9d8d49644033a2301b71d88bd"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sisow"><dir name="adminhtml"><file name="notice.phtml" hash="7fa2d76678ad34eae48516fd757c30df"/></dir><dir name="checkout"><file name="default_info.phtml" hash="558581601de86afce3bd62ea50de7a4e"/><file name="ideal_info.phtml" hash="864ee0e16191ef6dca5c18522172b51c"/></dir><file name="form.phtml" hash="0dc40ad38b62218d6f947674312b7a61"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="sisow"><dir name="checkout"><file name="default_form.phtml" hash="200cebfa46ff85c95fdc0cedda4441a4"/><file name="default_info.phtml" hash="94eeee994f2f21dc36489f6b7824e616"/><file name="eps_form.phtml" hash="a202c60fba2712e9f677fa0ba6034068"/><file name="focum_form.phtml" hash="e1076aadcee16249baaf0b5e4c079d1a"/><file name="giropay_form.phtml" hash="64100a34bd184137a52be2bf18f78478"/><file name="ideal_form.phtml" hash="37f399e0cd922e70586a3be6a00f76a3"/><file name="ideal_info.phtml" hash="88e15559e2f0cca9744b4dae1a81a1ea"/><file name="klarna_form.phtml" hash="8a232f3e8f6e3bcf453298a922dd26bf"/><file name="klarnaacc_form.phtml" hash="c2e32986bbd9a95bea23b1ff8d49ef0e"/><file name="overboeking_form.phtml" hash="164e244d6df230f20f460012fc72a7d8"/></dir><dir name="paymentfee"><dir name="checkout"><file name="fee.phtml" hash="79362bab3963195ad6727d077fe87b11"/></dir></dir><file name="form.phtml" hash="8874a0713c384d1346f6ae713f2cb9bd"/><file name="formecare.phtml" hash="0de41387de5f0c8d35066c0f30e113c2"/><file name="formovb.phtml" hash="20da22a0ef4384411bf971ff133a6a2c"/></dir></dir></dir></dir></dir></target></contents>
25
  <compatible/>
26
  <dependencies/>
27
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sisowpayment</name>
4
+ <version>4.3.0</version>
5
  <stability>stable</stability>
6
  <license/>
7
  <channel>community</channel>
17
  Klarna Invoice&#xD;
18
  MisterCash&#xD;
19
  Sofort</description>
20
+ <notes>Fix: pending klarna mail&#xD;
21
+ Added: Giropay payment method&#xD;
22
+ Added: EPS payment method</notes>
23
  <authors><author><name>Sisow</name><user>auto-converted</user><email>support@sisow.nl</email></author></authors>
24
+ <date>2015-04-10</date>
25
+ <time>10:58:15</time>
26
+ <contents><target name="magelocale"><dir name="nl_NL"><file name="Sisow.csv" hash="bd2ef07e171945a0784a8ee8b79362bb"/></dir></target><target name="mageetc"><dir name="modules"><file name="Sisow.xml" hash="7da3fbd82a48d5428b8c723bafbb946b"/></dir></target><target name="magelocal"><dir name="Sisow"><dir name="Block"><dir name="Adminhtml"><file name="Notice.php" hash="56154d92843b3c8a205837010405923e"/></dir><dir name="Paymentfee"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="c086b64c05012dc579ee54fb6e50c5a3"/></dir></dir></dir><dir name="Checkout"><file name="Fee.php" hash="c7b7b19d5f2d2c5fbd07f355f8f57f9e"/></dir><dir name="Creditmemo"><file name="Totals.php" hash="ccfaa67f45416ab398ec55ea7356b537"/></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="a715f52568aa5f4a42a65437be3d0fb8"/></dir></dir><dir name="Order"><dir name="Totals"><file name="Fee.php" hash="2158794a5836acedc765900403649b16"/></dir></dir></dir><dir name="Paymentmethod"><file name="Creditcard.php" hash="bddf58a2a12dae02e5061b04e68345da"/><file name="Default.php" hash="b1c2947be1e0e731a5aea8757f038018"/><file name="DefaultInfo.php" hash="12bc768b15a910295c911f4790ae936a"/><file name="Eps.php" hash="561dd123d17e0b8b44c8d365d0bc4e00"/><file name="Focum.php" hash="cc242ee202d45176ff1265ca445ec937"/><file name="Giropay.php" hash="712d77e79fcab547ca5544b7e6b2807f"/><file name="Ideal.php" hash="45d11ae70ca002c9c2f10431d65f388e"/><file name="IdealInfo.php" hash="f2be70b33ab781c89a25c4be6f738067"/><file name="Klarna.php" hash="8b529f2c376fd78888b91d8d73339118"/><file name="Klarnaacc.php" hash="2923d73bb1a9b8ad712d7671c6012e37"/><file name="Overboeking.php" hash="87050fba1fb782fce9e02e5c8095ef2e"/></dir><file name="Redirect.php" hash="3c9405a2813bd7ef4617c9faeaee7846"/></dir><dir name="Helper"><file name="Data.php" hash="42c4a6fdcc9e0c827829f54144775fb6"/><file name="Paymentfee.php" hash="44f51f6166d85f0d6df2348c094ba0aa"/></dir><dir name="Model"><dir name="Config"><file name="Autoinvoice.php" hash="d4edbab951b4b16e8ccab660bbee8fda"/><file name="GeneralAutoinvoice.php" hash="603d830548bf012631fa0e0f00738802"/><file name="Newordermail.php" hash="b0225e1243442e4c1df1ea4eaab72c5c"/><file name="NewordermailMethod.php" hash="41813afa9531be21163c6a4c1550b759"/></dir><dir name="Methods"><file name="Abstract.php" hash="414b9f57a3e10811d4ba7eb3ca5ad227"/><file name="Ebill.php" hash="b4e00783ca4854a4a13e2f4ed78e0e77"/><file name="Eps.php" hash="2e167aa5f5de19e61372b82eefc43c40"/><file name="Focum.php" hash="8802d0c495c6188340391d0d6f5faa0c"/><file name="Giropay.php" hash="e9c83931c3d1491ff14d12288c4f6348"/><file name="Ideal.php" hash="26275c27874cd4e1eb32b7d59540c65e"/><file name="Klarna.php" hash="46a92a6a29e51e2e152389475e77d025"/><file name="Klarnaacc.php" hash="6905ba077eab559fe4d24a864e0ed416"/><file name="Maestro.php" hash="7372b9babeb8e60e6e7de39a6a249747"/><file name="Mastercard.php" hash="f09053c2dd9581aa094063254178207f"/><file name="Mistercash.php" hash="f56cfae23c74791432cef1e50733829c"/><file name="Overboeking.php" hash="028a8cb928c8fe1fd84645a5427ceae1"/><file name="Paypalec.php" hash="8f802ac3efc8709ab17e130671b1c8dd"/><file name="Sofort.php" hash="f9ebf43bda7ffd62582c869a5ba5014b"/><file name="Visa.php" hash="0214e927261846df04892bdf2c048792"/><file name="WebshopGiftcard.php" hash="3ea06c83b6c0d1f87f1d61dcbf3a55c7"/></dir><dir name="Observer"><file name="Order.php" hash="e5e0ce8e5a05c3c2f87d3893b9932be8"/><file name="Paymentfee.php" hash="78835217b2b6875e14da8b6630c21456"/><file name="Sendebill.php" hash="3042553c46184cea135d9e527055092c"/><file name="Submit.php" hash="47aa5da33f953cf9363f05578b2850fe"/></dir><dir name="Paymentfee"><dir name="Creditmemo"><file name="Total.php" hash="2340fd22ec6597f5fad53d9faea2d9fe"/></dir><dir name="Invoice"><dir name="Pdf"><file name="Total.php" hash="cec95df39f550cd70e6eb63b16cfb627"/></dir><file name="Tax.php" hash="5fba21bc05a7ed55b3c57ccb4b2790b5"/><file name="Total.php" hash="b77c63f1173d2112056a782490968cf6"/></dir><dir name="Quote"><file name="Quote.php" hash="838ad691a2da75b942a8ef41c2815a9a"/><file name="TaxTotal.php" hash="bd7cd2a16dc3dbc8c7a3c82746a0f671"/><file name="Total.php" hash="d2c8afd1ec4c96b6215ae28766e18177"/></dir></dir><file name="Base.php" hash="16fcca65584580b116b0ea9a75524ce3"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="eb415c1b7ca547226c6c9721a01a0219"/><file name="NotifyController.php" hash="4793822e1b937191ace1f2925038082f"/></dir><dir name="etc"><file name="config.xml" hash="75bd39c2d21962d9f9a5744379c79a7d"/><file name="system.xml" hash="26b9ad4d30b9a172fbe2991dc1083d62"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sisow"><dir name="adminhtml"><file name="notice.phtml" hash="7fa2d76678ad34eae48516fd757c30df"/></dir><dir name="checkout"><file name="default_info.phtml" hash="558581601de86afce3bd62ea50de7a4e"/><file name="ideal_info.phtml" hash="864ee0e16191ef6dca5c18522172b51c"/></dir><file name="form.phtml" hash="0dc40ad38b62218d6f947674312b7a61"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="sisow"><dir name="checkout"><file name="default_form.phtml" hash="200cebfa46ff85c95fdc0cedda4441a4"/><file name="default_info.phtml" hash="94eeee994f2f21dc36489f6b7824e616"/><file name="eps_form.phtml" hash="a202c60fba2712e9f677fa0ba6034068"/><file name="focum_form.phtml" hash="e1076aadcee16249baaf0b5e4c079d1a"/><file name="giropay_form.phtml" hash="64100a34bd184137a52be2bf18f78478"/><file name="ideal_form.phtml" hash="37f399e0cd922e70586a3be6a00f76a3"/><file name="ideal_info.phtml" hash="88e15559e2f0cca9744b4dae1a81a1ea"/><file name="klarna_form.phtml" hash="8a232f3e8f6e3bcf453298a922dd26bf"/><file name="klarnaacc_form.phtml" hash="c2e32986bbd9a95bea23b1ff8d49ef0e"/><file name="overboeking_form.phtml" hash="164e244d6df230f20f460012fc72a7d8"/></dir><dir name="paymentfee"><dir name="checkout"><file name="fee.phtml" hash="79362bab3963195ad6727d077fe87b11"/></dir></dir><file name="form.phtml" hash="8874a0713c384d1346f6ae713f2cb9bd"/><file name="formecare.phtml" hash="0de41387de5f0c8d35066c0f30e113c2"/><file name="formovb.phtml" hash="20da22a0ef4384411bf971ff133a6a2c"/></dir></dir><dir name="layout"><file name="sisow.xml" hash="bc2d1b353ba1597e72e1087967cc5275"/></dir></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies/>
29
  </package>