Version Notes
Fix: files in package
Download this release
Release Info
Developer | sisow |
Extension | sisowpayment |
Version | 4.5.12 |
Comparing to | |
See all releases |
Code changes from version 4.5.11 to 4.5.12
- app/design/frontend/base/default/layout/sisow.xml +16 -0
- app/design/frontend/base/default/template/sisow/checkout/default_form.phtml +28 -0
- app/design/frontend/base/default/template/sisow/checkout/default_info.phtml +9 -0
- app/design/frontend/base/default/template/sisow/checkout/eps_form.phtml +36 -0
- app/design/frontend/base/default/template/sisow/checkout/focum_form.phtml +72 -0
- app/design/frontend/base/default/template/sisow/checkout/giropay_form.phtml +29 -0
- app/design/frontend/base/default/template/sisow/checkout/ideal_form.phtml +36 -0
- app/design/frontend/base/default/template/sisow/checkout/ideal_info.phtml +7 -0
- app/design/frontend/base/default/template/sisow/checkout/klarna_form.phtml +84 -0
- app/design/frontend/base/default/template/sisow/checkout/klarnaacc_form.phtml +94 -0
- app/design/frontend/base/default/template/sisow/checkout/overboeking_form.phtml +27 -0
- app/design/frontend/base/default/template/sisow/form.phtml +48 -0
- app/design/frontend/base/default/template/sisow/formecare.phtml +89 -0
- app/design/frontend/base/default/template/sisow/formovb.phtml +51 -0
- app/design/frontend/base/default/template/sisow/paymentfee/checkout/fee.phtml +39 -0
- package.xml +5 -5
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/design/frontend/base/default/template/sisow/checkout/default_form.phtml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_code = $this->getMethodCode();
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
$_description = $this->getInstructions();
|
5 |
+
?>
|
6 |
+
|
7 |
+
<?php
|
8 |
+
if($_paymentfee['incl'] > 0 || !empty($_description))
|
9 |
+
{
|
10 |
+
?>
|
11 |
+
|
12 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
13 |
+
<li>
|
14 |
+
<?php
|
15 |
+
if($_paymentfee['incl'] > 0)
|
16 |
+
{
|
17 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
18 |
+
}
|
19 |
+
if(!empty($_description))
|
20 |
+
{
|
21 |
+
echo '<p>' . $_description . '</p>';
|
22 |
+
}
|
23 |
+
?>
|
24 |
+
</li>
|
25 |
+
</ul>
|
26 |
+
<?php
|
27 |
+
}
|
28 |
+
?>
|
app/design/frontend/base/default/template/sisow/checkout/default_info.phtml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?>
|
2 |
+
<?php
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
$_code = $this->getMethodCode();
|
5 |
+
|
6 |
+
if($_paymentfee['incl'] > 0)
|
7 |
+
echo ' - ' .$this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true);
|
8 |
+
|
9 |
+
?>
|
app/design/frontend/base/default/template/sisow/checkout/eps_form.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_code = $this->getMethodCode();
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
$_description = $this->getInstructions();
|
5 |
+
?>
|
6 |
+
<script>
|
7 |
+
var j = jQuery.noConflict();
|
8 |
+
j(document).ready(function() {
|
9 |
+
j('#eps_widget').eps_widget({'return': 'bic'});
|
10 |
+
});
|
11 |
+
</script>
|
12 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
13 |
+
<li class="form-alt">
|
14 |
+
<?php
|
15 |
+
if($_paymentfee['incl'] > 0)
|
16 |
+
{
|
17 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
18 |
+
}
|
19 |
+
?>
|
20 |
+
|
21 |
+
<?php
|
22 |
+
if(!empty($_description))
|
23 |
+
{
|
24 |
+
echo '<p>' . $_description . '</p>';
|
25 |
+
}
|
26 |
+
?>
|
27 |
+
|
28 |
+
|
29 |
+
<img src="<?php print_r(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . DS . 'sisow' . DS . 'logo' . DS . 'sisow_eps' . '.' . 'png'); ?>" width="60px">
|
30 |
+
|
31 |
+
<label for="eps_widget">Bankleitzahl <span class="required"></span></label>
|
32 |
+
<div class="input-box">
|
33 |
+
<input id="eps_widget" autocomplete="off" name="payment[sisow_eps_bic]" class="input-text required-entry"/>
|
34 |
+
</div>
|
35 |
+
</li>
|
36 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/focum_form.phtml
ADDED
@@ -0,0 +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'); ?> <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');?> <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');?> <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');?> <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>
|
app/design/frontend/base/default/template/sisow/checkout/giropay_form.phtml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_code = $this->getMethodCode();
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
?>
|
5 |
+
<script>
|
6 |
+
( function($) {
|
7 |
+
// we can now rely on $ within the safety of our "bodyguard" function
|
8 |
+
$(document).ready(function() {
|
9 |
+
$('#giropay_widget').giropay_widget({'return': 'bic','kind': 1});
|
10 |
+
});
|
11 |
+
} ) ( jQuery );
|
12 |
+
|
13 |
+
</script>
|
14 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
15 |
+
<li class="form-alt">
|
16 |
+
<?php
|
17 |
+
if($_paymentfee['incl'] > 0)
|
18 |
+
{
|
19 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
20 |
+
}
|
21 |
+
?>
|
22 |
+
<img src="<?php print_r(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . DS . 'sisow' . DS . 'logo' . DS . 'sisow_giropay' . '.' . 'png'); ?>" width="60px">
|
23 |
+
|
24 |
+
<label for="giropay_widget">Bankleitzahl <span class="required"></span></label>
|
25 |
+
<div class="input-box">
|
26 |
+
<input id="giropay_widget" autocomplete="off" name="payment[sisow_giropay_bic]" class="input-text required-entry" />
|
27 |
+
</div>
|
28 |
+
</li>
|
29 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/ideal_form.phtml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_code = $this->getMethodCode();
|
3 |
+
$_issuers = $this->getIssuers();
|
4 |
+
$_choosenIssuer = $this->getInfoData('sisow_issuer');
|
5 |
+
$_paymentfee = $this->getFee();
|
6 |
+
$_description = $this->getInstructions();
|
7 |
+
?>
|
8 |
+
|
9 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
10 |
+
<li>
|
11 |
+
<img src="<?php print_r(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . DS . 'sisow' . DS . 'logo' . DS . 'sisow_ideal' . '.' . 'png'); ?>">
|
12 |
+
<?php
|
13 |
+
if(!empty($_description))
|
14 |
+
{
|
15 |
+
echo '<p>' . $_description . '</p>';
|
16 |
+
}
|
17 |
+
?>
|
18 |
+
<label for="<?php echo $_code ?>_issuer" class="required"><em>*</em><?php echo $this->__('Choose your bank'); ?>:</label>
|
19 |
+
<div class="input-box">
|
20 |
+
<select id="<?php echo $_code ?>_issuer" name="payment[sisow_issuer]" title="sisow_issuer" class="validate-select required-entry">
|
21 |
+
<option value=""><?php echo $this->__('Choose your bank'); ?>...</option>
|
22 |
+
|
23 |
+
<?php foreach ($_issuers as $_k => $_v): ?>
|
24 |
+
<option value="<?php echo $_k ?>"<?php if($_k==$_choosenIssuer): ?> selected="selected"<?php endif ?>><?php echo $_v ?></option>
|
25 |
+
<?php endforeach ?>
|
26 |
+
</select>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<?php
|
30 |
+
if($_paymentfee['incl'] > 0)
|
31 |
+
{
|
32 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
33 |
+
}
|
34 |
+
?>
|
35 |
+
</li>
|
36 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/ideal_info.phtml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?>
|
2 |
+
<?php
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
$_code = $this->getMethodCode();
|
5 |
+
if($_paymentfee['incl'] > 0)
|
6 |
+
echo ' - ' .$this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true);
|
7 |
+
?>
|
app/design/frontend/base/default/template/sisow/checkout/klarna_form.phtml
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$paymentfee = $this->getFee();
|
3 |
+
|
4 |
+
$fee = $paymentfee['incl'];
|
5 |
+
$phone = $this->getPhone();
|
6 |
+
$_code = $this->getMethodCode();
|
7 |
+
$countryiso = $this->GetCountryIso();
|
8 |
+
$_description = $this->getInstructions();
|
9 |
+
|
10 |
+
$name = ($countryiso == "DE") ? "Klarna Rechnung" : "Klarna Factuur";
|
11 |
+
?>
|
12 |
+
|
13 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
14 |
+
<li class="form-alt">
|
15 |
+
<?php
|
16 |
+
if($countryiso == "DE")
|
17 |
+
echo '<img src="https://cdn.klarna.com/public/images/DE/badges/v1/invoice/DE_invoice_badge_std_blue.png?width=125&eid='. Mage::getStoreConfig('payment/sisowpayments_klarna/klarnaeid').'" alt="Sisow Klarna" />';
|
18 |
+
else
|
19 |
+
echo '<img src="https://cdn.klarna.com/public/images/NL/badges/v1/invoice/NL_invoice_badge_std_blue.png?width=125&eid='. Mage::getStoreConfig('payment/sisowpayments_klarna/klarnaeid').'" alt="Sisow Klarna" />';
|
20 |
+
?>
|
21 |
+
<br/><?php echo $name; ?> - <?php echo $this->__('Payment within 14 days'); ?>.
|
22 |
+
<br/>
|
23 |
+
<a target="_blank" href="https://online.klarna.com/villkor_nl.yaws?eid=<?php echo Mage::getStoreConfig('payment/sisowpayments_klarna/klarnaeid'); ?>&charge=<?php echo $fee; ?>"><?php echo $this->__('Klarna Invoice Terms and Conditions'); ?></a>
|
24 |
+
<br/>
|
25 |
+
<?php
|
26 |
+
if ($fee > 0) {
|
27 |
+
?>
|
28 |
+
<br/><?php echo $this->__('The extra costs are'); ?> <?php echo Mage::app()->getStore()->convertPrice($fee, true, true); ?>.<br/>
|
29 |
+
<?php
|
30 |
+
}
|
31 |
+
?>
|
32 |
+
|
33 |
+
<?php
|
34 |
+
if(!empty($_description))
|
35 |
+
{
|
36 |
+
echo '<p>' . $_description . '</p>';
|
37 |
+
}
|
38 |
+
?>
|
39 |
+
|
40 |
+
<!--<br/><b>Let op: verwerking/acceptatie kan tot 30 seconden duren.</b>
|
41 |
+
<br/>-->
|
42 |
+
<br/>
|
43 |
+
<label for="sisow_gender"><?php echo $this->__('Salutation'); ?> <span class="required"></span></label>
|
44 |
+
<div class="input-box">
|
45 |
+
<select id="sisow_gender" class="input-text required-entry" title="Aanhef" name="payment[sisow_gender]">
|
46 |
+
<option value=""><?php echo $this->__('--Please Select--') ?></option>
|
47 |
+
<option value="F"><?php echo $this->__('Female');?></option>
|
48 |
+
<option value="M"><?php echo $this->__('Male');?></option>
|
49 |
+
</select>
|
50 |
+
</div>
|
51 |
+
<br/>
|
52 |
+
<label for="sisow_phone"><?php echo $this->__('Telephone Number');?> <span class="required"></span></label>
|
53 |
+
<div class="input-box">
|
54 |
+
<input id="sisow_phone" class="input-text required-entry" maxlength="12" title="Telefoonnummer" value="<?php echo $phone; ?>" name="payment[sisow_phone]"/>
|
55 |
+
</div>
|
56 |
+
<br/>
|
57 |
+
<label for="sisow_day"><?php echo $this->__('Date of birth');?> <span class="required"></span></label></br>
|
58 |
+
<div class="select">
|
59 |
+
<select id="sisow_day" name="payment[sisow_day]" title="sisow_day" class="year required-entry">
|
60 |
+
<option value=""><?php echo $this->__('Day');?></option>
|
61 |
+
<?php foreach($this->getDates() as $k=>$v){?>
|
62 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
63 |
+
<select>
|
64 |
+
<select id="sisow_month" name="payment[sisow_month]" title="sisow_day" class="year required-entry">
|
65 |
+
<option value=""><?php echo $this->__('Month');?></option>
|
66 |
+
<?php foreach($this->getMonths() as $k=>$v){?>
|
67 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
68 |
+
<select>
|
69 |
+
<select id="sisow_year" name="payment[sisow_year]" title="sisow_year" class="year required-entry">
|
70 |
+
<option value=""><?php echo $this->__('Year');?></option>
|
71 |
+
<?php foreach($this->getYears() as $k=>$v){?>
|
72 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
73 |
+
<select>
|
74 |
+
</div>
|
75 |
+
<br/>
|
76 |
+
<?php if($countryiso == "DE")
|
77 |
+
echo '<input type="checkbox" name="accept" value="termsde" class="required-entry"><a href="https://cdn.klarna.com/1.0/shared/content/legal/terms/256/de_de/consent" target="_blank">Einwilligung<a/><br/>';
|
78 |
+
?>
|
79 |
+
<br/>
|
80 |
+
<div style="text-align: right; width: 100%;">
|
81 |
+
<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>
|
82 |
+
</div>
|
83 |
+
</li>
|
84 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/klarnaacc_form.phtml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$paymentfee = $this->getFee();
|
3 |
+
|
4 |
+
$fee = $paymentfee['incl'];
|
5 |
+
$phone = $this->getPhone();
|
6 |
+
$_code = $this->getMethodCode();
|
7 |
+
$monthly = $this->getMonthly();
|
8 |
+
$pclass = $this->getPclass();
|
9 |
+
$countryiso = $this->GetCountryIso();
|
10 |
+
$_description = $this->getInstructions();
|
11 |
+
|
12 |
+
$name = ($countryiso == "DE") ? "Klarna Ratenkauf" : "Klarna Account";
|
13 |
+
?>
|
14 |
+
|
15 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
16 |
+
<li class="form-alt">
|
17 |
+
<?php
|
18 |
+
if($countryiso == "DE")
|
19 |
+
echo '<img src="https://cdn.klarna.com/public/images/DE/badges/v1/account/DE_account_badge_std_blue.png?width=125&eid='. Mage::getStoreConfig('payment/sisowpayments_klarnaacc/klarnaeid').'"/><br/>';
|
20 |
+
else
|
21 |
+
echo '<img src="https://cdn.klarna.com/public/images/NL/badges/v1/account/NL_account_badge_std_blue.png?width=125&eid='. Mage::getStoreConfig('payment/sisowpayments_klarnaacc/klarnaeid').'"/><br/>';
|
22 |
+
?>
|
23 |
+
<?php
|
24 |
+
if(!empty($_description))
|
25 |
+
{
|
26 |
+
echo '<p>' . $_description . '</p>';
|
27 |
+
}
|
28 |
+
?>
|
29 |
+
<?php echo $name; ?> - € <?php echo round($monthly / 100.0, 2); ?> / <?php echo $this->__('Month');?>
|
30 |
+
<br/>
|
31 |
+
<?php
|
32 |
+
if($countryiso == "DE")
|
33 |
+
echo '<a target="_blank" href="https://online.klarna.com/account_de.yaws?eid='. Mage::getStoreConfig('payment/sisowpayments_klarnaacc/klarnaeid').'">'. $this->__('Read more').'!</a><br/>';
|
34 |
+
else
|
35 |
+
echo '<a target="_blank" href="https://online.klarna.com/account_nl.yaws?eid='. Mage::getStoreConfig('payment/sisowpayments_klarnaacc/klarnaeid').'">'. $this->__('Read more').'!</a><br/>';
|
36 |
+
?>
|
37 |
+
<?php
|
38 |
+
if($countryiso == "NL")
|
39 |
+
echo '<img src="https://www.sisow.nl/images/betaallogos/lenenkostgeld.jpg" alt="Let op! Geld lenen kost geld" /><br/>';
|
40 |
+
?>
|
41 |
+
<?php
|
42 |
+
if ($fee > 0) {
|
43 |
+
?>
|
44 |
+
<br/><?php echo $this->__('The extra costs are '); ?><?php echo Mage::app()->getStore()->convertPrice($fee, true, true); ?>.<br/>
|
45 |
+
<?php
|
46 |
+
}
|
47 |
+
?>
|
48 |
+
<!--<br/><b>Let op: verwerking/acceptatie kan tot 30 seconden duren.</b>
|
49 |
+
<br/>-->
|
50 |
+
<br/>
|
51 |
+
<label for="sisow_gender"><?php echo $this->__('Salutation'); ?> <span class="required"></span></label>
|
52 |
+
<div class="input-box">
|
53 |
+
<select id="sisow_gender" class="input-text required-entry" title="Aanhef" name="payment[sisow_gender]">
|
54 |
+
<option value=""><?php echo $this->__('--Please Select--') ?></option>
|
55 |
+
<option value="F"><?php echo $this->__('Female');?></option>
|
56 |
+
<option value="M"><?php echo $this->__('Male');?></option>
|
57 |
+
</select>
|
58 |
+
</div>
|
59 |
+
<br/>
|
60 |
+
<label for="sisow_phone"><?php echo $this->__('Telephone Number');?> <span class="required"></span></label>
|
61 |
+
<div class="input-box">
|
62 |
+
<input id="sisow_phone" class="input-text required-entry" maxlength="12" title="Telefoonnummer" value="<?php echo $phone; ?>" name="payment[sisow_phone]"/>
|
63 |
+
</div>
|
64 |
+
<br/>
|
65 |
+
<label for="sisow_day"><?php echo $this->__('Date of birth');?> <span class="required"></span></label></br>
|
66 |
+
<div class="select">
|
67 |
+
<select id="sisow_day" name="payment[sisow_day]" title="sisow_day" class="year required-entry">
|
68 |
+
<option value=""><?php echo $this->__('Day');?></option>
|
69 |
+
<?php foreach($this->getDates() as $k=>$v){?>
|
70 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
71 |
+
<select>
|
72 |
+
<select id="sisow_month" name="payment[sisow_month]" title="sisow_day" class="year required-entry">
|
73 |
+
<option value=""><?php echo $this->__('Month');?></option>
|
74 |
+
<?php foreach($this->getMonths() as $k=>$v){?>
|
75 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
76 |
+
<select>
|
77 |
+
<select id="sisow_year" name="payment[sisow_year]" title="sisow_year" class="year required-entry">
|
78 |
+
<option value=""><?php echo $this->__('Year');?></option>
|
79 |
+
<?php foreach($this->getYears() as $k=>$v){?>
|
80 |
+
<option value="<?php echo $k;?>"><?php echo $v;?></option><?php } ?>
|
81 |
+
<select>
|
82 |
+
</div>
|
83 |
+
<br/>
|
84 |
+
<?php if($countryiso == "DE")
|
85 |
+
echo '<input type="checkbox" name="acceptacc" value="termsdeacc" class="required-entry"><a href="https://cdn.klarna.com/1.0/shared/content/legal/terms/256/de_de/consent" target="_blank">Einwilligung<a/><br/>';
|
86 |
+
?>
|
87 |
+
<br/>
|
88 |
+
<div style="text-align: right; width: 100%;">
|
89 |
+
<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>
|
90 |
+
</div>
|
91 |
+
<input type="hidden" id="sisow_monthly" name="payment[sisow_monthly]" value="<?php echo $monthly; ?>" />
|
92 |
+
<input type="hidden" id="sisow_pclass" name="payment[sisow_pclass]" value="<?php echo $pclass; ?>" />
|
93 |
+
</li>
|
94 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/overboeking_form.phtml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_code = $this->getMethodCode();
|
3 |
+
$_paymentfee = $this->getFee();
|
4 |
+
$_description = $this->getInstructions();
|
5 |
+
|
6 |
+
?>
|
7 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
8 |
+
<li class="form-alt">
|
9 |
+
<?php
|
10 |
+
if($_paymentfee['incl'] > 0)
|
11 |
+
{
|
12 |
+
echo '<br/><br/><b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
13 |
+
}
|
14 |
+
?>
|
15 |
+
<a href="http://www.sisow.nl" target="_blank"><img src="https://www.sisow.nl/Sisow/images/mail/sisowklein.jpg" alt="Sisow OverBoeking" /></a><br/>
|
16 |
+
<?php echo $this->__('You have chosen to pay in advance by bank transfer.'); ?><br/>
|
17 |
+
<?php echo $this->__('The processing is outsourced to Sisow B.V.'); ?><br/>
|
18 |
+
<br/>
|
19 |
+
<?php echo $this->__('You will receive an e-mail with information on how to complete your payment.'); ?>
|
20 |
+
<?php
|
21 |
+
if(!empty($_description))
|
22 |
+
{
|
23 |
+
echo '<p>' . $_description . '</p>';
|
24 |
+
}
|
25 |
+
?>
|
26 |
+
</li>
|
27 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/form.phtml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design_default
|
22 |
+
* @package Mage
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
$banks=$this->getBanks();
|
28 |
+
$_code=$this->getMethodCode();
|
29 |
+
|
30 |
+
?>
|
31 |
+
|
32 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
33 |
+
<li>
|
34 |
+
<label for="<?php echo $_code ?>_bank"><?php echo $this->__(Mage::getStoreConfig('payment/sisow/issuerchoice')) ?> <span class="required">*</span></label><br/>
|
35 |
+
<select id="<?php echo $_code ?>_bank" name="payment[<?php echo $_code ?>_bank]" class="input-text validate-text required-entry">
|
36 |
+
<option value=""><?php echo $this->__('Selecteer een bank...'); ?></option>
|
37 |
+
<?php foreach($banks as $bank)
|
38 |
+
{
|
39 |
+
?>
|
40 |
+
<option value="<?php echo $bank['value'];?>"><?php echo $bank['label']; ?></option>
|
41 |
+
<?php
|
42 |
+
}
|
43 |
+
?>
|
44 |
+
</select>
|
45 |
+
<br/>
|
46 |
+
<?php echo $this->__(Mage::getStoreConfig('payment/sisow/payoff')) ?>
|
47 |
+
</li>
|
48 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/formecare.phtml
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design_default
|
22 |
+
* @package Mage
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
$fee = $this->getFee();
|
28 |
+
$firstletter = $this->getFirstname();
|
29 |
+
|
30 |
+
?>
|
31 |
+
|
32 |
+
<ul class="form-list" id="payment_form_sisowecare" style="display:none">
|
33 |
+
<li class="form-alt">
|
34 |
+
<img src="https://www.sisow.nl/Sisow/images/ideal/logo_ecare_small.gif" alt="Sisow ecare" /><br/>
|
35 |
+
Sisow ecare is een betaalmogelijkheid waarbij niet direct betaald hoeft te worden.
|
36 |
+
De betalingstermijn is 14 dagen en de factuur zal worden verzonden met de verzending.
|
37 |
+
Om te betalen met Sisow ecare (factuur) moet u minimaal 18 jaar oud zijn.
|
38 |
+
Er wordt een credit check uitgevoerd op het moment van aankoop.<br/>
|
39 |
+
<br/><a href="http://www.sisow.nl/downloads/Betalingsvoorwaarden_ecare.pdf">Sisow ecare betalingsvoorwaarden</a><br/>
|
40 |
+
<?php
|
41 |
+
if ($fee > 0) {
|
42 |
+
?>
|
43 |
+
<br/>De extra kosten hiervoor bedragen <?php echo Mage::app()->getStore()->convertPrice($fee, true, true); ?> exclusief BTW.<br/>
|
44 |
+
<?php
|
45 |
+
}
|
46 |
+
?>
|
47 |
+
<br/><b>Let op: verwerking/acceptatie kan tot 30 seconden duren.</b>
|
48 |
+
<br/>
|
49 |
+
<br/>
|
50 |
+
<label class="required" for="sisow_gender">Aanhef <span class="required">*</span></label>
|
51 |
+
<div class="input-box">
|
52 |
+
<select id="sisow_gender" class="input-text required-entry" title="Aanhef" name="payment[sisow_gender]">
|
53 |
+
<option value=""/>
|
54 |
+
<option value="F">Mevrouw</option>
|
55 |
+
<option value="M">De heer</option>
|
56 |
+
</select>
|
57 |
+
</div>
|
58 |
+
<br/>
|
59 |
+
<label class="required" for="sisow_initials">Voorletter(s) <span class="required">*</span></label>
|
60 |
+
<div class="input-box">
|
61 |
+
<input id="sisow_initials" class="input-text required-entry" maxlength="6" title="Voorletter(s)" value="<?php echo $firstletter; ?>" name="payment[sisow_initials]"/>
|
62 |
+
</div>
|
63 |
+
<br/>
|
64 |
+
<label class="required" for="sisow_month">Geboortedatum <span class="required">*</span></label>
|
65 |
+
<div class="input-box customer-dob sisow-dob">
|
66 |
+
<div class="dob-day">
|
67 |
+
<input id="sisow_day" class="input-text required-entry validate-custom" maxlength="2" type="text" title="Dag" value="" name="payment[sisow_day]">
|
68 |
+
<label for="sisow_day">DD</label>
|
69 |
+
</div>
|
70 |
+
<div class="dob-month">
|
71 |
+
<input id="sisow_month" class="input-text required-entry validate-custom" maxlength="2" type="text" title="Maand" value="" name="payment[sisow_month]">
|
72 |
+
<label for="sisow_month">MM</label>
|
73 |
+
</div>
|
74 |
+
<div class="dob-year">
|
75 |
+
<input id="sisow_year" class="input-text required-entry validate-custom" maxlength="4" type="text" title="Jaar" value="" name="payment[sisow_year]">
|
76 |
+
<label for="sisow_year">JJJJ</label>
|
77 |
+
</div>
|
78 |
+
<div class="dob-full" style="display:none;">
|
79 |
+
<input id="sisow_dob" type="hidden" name="payment[sisow_dob]">
|
80 |
+
</div>
|
81 |
+
<div class="validation-advice" style="display:none;"></div>
|
82 |
+
</div>
|
83 |
+
<script type="text/javascript">
|
84 |
+
//<![CDATA[
|
85 |
+
var customer_dob = new Varien.DOB('.sisow-dob', false, '%d-%m-%y');
|
86 |
+
//]]>
|
87 |
+
</script>
|
88 |
+
</li>
|
89 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/formovb.phtml
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design_default
|
22 |
+
* @package Mage
|
23 |
+
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
//$data = $this->getDataOvb();
|
28 |
+
|
29 |
+
$locale = Mage::getStoreConfig('general/locale/code');
|
30 |
+
if (strtolower(substr($locale, 0, 2)) == 'nl') {
|
31 |
+
$tekst = 'U heeft ervoor gekozen om uw bestelling per bank/giro over te maken.<br/>
|
32 |
+
De verwerking hiervan is uitbesteed aan Sisow B.V.<br/>
|
33 |
+
<br/>
|
34 |
+
U ontvangt een e-mail met daarin informatie hoe u uw betaling kunt voltooien.';
|
35 |
+
}
|
36 |
+
else {
|
37 |
+
$tekst = 'You have chosen to pay in advance by bank transfer.<br/>
|
38 |
+
The processing is outsourced to Sisow B.V.<br/>
|
39 |
+
<br/>
|
40 |
+
You will receive an e-mail with information on how to complete your payment.';
|
41 |
+
}
|
42 |
+
|
43 |
+
?>
|
44 |
+
|
45 |
+
<ul class="form-list" id="payment_form_sisowob" style="display:none">
|
46 |
+
<li class="form-alt">
|
47 |
+
<a href="http://www.sisow.nl" target="_blank"><img src="https://www.sisow.nl/Sisow/images/mail/sisowklein.jpg" alt="Sisow OverBoeking" /></a><br/>
|
48 |
+
<?php echo $tekst; ?>
|
49 |
+
<br/>
|
50 |
+
</li>
|
51 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/paymentfee/checkout/fee.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ($this->displayBoth()):?>
|
3 |
+
<tr>
|
4 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
|
5 |
+
<?php echo $this->getTotal()->getTitle() . " " . $this->getExcludeTaxLabel() ?>
|
6 |
+
</td>
|
7 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right">
|
8 |
+
<?php echo $this->helper('checkout')->formatPrice($this->getInvoiceFeeExcludeTax()) ?>
|
9 |
+
</td>
|
10 |
+
</tr>
|
11 |
+
<tr>
|
12 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
|
13 |
+
<?php echo $this->getTotal()->getTitle() . " " . $this->getIncludeTaxLabel() ?>
|
14 |
+
</td>
|
15 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right">
|
16 |
+
<?php echo $this->helper('checkout')->formatPrice($this->getInvoiceFeeIncludeTax()) ?>
|
17 |
+
</td>
|
18 |
+
</tr>
|
19 |
+
<?php elseif($this->displayIncludeTax()) : ?>
|
20 |
+
<tr>
|
21 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
|
22 |
+
<?php echo $this->getTotal()->getTitle() ?>
|
23 |
+
</td>
|
24 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right">
|
25 |
+
<?php echo $this->helper('checkout')->formatPrice($this->getInvoiceFeeIncludeTax()) ?>
|
26 |
+
</td>
|
27 |
+
</tr>
|
28 |
+
<?php else:?>
|
29 |
+
<tr>
|
30 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
|
31 |
+
<?php echo $this->getTotal()->getTitle() ?>
|
32 |
+
</td>
|
33 |
+
<td style="<?php echo $this->getStyle() ?>" class="a-right">
|
34 |
+
<?php echo $this->helper('checkout')->formatPrice($this->getInvoiceFeeExcludeTax()) ?>
|
35 |
+
</td>
|
36 |
+
</tr>
|
37 |
+
<?php endif;?>
|
38 |
+
|
39 |
+
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>sisowpayment</name>
|
4 |
-
<version>4.5.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Sisow payment methods</summary>
|
10 |
<description>Sisow plug and play, processing different payment methods from different countries. No programming, customization or coding needed! Sisow is a collecting payment provider in the Netherlands. Sisow collects the payments and distributes them to the owner of the webshop.</description>
|
11 |
-
<notes>Fix:
|
12 |
<authors><author><name>sisow</name><user>sisow</user><email>info@sisow.nl</email></author></authors>
|
13 |
-
<date>2016-10-
|
14 |
-
<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="211aaba3cf4236b1554ba4ceb06dbf19"/></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"/><file name="NotifyController.php" hash="4793822e1b937191ace1f2925038082f"/></dir><dir name="etc"><file name="config.xml" hash="5cb8e94e3c216b0c92f1d976eb37de94"/><file name="system.xml" hash="0122472c6cc124c48baa57b1b9bc1096"/></dir><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><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="d9a8318b32d5a8621e617daa3aab1219"/></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="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>sisowpayment</name>
|
4 |
+
<version>4.5.12</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Sisow payment methods</summary>
|
10 |
<description>Sisow plug and play, processing different payment methods from different countries. No programming, customization or coding needed! Sisow is a collecting payment provider in the Netherlands. Sisow collects the payments and distributes them to the owner of the webshop.</description>
|
11 |
+
<notes>Fix: files in package</notes>
|
12 |
<authors><author><name>sisow</name><user>sisow</user><email>info@sisow.nl</email></author></authors>
|
13 |
+
<date>2016-10-27</date>
|
14 |
+
<time>13:29:13</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="211aaba3cf4236b1554ba4ceb06dbf19"/></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"/><file name="NotifyController.php" hash="4793822e1b937191ace1f2925038082f"/></dir><dir name="etc"><file name="config.xml" hash="5cb8e94e3c216b0c92f1d976eb37de94"/><file name="system.xml" hash="0122472c6cc124c48baa57b1b9bc1096"/></dir><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><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="d9a8318b32d5a8621e617daa3aab1219"/></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="layout"><file name="sisow.xml" hash="bc2d1b353ba1597e72e1087967cc5275"/></dir><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></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sisow.xml" hash="7da3fbd82a48d5428b8c723bafbb946b"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Sisow.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><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><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
18 |
</package>
|