sisowpayment - Version 4.5.10

Version Notes

Fix: little small fixes
Fix: send magento invoice on Focum Transaction

Download this release

Release Info

Developer sisow
Extension sisowpayment
Version 4.5.10
Comparing to
See all releases


Code changes from version 4.5.8 to 4.5.10

app/code/local/Sisow/Block/Redirect.php CHANGED
@@ -76,7 +76,8 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
76
  foreach($order->getAllVisibleItems() as $item)
77
  {
78
  $i++;
79
- $arg['product_id_' . $i] = !empty($item->getSku()) ? $item->getSku() : 'sku' . $i;
 
80
  $arg['product_description_' . $i] = $item->getName();
81
  $arg['product_quantity_' . $i] = (int)($item->getQtyOrdered() ? $item->getQtyOrdered() : $item->getQty());
82
  $arg['product_tax_' . $i] = round($item->getTaxAmount() * 100, 0);
@@ -203,7 +204,7 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
203
  if( $method == 'klarna' || $method == 'klarnaacc' )
204
  {
205
  $arg['directinvoice'] = (Mage::getStoreConfig('payment/sisow_'.$method.'/sendklarnainvoice') == 3) ? 'true' : 'false';
206
- $arg['mailinvoice'] = (Mage::getStoreConfig('payment/sisow_'.$method.'/sendklarnainvoice') == 3) ? 'true' : 'false';
207
 
208
  if($method == 'klarnaacc')
209
  $arg['pclass'] = $_GET['pclass'];
@@ -319,7 +320,7 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
319
  break;
320
  default:
321
  $title = 'Sisow achteraf betalen';
322
- break;
323
  }
324
  $state = Mage_Sales_Model_Order::STATE_PROCESSING;
325
  $payment = $order->getPayment();
@@ -393,6 +394,31 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
393
 
394
  $order->setState($state, $st, $comm);
395
  $order->save();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  $url = Mage::getUrl("sisow/checkout/success");
397
  }
398
  else
76
  foreach($order->getAllVisibleItems() as $item)
77
  {
78
  $i++;
79
+ $sku = $item->getSku();
80
+ $arg['product_id_' . $i] = !empty($sku) ? $sku : 'sku' . $i;
81
  $arg['product_description_' . $i] = $item->getName();
82
  $arg['product_quantity_' . $i] = (int)($item->getQtyOrdered() ? $item->getQtyOrdered() : $item->getQty());
83
  $arg['product_tax_' . $i] = round($item->getTaxAmount() * 100, 0);
204
  if( $method == 'klarna' || $method == 'klarnaacc' )
205
  {
206
  $arg['directinvoice'] = (Mage::getStoreConfig('payment/sisow_'.$method.'/sendklarnainvoice') == 3) ? 'true' : 'false';
207
+ //$arg['mailinvoice'] = (Mage::getStoreConfig('payment/sisow_'.$method.'/sendklarnainvoice') == 3) ? 'true' : 'false';
208
 
209
  if($method == 'klarnaacc')
210
  $arg['pclass'] = $_GET['pclass'];
320
  break;
321
  default:
322
  $title = 'Sisow achteraf betalen';
323
+ break;
324
  }
325
  $state = Mage_Sales_Model_Order::STATE_PROCESSING;
326
  $payment = $order->getPayment();
394
 
395
  $order->setState($state, $st, $comm);
396
  $order->save();
397
+
398
+ if($base->payment == 'focum')
399
+ {
400
+ $mail = (Mage::getStoreConfig('payment/'.$payment->getMethod().'/autoinvoice') > 0) ? Mage::getStoreConfig('payment/'.$payment->getMethod().'/autoinvoice') : Mage::getStoreConfig('sisow_core/autoinvoice');
401
+
402
+ if($mail > 1)
403
+ {
404
+ if ($order->canInvoice()) {
405
+ $invoice = $order->prepareInvoice();
406
+ $invoice->register()->capture();
407
+ $invoice->setTransactionId($trxid);
408
+ Mage::getModel('core/resource_transaction')
409
+ ->addObject($invoice)
410
+ ->addObject($invoice->getOrder())
411
+ ->save();
412
+
413
+ if ($mail == 3) {
414
+ $invoice->sendEmail();
415
+ $invoice->setEmailSent(true);
416
+ }
417
+ $invoice->save();
418
+ }
419
+ }
420
+ }
421
+
422
  $url = Mage::getUrl("sisow/checkout/success");
423
  }
424
  else
app/code/local/Sisow/Model/Base.php CHANGED
@@ -28,6 +28,8 @@ class Sisow_Model_Base extends Mage_Core_Model_Abstract
28
  public $status;
29
  public $timeStamp;
30
  public $consumerAccount;
 
 
31
  public $consumerName;
32
  public $consumerCity;
33
 
@@ -273,6 +275,8 @@ class Sisow_Model_Base extends Mage_Core_Model_Abstract
273
  $this->timeStamp = $this->parse("timestamp");
274
  $this->amount = $this->parse("amount") / 100.0;
275
  $this->consumerAccount = $this->parse("consumeraccount");
 
 
276
  $this->consumerName = $this->parse("consumername");
277
  $this->consumerCity = $this->parse("consumercity");
278
  $this->purchaseId = $this->parse("purchaseid");
28
  public $status;
29
  public $timeStamp;
30
  public $consumerAccount;
31
+ public $consumerBic;
32
+ public $consumerIban;
33
  public $consumerName;
34
  public $consumerCity;
35
 
275
  $this->timeStamp = $this->parse("timestamp");
276
  $this->amount = $this->parse("amount") / 100.0;
277
  $this->consumerAccount = $this->parse("consumeraccount");
278
+ $this->consumerBic = $this->parse("consumerbic");
279
+ $this->consumerIban = $this->parse("consumeriban");
280
  $this->consumerName = $this->parse("consumername");
281
  $this->consumerCity = $this->parse("consumercity");
282
  $this->purchaseId = $this->parse("purchaseid");
app/design/adminhtml/default/default/template/sisow/checkout/default_info.phtml CHANGED
@@ -5,13 +5,13 @@ $consumer = $this->_getAdditionalInfo();
5
  <?php echo '<b>Sisow: ' . $this->escapeHtml($this->getMethod()->getTitle()) . '</b>'; ?>
6
  </br>
7
  <?php
8
- if($consumer['trxId'] != '')
9
  echo '</br>Transaction ID: <b>' . $consumer['trxId'] . '</b>';
10
- if($consumer['consumerName'] != '')
11
  echo '</br>Name: <b>' . $consumer['consumerName'] . '</b>';
12
- if($consumer['consumerIban'] != '')
13
  echo '</br>IBAN: <b>' . $consumer['consumerIban'] . '</b>';
14
- if($consumer['consumerBic'] != '')
15
  echo '</br>BIC: <b>' . $consumer['consumerBic'] . '</b>';
16
  ?>
17
  </br>
5
  <?php echo '<b>Sisow: ' . $this->escapeHtml($this->getMethod()->getTitle()) . '</b>'; ?>
6
  </br>
7
  <?php
8
+ if(array_key_exists("trxId", $consumer) && $consumer['trxId'] != '')
9
  echo '</br>Transaction ID: <b>' . $consumer['trxId'] . '</b>';
10
+ if(array_key_exists("consumerName", $consumer) && $consumer['consumerName'] != '')
11
  echo '</br>Name: <b>' . $consumer['consumerName'] . '</b>';
12
+ if(array_key_exists("consumerIban", $consumer) && $consumer['consumerIban'] != '')
13
  echo '</br>IBAN: <b>' . $consumer['consumerIban'] . '</b>';
14
+ if(array_key_exists("consumerBic", $consumer) && $consumer['consumerBic'] != '')
15
  echo '</br>BIC: <b>' . $consumer['consumerBic'] . '</b>';
16
  ?>
17
  </br>
app/design/frontend/base/default/template/sisow/checkout/focum_form.phtml CHANGED
@@ -1,72 +1,72 @@
1
- <?php
2
- $paymentfee = $this->getFee();
3
- $phone = $this->getPhone();
4
- $_code = $this->getMethodCode();
5
- $_description = $this->getInstructions();
6
-
7
- ?>
8
-
9
- <ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
10
- <li class="form-alt">
11
- <a href="https://www.achterafbetalen.nl/" target="_blank"><img src="<?php print_r(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . DS . 'sisow' . DS . 'logo' . DS . 'sisow_focum' . '.' . 'png'); ?>" alt="AchterafBetalen" width="100px"/></a>
12
- <?php
13
- if($_paymentfee['incl'] > 0)
14
- {
15
- echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
16
- }
17
- ?>
18
-
19
- <?php
20
- if(!empty($_description))
21
- {
22
- echo '<p>' . $_description . '</p>';
23
- }
24
- ?>
25
-
26
- <br/>
27
- <label for="sisow_gender"><?php echo $this->__('Salutation'); ?>&nbsp;<span class="required"></span></label>
28
- <div class="input-box">
29
- <select id="sisow_gender" class="input-text required-entry" title="Aanhef" name="payment[sisow_gender]">
30
- <option value=""><?php echo $this->__('--Please Select--') ?></option>
31
- <option value="F"><?php echo $this->__('Female');?></option>
32
- <option value="M"><?php echo $this->__('Male');?></option>
33
- </select>
34
- </div>
35
- <br/>
36
- <label for="sisow_phone"><?php echo $this->__('Telephone Number');?>&nbsp;<span class="required"></span></label>
37
- <div class="input-box">
38
- <input id="sisow_phone" class="input-text required-entry" maxlength="12" title="Telefoonnummer" value="<?php echo $phone; ?>" name="payment[sisow_phone]"/>
39
- </div>
40
- <br/>
41
- <label for="sisow_iban"><?php echo $this->__('IBAN');?>&nbsp;<span class="required"></span></label>
42
- <div class="input-box">
43
- <input id="sisow_iban" class="input-text required-entry" maxlength="20" title="IBAN" value="" name="payment[sisow_iban]"/>
44
- </div>
45
- <br/>
46
- <label for="sisow_day"><?php echo $this->__('Date of birth');?>&nbsp;<span class="required"></span></label></br>
47
- <div class="select">
48
- <select id="sisow_day" name="payment[sisow_day]" title="sisow_day" class="year required-entry">
49
- <option value=""><?php echo $this->__('Day');?></option>
50
- <?php foreach($this->getDates() as $k=>$v){?>
51
- <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
52
- <select>
53
- <select id="sisow_month" name="payment[sisow_month]" title="sisow_day" class="year required-entry">
54
- <option value=""><?php echo $this->__('Month');?></option>
55
- <?php foreach($this->getMonths() as $k=>$v){?>
56
- <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
57
- <select>
58
- <select id="sisow_year" name="payment[sisow_year]" title="sisow_year" class="year required-entry">
59
- <option value=""><?php echo $this->__('Year');?></option>
60
- <?php foreach($this->getYears() as $k=>$v){?>
61
- <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
62
- <select>
63
- </div>
64
-
65
- <br/>
66
- <div style="text-align: right; width: 100%;">
67
- <a target="_blank" href="https://www.sisow.nl"><img src="https://www.sisow.nl/images/betaallogos/logo_sisow_klein.png" alt="Powered by Sisow" width="100px"/></a>
68
- </div>
69
- <input type="hidden" id="sisow_monthly" name="payment[sisow_monthly]" value="<?php echo $monthly; ?>" />
70
- <input type="hidden" id="sisow_pclass" name="payment[sisow_pclass]" value="<?php echo $pclass; ?>" />
71
- </li>
72
  </ul>
1
+ <?php
2
+ $_paymentfee = $this->getFee();
3
+ $phone = $this->getPhone();
4
+ $_code = $this->getMethodCode();
5
+ $_description = $this->getInstructions();
6
+
7
+ ?>
8
+
9
+ <ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
10
+ <li class="form-alt">
11
+ <a href="https://www.achterafbetalen.nl/" target="_blank"><img src="<?php print_r(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . DS . 'sisow' . DS . 'logo' . DS . 'sisow_focum' . '.' . 'png'); ?>" alt="AchterafBetalen" width="100px"/></a>
12
+ <?php
13
+ if($_paymentfee['incl'] > 0)
14
+ {
15
+ echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
16
+ }
17
+ ?>
18
+
19
+ <?php
20
+ if(!empty($_description))
21
+ {
22
+ echo '<p>' . $_description . '</p>';
23
+ }
24
+ ?>
25
+
26
+ <br/>
27
+ <label for="sisow_gender"><?php echo $this->__('Salutation'); ?>&nbsp;<span class="required"></span></label>
28
+ <div class="input-box">
29
+ <select id="sisow_gender" class="input-text required-entry" title="Aanhef" name="payment[sisow_gender]">
30
+ <option value=""><?php echo $this->__('--Please Select--') ?></option>
31
+ <option value="F"><?php echo $this->__('Female');?></option>
32
+ <option value="M"><?php echo $this->__('Male');?></option>
33
+ </select>
34
+ </div>
35
+ <br/>
36
+ <label for="sisow_phone"><?php echo $this->__('Telephone Number');?>&nbsp;<span class="required"></span></label>
37
+ <div class="input-box">
38
+ <input id="sisow_phone" class="input-text required-entry" maxlength="12" title="Telefoonnummer" value="<?php echo $phone; ?>" name="payment[sisow_phone]"/>
39
+ </div>
40
+ <br/>
41
+ <label for="sisow_iban"><?php echo $this->__('IBAN');?>&nbsp;<span class="required"></span></label>
42
+ <div class="input-box">
43
+ <input id="sisow_iban" class="input-text required-entry" maxlength="20" title="IBAN" value="" name="payment[sisow_iban]"/>
44
+ </div>
45
+ <br/>
46
+ <label for="sisow_day"><?php echo $this->__('Date of birth');?>&nbsp;<span class="required"></span></label></br>
47
+ <div class="select">
48
+ <select id="sisow_day" name="payment[sisow_day]" title="sisow_day" class="year required-entry">
49
+ <option value=""><?php echo $this->__('Day');?></option>
50
+ <?php foreach($this->getDates() as $k=>$v){?>
51
+ <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
52
+ <select>
53
+ <select id="sisow_month" name="payment[sisow_month]" title="sisow_day" class="year required-entry">
54
+ <option value=""><?php echo $this->__('Month');?></option>
55
+ <?php foreach($this->getMonths() as $k=>$v){?>
56
+ <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
57
+ <select>
58
+ <select id="sisow_year" name="payment[sisow_year]" title="sisow_year" class="year required-entry">
59
+ <option value=""><?php echo $this->__('Year');?></option>
60
+ <?php foreach($this->getYears() as $k=>$v){?>
61
+ <option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
62
+ <select>
63
+ </div>
64
+
65
+ <br/>
66
+ <div style="text-align: right; width: 100%;">
67
+ <a target="_blank" href="https://www.sisow.nl"><img src="https://www.sisow.nl/images/betaallogos/logo_sisow_klein.png" alt="Powered by Sisow" width="100px"/></a>
68
+ </div>
69
+ <input type="hidden" id="sisow_monthly" name="payment[sisow_monthly]" value="<?php echo $monthly; ?>" />
70
+ <input type="hidden" id="sisow_pclass" name="payment[sisow_pclass]" value="<?php echo $pclass; ?>" />
71
+ </li>
72
  </ul>
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sisowpayment</name>
4
- <version>4.5.8</version>
5
  <stability>stable</stability>
6
- <license/>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Update 4.5.8 for Sisow plug-in</summary>
10
- <description>Fix: check for SKU</description>
11
- <notes>Fix: check on sku</notes>
12
- <authors><author><name>Sisow</name><user>auto-converted</user><email>info@sisow.nl</email></author></authors>
13
- <date>2016-05-18</date>
14
- <time>06:15:28</time>
15
- <contents><target name="magelocal"><dir name="Sisow"><dir name="Block"><dir name="Adminhtml"><file name="Notice.php" hash="56154d92843b3c8a205837010405923e"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="1965cbd3a5bdfcec2b79fed11613b2c1"/></dir></dir></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="a14f3818e0140496eae6afa180e4b2e2"/><file name="Default.php" hash="bc1f1e09fc1c48ab7a33a0f30248df2d"/><file name="DefaultInfo.php" hash="12bc768b15a910295c911f4790ae936a"/><file name="Eps.php" hash="f9b8e8844438fc0a07e5b85a816b59f5"/><file name="Focum.php" hash="2a7b60fff4a08be517db3edd3948e9f3"/><file name="Giropay.php" hash="52a1e50999719ed4cc3da3bd0956c900"/><file name="Ideal.php" hash="c57f4912978d24f6c766a418010eb4c0"/><file name="IdealInfo.php" hash="f2be70b33ab781c89a25c4be6f738067"/><file name="Klarna.php" hash="81c32ceead0cbf51d2208a3fe7182efe"/><file name="Klarnaacc.php" hash="3e72bcf65cc2421b613c328b68f4b7b8"/><file name="Overboeking.php" hash="b59341e0508aea8232de1b45606e66da"/></dir><file name="Redirect.php" hash="6de65bb130d6723af744f45bdd957e0d"/></dir><dir name="Helper"><file name="Data.php" hash="1cb75689669a43062f8539cecdb88730"/><file name="Paymentfee.php" hash="e59cd4b6d2782b87c19acac064955c03"/></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="6c7ed859b0d1e08ae80a96bb5cc7a23d"/><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="Homepay.php" hash="03a60fca9ff4738f97926997935ed504"/><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="72db34368e2ac6f7aea6ac2ea66b942c"/><file name="Paypalec.php" hash="8f802ac3efc8709ab17e130671b1c8dd"/><file name="Sofort.php" hash="f9ebf43bda7ffd62582c869a5ba5014b"/><file name="Visa.php" hash="0214e927261846df04892bdf2c048792"/><file name="VvvGiftcard.php" hash="f1dbe386cb6f401f80333a8f2ca1e310"/><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="d43b7a2961da792d8b1d860cd34a111f"/><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="828936cbef4855f7c8b0a525ef62a1bf"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="5392c9e86fd5f3e95567d80a10514238"/></dir><dir name="etc"><file name="config.xml" hash="5cb8e94e3c216b0c92f1d976eb37de94"/><file name="system.xml" hash="0122472c6cc124c48baa57b1b9bc1096"/></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="eda7a01241b131b1c2020e63e084b1c8"/><file name="default_info.phtml" hash="94eeee994f2f21dc36489f6b7824e616"/><file name="eps_form.phtml" hash="ec42cfb2f63f3c6edc252a5b88d68f82"/><file name="focum_form.phtml" hash="59633d0789d7bc85634526d411ef1e5a"/><file name="giropay_form.phtml" hash="712362c1639f8427b219ce70dd9eec50"/><file name="ideal_form.phtml" hash="b0f08d0b8403faee40b4f962e37ade66"/><file name="ideal_info.phtml" hash="88e15559e2f0cca9744b4dae1a81a1ea"/><file name="klarna_form.phtml" hash="ef23ec10d710065e4a0cad78d3883210"/><file name="klarnaacc_form.phtml" hash="5095e6ba397fa3f9c6d8859d0881de84"/><file name="overboeking_form.phtml" hash="dc4c1ecb4587392edeeedcce35acabf8"/></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><target name="mageetc"><dir name="modules"><file name="Sisow.xml" hash="7da3fbd82a48d5428b8c723bafbb946b"/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="Sisow.csv" hash="f4f6beff2a3506c8956b7d7a4e06715e"/></dir></target><target name="magemedia"><dir name="sisow"><dir name="logo"><file name="sisow_eps.png" hash="5e1f172ba0498467ba74a3a335867b39"/><file name="sisow_focum.png" hash="c066464cdf85d507da88917434de35d0"/><file name="sisow_giropay.png" hash="619d576140e1c6bd9fb503a1e82c1c28"/><file name="sisow_homepay.png" hash="72a2755d53b2ce5bec6e42bb449a40ad"/><file name="sisow_ideal.png" hash="a7bd660cf69f38e7871e6404a5032728"/><file name="sisow_maestro.png" hash="a2854af0b9d9bbdc85518f2706ec62bb"/><file name="sisow_mastercard.png" hash="bb28caeeeb40d2de50e5b684aa914aae"/><file name="sisow_mistercash.png" hash="d3710590ccfb187b16c33429ab4163c3"/><file name="sisow_paypalec.png" hash="145bdc920850740f1efce0ab4e450358"/><file name="sisow_sofort.png" hash="29b5b51aa6db9b9854ebf86331873331"/><file name="sisow_visa.png" hash="a8dd24b50cfd94c537d63dd9de126016"/><file name="sisow_vvv.png" hash="c49615bd95ecfa7a9cb513b0b5574dc7"/><file name="sisow_webshop.png" hash="47913a17b3ae5f6a03a28a8df5d9a483"/></dir></dir></target></contents>
 
16
  <compatible/>
17
- <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sisowpayment</name>
4
+ <version>4.5.10</version>
5
  <stability>stable</stability>
6
+ <license>OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Update 4.5.10 for Sisow plug-in</summary>
10
+ <description>All the payment options from Sisow for Magento</description>
11
+ <notes>Fix: little small fixes&#xD;
12
+ Fix: send magento invoice on Focum Transaction</notes>
13
+ <authors><author><name>Sisow</name><user>sisow</user><email>info@sisow.nl</email></author></authors>
14
+ <date>2016-07-13</date>
15
+ <time>06:12:32</time>
16
+ <contents><target name="magelocal"><dir name="Sisow"><dir name="Block"><dir name="Adminhtml"><file name="Notice.php" hash="56154d92843b3c8a205837010405923e"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="1965cbd3a5bdfcec2b79fed11613b2c1"/></dir></dir></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="a14f3818e0140496eae6afa180e4b2e2"/><file name="Default.php" hash="bc1f1e09fc1c48ab7a33a0f30248df2d"/><file name="DefaultInfo.php" hash="12bc768b15a910295c911f4790ae936a"/><file name="Eps.php" hash="f9b8e8844438fc0a07e5b85a816b59f5"/><file name="Focum.php" hash="2a7b60fff4a08be517db3edd3948e9f3"/><file name="Giropay.php" hash="52a1e50999719ed4cc3da3bd0956c900"/><file name="Ideal.php" hash="c57f4912978d24f6c766a418010eb4c0"/><file name="IdealInfo.php" hash="f2be70b33ab781c89a25c4be6f738067"/><file name="Klarna.php" hash="81c32ceead0cbf51d2208a3fe7182efe"/><file name="Klarnaacc.php" hash="3e72bcf65cc2421b613c328b68f4b7b8"/><file name="Overboeking.php" hash="b59341e0508aea8232de1b45606e66da"/></dir><file name="Redirect.php" hash="04d7422208cbec15c0ff57f41602d4a3"/></dir><dir name="Helper"><file name="Data.php" hash="1cb75689669a43062f8539cecdb88730"/><file name="Paymentfee.php" hash="e59cd4b6d2782b87c19acac064955c03"/></dir><dir name="Model"><file name="Base.php" hash="53b2779ae2aaea60e63a1282eacc3af1"/><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="6c7ed859b0d1e08ae80a96bb5cc7a23d"/><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="Homepay.php" hash="03a60fca9ff4738f97926997935ed504"/><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="72db34368e2ac6f7aea6ac2ea66b942c"/><file name="Paypalec.php" hash="8f802ac3efc8709ab17e130671b1c8dd"/><file name="Sofort.php" hash="f9ebf43bda7ffd62582c869a5ba5014b"/><file name="Visa.php" hash="0214e927261846df04892bdf2c048792"/><file name="VvvGiftcard.php" hash="f1dbe386cb6f401f80333a8f2ca1e310"/><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="d43b7a2961da792d8b1d860cd34a111f"/><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></dir><dir name="controllers"><file name="CheckoutController.php" hash="5392c9e86fd5f3e95567d80a10514238"/></dir><dir name="etc"><file name="config.xml" hash="5cb8e94e3c216b0c92f1d976eb37de94"/><file name="system.xml" hash="0122472c6cc124c48baa57b1b9bc1096"/></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="f4717665ea61fa901db0335218632db7"/><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="eda7a01241b131b1c2020e63e084b1c8"/><file name="default_info.phtml" hash="94eeee994f2f21dc36489f6b7824e616"/><file name="eps_form.phtml" hash="ec42cfb2f63f3c6edc252a5b88d68f82"/><file name="focum_form.phtml" hash="06e3839642001c596106e974e520617d"/><file name="giropay_form.phtml" hash="712362c1639f8427b219ce70dd9eec50"/><file name="ideal_form.phtml" hash="b0f08d0b8403faee40b4f962e37ade66"/><file name="ideal_info.phtml" hash="88e15559e2f0cca9744b4dae1a81a1ea"/><file name="klarna_form.phtml" hash="ef23ec10d710065e4a0cad78d3883210"/><file name="klarnaacc_form.phtml" hash="5095e6ba397fa3f9c6d8859d0881de84"/><file name="overboeking_form.phtml" hash="dc4c1ecb4587392edeeedcce35acabf8"/></dir><file name="form.phtml" hash="8874a0713c384d1346f6ae713f2cb9bd"/><file name="formecare.phtml" hash="0de41387de5f0c8d35066c0f30e113c2"/><file name="formovb.phtml" hash="20da22a0ef4384411bf971ff133a6a2c"/><dir name="paymentfee"><dir name="checkout"><file name="fee.phtml" hash="79362bab3963195ad6727d077fe87b11"/></dir></dir></dir></dir><dir name="layout"><file name="sisow.xml" hash="bc2d1b353ba1597e72e1087967cc5275"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sisow.xml" hash=""/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="Sisow.csv" hash=""/></dir></target><target name="magemedia"><dir name="sisow"><dir name="logo"><file name="sisow_eps.png" hash="5e1f172ba0498467ba74a3a335867b39"/><file name="sisow_focum.png" hash="c066464cdf85d507da88917434de35d0"/><file name="sisow_giropay.png" hash="619d576140e1c6bd9fb503a1e82c1c28"/><file name="sisow_homepay.png" hash="72a2755d53b2ce5bec6e42bb449a40ad"/><file name="sisow_ideal.png" hash="a7bd660cf69f38e7871e6404a5032728"/><file name="sisow_maestro.png" hash="a2854af0b9d9bbdc85518f2706ec62bb"/><file name="sisow_mastercard.png" hash="bb28caeeeb40d2de50e5b684aa914aae"/><file name="sisow_mistercash.png" hash="d3710590ccfb187b16c33429ab4163c3"/><file name="sisow_paypalec.png" hash="145bdc920850740f1efce0ab4e450358"/><file name="sisow_sofort.png" hash="29b5b51aa6db9b9854ebf86331873331"/><file name="sisow_visa.png" hash="a8dd24b50cfd94c537d63dd9de126016"/><file name="sisow_vvv.png" hash="c49615bd95ecfa7a9cb513b0b5574dc7"/><file name="sisow_webshop.png" hash="47913a17b3ae5f6a03a28a8df5d9a483"/></dir></dir></target></contents>
17
  <compatible/>
18
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>