Version Notes
Fix: communication Sisow
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | sisowpayment |
| Version | 4.2.1 |
| Comparing to | |
| See all releases | |
Code changes from version 4.2.0 to 4.2.1
- app/code/local/Sisow/Block/Paymentmethod/Eps.php +15 -0
- app/code/local/Sisow/Block/Paymentmethod/Giropay.php +15 -0
- app/code/local/Sisow/Block/Redirect.php +4 -2
- app/code/local/Sisow/Helper/Data.php +4 -1
- app/code/local/Sisow/Model/Base.php +1 -0
- app/code/local/Sisow/Model/Methods/Abstract.php +1 -3
- app/code/local/Sisow/Model/Methods/Eps.php +32 -0
- app/code/local/Sisow/Model/Methods/Focum.php +1 -1
- app/code/local/Sisow/Model/Methods/Giropay.php +32 -0
- app/code/local/Sisow/controllers/CheckoutController.php +4 -3
- app/code/local/Sisow/etc/config.xml +25 -0
- app/code/local/Sisow/etc/system.xml +308 -0
- app/design/frontend/base/default/template/sisow/checkout/default_form.phtml +1 -0
- app/design/frontend/base/default/template/sisow/checkout/eps_form.phtml +21 -0
- app/design/frontend/base/default/template/sisow/checkout/giropay_form.phtml +21 -0
- package.xml +6 -6
app/code/local/Sisow/Block/Paymentmethod/Eps.php
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class Sisow_Block_Paymentmethod_Eps extends Mage_Payment_Block_Form
|
| 3 |
+
{
|
| 4 |
+
protected function _construct()
|
| 5 |
+
{
|
| 6 |
+
$this->setTemplate('sisow/checkout/eps_form.phtml');
|
| 7 |
+
parent::_construct();
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
public function getFee()
|
| 11 |
+
{
|
| 12 |
+
return $this->getMethod()->getFeeArray();
|
| 13 |
+
}
|
| 14 |
+
}
|
| 15 |
+
?>
|
app/code/local/Sisow/Block/Paymentmethod/Giropay.php
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class Sisow_Block_Paymentmethod_Giropay extends Mage_Payment_Block_Form
|
| 3 |
+
{
|
| 4 |
+
protected function _construct()
|
| 5 |
+
{
|
| 6 |
+
$this->setTemplate('sisow/checkout/giropay_form.phtml');
|
| 7 |
+
parent::_construct();
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
public function getFee()
|
| 11 |
+
{
|
| 12 |
+
return $this->getMethod()->getFeeArray();
|
| 13 |
+
}
|
| 14 |
+
}
|
| 15 |
+
?>
|
app/code/local/Sisow/Block/Redirect.php
CHANGED
|
@@ -194,7 +194,9 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
|
|
| 194 |
$arg['birthdate'] = $_GET['dob'];
|
| 195 |
if(isset($_GET['iban']))
|
| 196 |
$arg['iban'] = $_GET['iban'];
|
| 197 |
-
|
|
|
|
|
|
|
| 198 |
$arg['ipaddress'] = $_SERVER['REMOTE_ADDR'];
|
| 199 |
|
| 200 |
//Klarna
|
|
@@ -244,7 +246,7 @@ class Sisow_Block_Redirect extends Mage_Core_Block_Abstract
|
|
| 244 |
}
|
| 245 |
else
|
| 246 |
$base->purchaseId = $orderIncrementId;
|
| 247 |
-
$base->description = $orderIncrementId;
|
| 248 |
$base->notifyUrl = Mage::getUrl('sisow/checkout/notify', array('_secure' => true));
|
| 249 |
$base->returnUrl = Mage::getUrl('sisow/checkout/return', array('_secure' => true));
|
| 250 |
|
| 194 |
$arg['birthdate'] = $_GET['dob'];
|
| 195 |
if(isset($_GET['iban']))
|
| 196 |
$arg['iban'] = $_GET['iban'];
|
| 197 |
+
if(isset($_GET['bic']))
|
| 198 |
+
$arg['bic'] = $_GET['bic'];
|
| 199 |
+
|
| 200 |
$arg['ipaddress'] = $_SERVER['REMOTE_ADDR'];
|
| 201 |
|
| 202 |
//Klarna
|
| 246 |
}
|
| 247 |
else
|
| 248 |
$base->purchaseId = $orderIncrementId;
|
| 249 |
+
$base->description = Mage::getStoreConfig('payment/sisow_'.$method.'/prefix') . $orderIncrementId;
|
| 250 |
$base->notifyUrl = Mage::getUrl('sisow/checkout/notify', array('_secure' => true));
|
| 251 |
$base->returnUrl = Mage::getUrl('sisow/checkout/return', array('_secure' => true));
|
| 252 |
|
app/code/local/Sisow/Helper/Data.php
CHANGED
|
@@ -5,8 +5,11 @@ class Sisow_Helper_Data extends Mage_Payment_Helper_Data
|
|
| 5 |
{
|
| 6 |
$config = Mage::getStoreConfig('payment/'.$method.'/newordermail');
|
| 7 |
|
| 8 |
-
if($config == "general")
|
|
|
|
|
|
|
| 9 |
return Mage::getStoreConfig('sisow_core/newordermail');
|
|
|
|
| 10 |
else
|
| 11 |
return $config;
|
| 12 |
}
|
| 5 |
{
|
| 6 |
$config = Mage::getStoreConfig('payment/'.$method.'/newordermail');
|
| 7 |
|
| 8 |
+
if(empty($config) || $config == "general")
|
| 9 |
+
{
|
| 10 |
+
Mage::log('method: ' . $method, null, 'log_sisow_mail.log');
|
| 11 |
return Mage::getStoreConfig('sisow_core/newordermail');
|
| 12 |
+
}
|
| 13 |
else
|
| 14 |
return $config;
|
| 15 |
}
|
app/code/local/Sisow/Model/Base.php
CHANGED
|
@@ -96,6 +96,7 @@ class Sisow_Model_Base extends Mage_Core_Model_Abstract
|
|
| 96 |
|
| 97 |
private function send($method, array $keyvalue = NULL, $return = 1) {
|
| 98 |
$url = "https://www.sisow.nl/Sisow/iDeal/RestHandler.ashx/" . $method;
|
|
|
|
| 99 |
$options = array(
|
| 100 |
CURLOPT_POST => 1,
|
| 101 |
CURLOPT_HEADER => 0,
|
| 96 |
|
| 97 |
private function send($method, array $keyvalue = NULL, $return = 1) {
|
| 98 |
$url = "https://www.sisow.nl/Sisow/iDeal/RestHandler.ashx/" . $method;
|
| 99 |
+
//$url = "https://www.sisow.nl/SisowPortal/iDeal/RestHandler.ashx/" . $method;
|
| 100 |
$options = array(
|
| 101 |
CURLOPT_POST => 1,
|
| 102 |
CURLOPT_HEADER => 0,
|
app/code/local/Sisow/Model/Methods/Abstract.php
CHANGED
|
@@ -22,9 +22,7 @@ abstract class Sisow_Model_Methods_Abstract extends Mage_Payment_Model_Method_Ab
|
|
| 22 |
}
|
| 23 |
|
| 24 |
public function getOrderPlaceRedirectUrl()
|
| 25 |
-
{
|
| 26 |
-
$issuer = $_POST['payment']['sisow_issuer'];
|
| 27 |
-
|
| 28 |
/*
|
| 29 |
* Redirect to Sisow
|
| 30 |
* method = paymentcode from Sisow
|
| 22 |
}
|
| 23 |
|
| 24 |
public function getOrderPlaceRedirectUrl()
|
| 25 |
+
{
|
|
|
|
|
|
|
| 26 |
/*
|
| 27 |
* Redirect to Sisow
|
| 28 |
* method = paymentcode from Sisow
|
app/code/local/Sisow/Model/Methods/Eps.php
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class Sisow_Model_Methods_Eps extends Sisow_Model_Methods_Abstract
|
| 3 |
+
{
|
| 4 |
+
protected $_code = 'sisow_eps'; //sisow = modulenaam, ideal = paymentcode sisow
|
| 5 |
+
protected $_paymentcode = 'eps';
|
| 6 |
+
|
| 7 |
+
//blocks for loading templates in checkout
|
| 8 |
+
protected $_formBlockType = 'sisow/paymentmethod_eps';
|
| 9 |
+
//protected $_infoBlockType = 'sisow/paymentmethod_idealInfo';
|
| 10 |
+
|
| 11 |
+
protected $_isGateway = true;
|
| 12 |
+
protected $_canRefund = true;
|
| 13 |
+
protected $_canRefundInvoicePartial = true;
|
| 14 |
+
protected $_canUseCheckout = true;
|
| 15 |
+
|
| 16 |
+
public function getOrderPlaceRedirectUrl()
|
| 17 |
+
{
|
| 18 |
+
$bic = $_POST['payment']['sisow_eps_bic'];
|
| 19 |
+
|
| 20 |
+
/*
|
| 21 |
+
* Redirect to Sisow
|
| 22 |
+
* method = paymentcode from Sisow
|
| 23 |
+
* additional params (fields from the checkout page)
|
| 24 |
+
*/
|
| 25 |
+
$url = Mage::getUrl('sisow/checkout/redirect/', array('_secure' => true));
|
| 26 |
+
if (!strpos($url, "?")) $url .= '?';
|
| 27 |
+
else $url .= '&';
|
| 28 |
+
$url .= 'bic='.$bic.'&method=eps';
|
| 29 |
+
return $url;
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
?>
|
app/code/local/Sisow/Model/Methods/Focum.php
CHANGED
|
@@ -30,7 +30,7 @@ class Sisow_Model_Methods_Focum extends Sisow_Model_Methods_Abstract
|
|
| 30 |
$url = Mage::getUrl('sisow/checkout/redirect/', array('_secure' => true));
|
| 31 |
if (!strpos($url, "?")) $url .= '?';
|
| 32 |
else $url .= '&';
|
| 33 |
-
$url .= 'method=
|
| 34 |
$url .= '&gender='.$gender;
|
| 35 |
$url .= '&phone='.$phone;
|
| 36 |
$url .= '&dob='.$dob;
|
| 30 |
$url = Mage::getUrl('sisow/checkout/redirect/', array('_secure' => true));
|
| 31 |
if (!strpos($url, "?")) $url .= '?';
|
| 32 |
else $url .= '&';
|
| 33 |
+
$url .= 'method=focum';
|
| 34 |
$url .= '&gender='.$gender;
|
| 35 |
$url .= '&phone='.$phone;
|
| 36 |
$url .= '&dob='.$dob;
|
app/code/local/Sisow/Model/Methods/Giropay.php
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
class Sisow_Model_Methods_Giropay extends Sisow_Model_Methods_Abstract
|
| 3 |
+
{
|
| 4 |
+
protected $_code = 'sisow_giropay'; //sisow = modulenaam, ideal = paymentcode sisow
|
| 5 |
+
protected $_paymentcode = 'giropay';
|
| 6 |
+
|
| 7 |
+
//blocks for loading templates in checkout
|
| 8 |
+
protected $_formBlockType = 'sisow/paymentmethod_giropay';
|
| 9 |
+
//protected $_infoBlockType = 'sisow/paymentmethod_idealInfo';
|
| 10 |
+
|
| 11 |
+
protected $_isGateway = true;
|
| 12 |
+
protected $_canRefund = true;
|
| 13 |
+
protected $_canRefundInvoicePartial = true;
|
| 14 |
+
protected $_canUseCheckout = true;
|
| 15 |
+
|
| 16 |
+
public function getOrderPlaceRedirectUrl()
|
| 17 |
+
{
|
| 18 |
+
$bic = $_POST['payment']['sisow_giropay_bic'];
|
| 19 |
+
|
| 20 |
+
/*
|
| 21 |
+
* Redirect to Sisow
|
| 22 |
+
* method = paymentcode from Sisow
|
| 23 |
+
* additional params (fields from the checkout page)
|
| 24 |
+
*/
|
| 25 |
+
$url = Mage::getUrl('sisow/checkout/redirect/', array('_secure' => true));
|
| 26 |
+
if (!strpos($url, "?")) $url .= '?';
|
| 27 |
+
else $url .= '&';
|
| 28 |
+
$url .= 'bic='.$bic.'&method=giropay';
|
| 29 |
+
return $url;
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
?>
|
app/code/local/Sisow/controllers/CheckoutController.php
CHANGED
|
@@ -155,6 +155,8 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
|
|
| 155 |
case "Success":
|
| 156 |
if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
|
| 157 |
$order->sendNewOrderEmail();
|
|
|
|
|
|
|
| 158 |
|
| 159 |
if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
|
| 160 |
$base->trxId = $_GET['trxid'];
|
|
@@ -265,9 +267,8 @@ class Sisow_CheckoutController extends Mage_Core_Controller_Front_Action
|
|
| 265 |
$order->setState($mState, $mStatus, $comm, true);
|
| 266 |
$payment_transaction->addTransaction(Mage_Sales_Model_Order_Payment_Transaction::TYPE_VOID);
|
| 267 |
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
}
|
| 271 |
} elseif ($mState !== null && ($mState != $ostate || $mStatus != $ostate)) {
|
| 272 |
if($mail == 1)
|
| 273 |
{
|
| 155 |
case "Success":
|
| 156 |
if(Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()) == "after_notify_without_cancel")
|
| 157 |
$order->sendNewOrderEmail();
|
| 158 |
+
|
| 159 |
+
Mage::log($orderid . ' send mail state: ' . Mage::helper("sisow")->GetNewMailConfig($payment->getMethodInstance()->getCode()), null, 'log_sisow_mail.log');
|
| 160 |
|
| 161 |
if( $payment->getMethodInstance()->getCode() == 'sisow_overboeking' )
|
| 162 |
$base->trxId = $_GET['trxid'];
|
| 267 |
$order->setState($mState, $mStatus, $comm, true);
|
| 268 |
$payment_transaction->addTransaction(Mage_Sales_Model_Order_Payment_Transaction::TYPE_VOID);
|
| 269 |
|
| 270 |
+
echo '$order->setState(' . $mState . ', ' . $mStatus . ', ' . $comm . ')';
|
| 271 |
+
|
|
|
|
| 272 |
} elseif ($mState !== null && ($mState != $ostate || $mStatus != $ostate)) {
|
| 273 |
if($mail == 1)
|
| 274 |
{
|
app/code/local/Sisow/etc/config.xml
CHANGED
|
@@ -170,6 +170,13 @@
|
|
| 170 |
</args>
|
| 171 |
</sisow>
|
| 172 |
</routers>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
<translate>
|
| 174 |
<modules>
|
| 175 |
<Sisow>
|
|
@@ -230,6 +237,15 @@
|
|
| 230 |
<allowspecific>1</allowspecific>
|
| 231 |
<specificcountry>BE</specificcountry>
|
| 232 |
</sisow_mistercash>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
<sisow_sofort>
|
| 234 |
<group>sisow</group>
|
| 235 |
<active>0</active>
|
|
@@ -239,6 +255,15 @@
|
|
| 239 |
<allowspecific>1</allowspecific>
|
| 240 |
<specificcountry>AT,BE,FR,DE,IT,NL,PL,ES,CH</specificcountry>
|
| 241 |
</sisow_sofort>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
<sisow_visa>
|
| 243 |
<group>sisow</group>
|
| 244 |
<active>0</active>
|
| 170 |
</args>
|
| 171 |
</sisow>
|
| 172 |
</routers>
|
| 173 |
+
<layout>
|
| 174 |
+
<updates>
|
| 175 |
+
<sisow>
|
| 176 |
+
<file>sisow.xml</file>
|
| 177 |
+
</sisow>
|
| 178 |
+
</updates>
|
| 179 |
+
</layout>
|
| 180 |
<translate>
|
| 181 |
<modules>
|
| 182 |
<Sisow>
|
| 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>
|
| 244 |
+
<title>Sisow Giropay</title>
|
| 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>
|
| 262 |
+
<title>Sisow Eps</title>
|
| 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,6 +447,160 @@
|
|
| 447 |
</payment_fee_label>
|
| 448 |
</fields>
|
| 449 |
</sisow_mistercash>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 450 |
<sisow_sofort translate="label" module="sisow">
|
| 451 |
<label>Sisow SofortBanking</label>
|
| 452 |
<sort_order>30</sort_order>
|
|
@@ -601,6 +755,160 @@
|
|
| 601 |
</payment_fee_label>
|
| 602 |
</fields>
|
| 603 |
</sisow_sofort>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 604 |
<sisow_visa translate="label" module="sisow">
|
| 605 |
<label>Sisow Visa</label>
|
| 606 |
<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>
|
| 454 |
+
<show_in_website>1</show_in_website>
|
| 455 |
+
<show_in_store>1</show_in_store>
|
| 456 |
+
<fields>
|
| 457 |
+
<active translate="label">
|
| 458 |
+
<label>Enabled</label>
|
| 459 |
+
<frontend_type>select</frontend_type>
|
| 460 |
+
<config_path>payment/sisow_giropay/active</config_path>
|
| 461 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 462 |
+
<sort_order>10</sort_order>
|
| 463 |
+
<show_in_default>1</show_in_default>
|
| 464 |
+
<show_in_website>1</show_in_website>
|
| 465 |
+
<show_in_store>1</show_in_store>
|
| 466 |
+
</active>
|
| 467 |
+
<title translate="label">
|
| 468 |
+
<label>Title</label>
|
| 469 |
+
<frontend_type>text</frontend_type>
|
| 470 |
+
<config_path>payment/sisow_giropay/title</config_path>
|
| 471 |
+
<sort_order>20</sort_order>
|
| 472 |
+
<show_in_default>1</show_in_default>
|
| 473 |
+
<show_in_website>1</show_in_website>
|
| 474 |
+
<show_in_store>1</show_in_store>
|
| 475 |
+
</title>
|
| 476 |
+
<prefix translate="label">
|
| 477 |
+
<label>Prefix</label>
|
| 478 |
+
<frontend_type>text</frontend_type>
|
| 479 |
+
<config_path>payment/sisow_giropay/prefix</config_path>
|
| 480 |
+
<sort_order>30</sort_order>
|
| 481 |
+
<show_in_default>1</show_in_default>
|
| 482 |
+
<show_in_website>1</show_in_website>
|
| 483 |
+
<show_in_store>1</show_in_store>
|
| 484 |
+
</prefix>
|
| 485 |
+
<testmode translate="label">
|
| 486 |
+
<label>Testmode</label>
|
| 487 |
+
<frontend_type>select</frontend_type>
|
| 488 |
+
<config_path>payment/sisow_giropay/testmode</config_path>
|
| 489 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 490 |
+
<sort_order>40</sort_order>
|
| 491 |
+
<show_in_default>1</show_in_default>
|
| 492 |
+
<show_in_website>1</show_in_website>
|
| 493 |
+
<show_in_store>1</show_in_store>
|
| 494 |
+
</testmode>
|
| 495 |
+
<sort_order translate="label">
|
| 496 |
+
<label>Sort order</label>
|
| 497 |
+
<config_path>payment/sisow_giropay/sort_order</config_path>
|
| 498 |
+
<frontend_type>text</frontend_type>
|
| 499 |
+
<sort_order>50</sort_order>
|
| 500 |
+
<show_in_default>1</show_in_default>
|
| 501 |
+
<show_in_website>1</show_in_website>
|
| 502 |
+
<show_in_store>1</show_in_store>
|
| 503 |
+
</sort_order>
|
| 504 |
+
<new_order_mail translate="label">
|
| 505 |
+
<label>New order mail</label>
|
| 506 |
+
<frontend_type>select</frontend_type>
|
| 507 |
+
<config_path>payment/sisow_giropay/newordermail</config_path>
|
| 508 |
+
<source_model>sisow/config_newordermailMethod</source_model>
|
| 509 |
+
<sort_order>55</sort_order>
|
| 510 |
+
<show_in_default>1</show_in_default>
|
| 511 |
+
<show_in_website>1</show_in_website>
|
| 512 |
+
<show_in_store>1</show_in_store>
|
| 513 |
+
</new_order_mail>
|
| 514 |
+
<auto_invoice translate="label">
|
| 515 |
+
<label>Auto invoice</label>
|
| 516 |
+
<frontend_type>select</frontend_type>
|
| 517 |
+
<config_path>payment/sisow_giropay/autoinvoice</config_path>
|
| 518 |
+
<source_model>sisow/config_autoinvoice</source_model>
|
| 519 |
+
<sort_order>60</sort_order>
|
| 520 |
+
<show_in_default>1</show_in_default>
|
| 521 |
+
<show_in_website>1</show_in_website>
|
| 522 |
+
<show_in_store>1</show_in_store>
|
| 523 |
+
</auto_invoice>
|
| 524 |
+
<min_order_total translate="label">
|
| 525 |
+
<label>Minimum Order Total</label>
|
| 526 |
+
<config_path>payment/sisow_giropay/min_order_total</config_path>
|
| 527 |
+
<frontend_type>text</frontend_type>
|
| 528 |
+
<sort_order>70</sort_order>
|
| 529 |
+
<show_in_default>1</show_in_default>
|
| 530 |
+
<show_in_website>1</show_in_website>
|
| 531 |
+
<show_in_store>1</show_in_store>
|
| 532 |
+
</min_order_total>
|
| 533 |
+
<max_order_total translate="label">
|
| 534 |
+
<label>Maximum Order Total</label>
|
| 535 |
+
<config_path>payment/sisow_giropay/max_order_total</config_path>
|
| 536 |
+
<frontend_type>text</frontend_type>
|
| 537 |
+
<sort_order>80</sort_order>
|
| 538 |
+
<show_in_default>1</show_in_default>
|
| 539 |
+
<show_in_website>1</show_in_website>
|
| 540 |
+
<show_in_store>1</show_in_store>
|
| 541 |
+
</max_order_total>
|
| 542 |
+
<allowspecific translate="label">
|
| 543 |
+
<label>Payment from Applicable Countries</label>
|
| 544 |
+
<frontend_type>allowspecific</frontend_type>
|
| 545 |
+
<config_path>payment/sisow_giropay/allowspecific</config_path>
|
| 546 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
| 547 |
+
<sort_order>90</sort_order>
|
| 548 |
+
<show_in_default>1</show_in_default>
|
| 549 |
+
<show_in_website>1</show_in_website>
|
| 550 |
+
<show_in_store>1</show_in_store>
|
| 551 |
+
</allowspecific>
|
| 552 |
+
<specificcountry translate="label">
|
| 553 |
+
<label>Payment from Specific Country</label>
|
| 554 |
+
<frontend_type>multiselect</frontend_type>
|
| 555 |
+
<config_path>payment/sisow_giropay/specificcountry</config_path>
|
| 556 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
| 557 |
+
<sort_order>100</sort_order>
|
| 558 |
+
<show_in_default>1</show_in_default>
|
| 559 |
+
<show_in_website>1</show_in_website>
|
| 560 |
+
<show_in_store>1</show_in_store>
|
| 561 |
+
</specificcountry>
|
| 562 |
+
<payment_fee translate="label">
|
| 563 |
+
<label>Payment fee</label>
|
| 564 |
+
<config_path>payment/sisow_giropay/payment_fee</config_path>
|
| 565 |
+
<sort_order>110</sort_order>
|
| 566 |
+
<show_in_default>1</show_in_default>
|
| 567 |
+
<show_in_website>1</show_in_website>
|
| 568 |
+
<show_in_store>1</show_in_store>
|
| 569 |
+
<comment>Payment fee, positive is amount, negative is percentage or make a comination (eg 1;-3)</comment>
|
| 570 |
+
</payment_fee>
|
| 571 |
+
<payment_fee_tax translate="label">
|
| 572 |
+
<label>Payment fee tax class</label>
|
| 573 |
+
<frontend_type>select</frontend_type>
|
| 574 |
+
<config_path>payment/sisow_giropay/payment_fee_tax</config_path>
|
| 575 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
| 576 |
+
<sort_order>120</sort_order>
|
| 577 |
+
<show_in_default>1</show_in_default>
|
| 578 |
+
<show_in_store>1</show_in_store>
|
| 579 |
+
<show_in_website>1</show_in_website>
|
| 580 |
+
<comment>The tax class to use to calculate the payment fee tax</comment>
|
| 581 |
+
</payment_fee_tax>
|
| 582 |
+
<payment_fee_inc_ex translate="label">
|
| 583 |
+
<label>Including/Excluding Tax</label>
|
| 584 |
+
<frontend_type>select</frontend_type>
|
| 585 |
+
<config_path>payment/sisow_giropay/payment_fee_inc_ex</config_path>
|
| 586 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 587 |
+
<sort_order>130</sort_order>
|
| 588 |
+
<show_in_default>1</show_in_default>
|
| 589 |
+
<show_in_website>1</show_in_website>
|
| 590 |
+
<show_in_store>1</show_in_store>
|
| 591 |
+
<comment>Is the entered payment fee value including or exluding tax</comment>
|
| 592 |
+
</payment_fee_inc_ex>
|
| 593 |
+
<payment_fee_label translate="label,comment">
|
| 594 |
+
<label>Payment fee label</label>
|
| 595 |
+
<config_path>payment/sisow_giropay/payment_fee_label</config_path>
|
| 596 |
+
<sort_order>140</sort_order>
|
| 597 |
+
<show_in_default>1</show_in_default>
|
| 598 |
+
<show_in_website>1</show_in_website>
|
| 599 |
+
<show_in_store>1</show_in_store>
|
| 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>
|
| 762 |
+
<show_in_website>1</show_in_website>
|
| 763 |
+
<show_in_store>1</show_in_store>
|
| 764 |
+
<fields>
|
| 765 |
+
<active translate="label">
|
| 766 |
+
<label>Enabled</label>
|
| 767 |
+
<frontend_type>select</frontend_type>
|
| 768 |
+
<config_path>payment/sisow_eps/active</config_path>
|
| 769 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 770 |
+
<sort_order>10</sort_order>
|
| 771 |
+
<show_in_default>1</show_in_default>
|
| 772 |
+
<show_in_website>1</show_in_website>
|
| 773 |
+
<show_in_store>1</show_in_store>
|
| 774 |
+
</active>
|
| 775 |
+
<title translate="label">
|
| 776 |
+
<label>Title</label>
|
| 777 |
+
<frontend_type>text</frontend_type>
|
| 778 |
+
<config_path>payment/sisow_eps/title</config_path>
|
| 779 |
+
<sort_order>20</sort_order>
|
| 780 |
+
<show_in_default>1</show_in_default>
|
| 781 |
+
<show_in_website>1</show_in_website>
|
| 782 |
+
<show_in_store>1</show_in_store>
|
| 783 |
+
</title>
|
| 784 |
+
<prefix translate="label">
|
| 785 |
+
<label>Prefix</label>
|
| 786 |
+
<frontend_type>text</frontend_type>
|
| 787 |
+
<config_path>payment/sisow_eps/prefix</config_path>
|
| 788 |
+
<sort_order>30</sort_order>
|
| 789 |
+
<show_in_default>1</show_in_default>
|
| 790 |
+
<show_in_website>1</show_in_website>
|
| 791 |
+
<show_in_store>1</show_in_store>
|
| 792 |
+
</prefix>
|
| 793 |
+
<testmode translate="label">
|
| 794 |
+
<label>Testmode</label>
|
| 795 |
+
<frontend_type>select</frontend_type>
|
| 796 |
+
<config_path>payment/sisow_eps/testmode</config_path>
|
| 797 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 798 |
+
<sort_order>40</sort_order>
|
| 799 |
+
<show_in_default>1</show_in_default>
|
| 800 |
+
<show_in_website>1</show_in_website>
|
| 801 |
+
<show_in_store>1</show_in_store>
|
| 802 |
+
</testmode>
|
| 803 |
+
<sort_order translate="label">
|
| 804 |
+
<label>Sort order</label>
|
| 805 |
+
<config_path>payment/sisow_eps/sort_order</config_path>
|
| 806 |
+
<frontend_type>text</frontend_type>
|
| 807 |
+
<sort_order>50</sort_order>
|
| 808 |
+
<show_in_default>1</show_in_default>
|
| 809 |
+
<show_in_website>1</show_in_website>
|
| 810 |
+
<show_in_store>1</show_in_store>
|
| 811 |
+
</sort_order>
|
| 812 |
+
<new_order_mail translate="label">
|
| 813 |
+
<label>New order mail</label>
|
| 814 |
+
<frontend_type>select</frontend_type>
|
| 815 |
+
<config_path>payment/sisow_eps/newordermail</config_path>
|
| 816 |
+
<source_model>sisow/config_newordermailMethod</source_model>
|
| 817 |
+
<sort_order>55</sort_order>
|
| 818 |
+
<show_in_default>1</show_in_default>
|
| 819 |
+
<show_in_website>1</show_in_website>
|
| 820 |
+
<show_in_store>1</show_in_store>
|
| 821 |
+
</new_order_mail>
|
| 822 |
+
<auto_invoice translate="label">
|
| 823 |
+
<label>Auto invoice</label>
|
| 824 |
+
<frontend_type>select</frontend_type>
|
| 825 |
+
<config_path>payment/sisow_eps/autoinvoice</config_path>
|
| 826 |
+
<source_model>sisow/config_autoinvoice</source_model>
|
| 827 |
+
<sort_order>60</sort_order>
|
| 828 |
+
<show_in_default>1</show_in_default>
|
| 829 |
+
<show_in_website>1</show_in_website>
|
| 830 |
+
<show_in_store>1</show_in_store>
|
| 831 |
+
</auto_invoice>
|
| 832 |
+
<min_order_total translate="label">
|
| 833 |
+
<label>Minimum Order Total</label>
|
| 834 |
+
<config_path>payment/sisow_eps/min_order_total</config_path>
|
| 835 |
+
<frontend_type>text</frontend_type>
|
| 836 |
+
<sort_order>70</sort_order>
|
| 837 |
+
<show_in_default>1</show_in_default>
|
| 838 |
+
<show_in_website>1</show_in_website>
|
| 839 |
+
<show_in_store>1</show_in_store>
|
| 840 |
+
</min_order_total>
|
| 841 |
+
<max_order_total translate="label">
|
| 842 |
+
<label>Maximum Order Total</label>
|
| 843 |
+
<config_path>payment/sisow_eps/max_order_total</config_path>
|
| 844 |
+
<frontend_type>text</frontend_type>
|
| 845 |
+
<sort_order>80</sort_order>
|
| 846 |
+
<show_in_default>1</show_in_default>
|
| 847 |
+
<show_in_website>1</show_in_website>
|
| 848 |
+
<show_in_store>1</show_in_store>
|
| 849 |
+
</max_order_total>
|
| 850 |
+
<allowspecific translate="label">
|
| 851 |
+
<label>Payment from Applicable Countries</label>
|
| 852 |
+
<frontend_type>allowspecific</frontend_type>
|
| 853 |
+
<config_path>payment/sisow_eps/allowspecific</config_path>
|
| 854 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
| 855 |
+
<sort_order>90</sort_order>
|
| 856 |
+
<show_in_default>1</show_in_default>
|
| 857 |
+
<show_in_website>1</show_in_website>
|
| 858 |
+
<show_in_store>1</show_in_store>
|
| 859 |
+
</allowspecific>
|
| 860 |
+
<specificcountry translate="label">
|
| 861 |
+
<label>Payment from Specific Country</label>
|
| 862 |
+
<frontend_type>multiselect</frontend_type>
|
| 863 |
+
<config_path>payment/sisow_eps/specificcountry</config_path>
|
| 864 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
| 865 |
+
<sort_order>100</sort_order>
|
| 866 |
+
<show_in_default>1</show_in_default>
|
| 867 |
+
<show_in_website>1</show_in_website>
|
| 868 |
+
<show_in_store>1</show_in_store>
|
| 869 |
+
</specificcountry>
|
| 870 |
+
<payment_fee translate="label">
|
| 871 |
+
<label>Payment fee</label>
|
| 872 |
+
<config_path>payment/sisow_eps/payment_fee</config_path>
|
| 873 |
+
<sort_order>110</sort_order>
|
| 874 |
+
<show_in_default>1</show_in_default>
|
| 875 |
+
<show_in_website>1</show_in_website>
|
| 876 |
+
<show_in_store>1</show_in_store>
|
| 877 |
+
<comment>Payment fee, positive is amount, negative is percentage or make a comination (eg 1;-3)</comment>
|
| 878 |
+
</payment_fee>
|
| 879 |
+
<payment_fee_tax translate="label">
|
| 880 |
+
<label>Payment fee tax class</label>
|
| 881 |
+
<frontend_type>select</frontend_type>
|
| 882 |
+
<config_path>payment/sisow_eps/payment_fee_tax</config_path>
|
| 883 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
| 884 |
+
<sort_order>120</sort_order>
|
| 885 |
+
<show_in_default>1</show_in_default>
|
| 886 |
+
<show_in_store>1</show_in_store>
|
| 887 |
+
<show_in_website>1</show_in_website>
|
| 888 |
+
<comment>The tax class to use to calculate the payment fee tax</comment>
|
| 889 |
+
</payment_fee_tax>
|
| 890 |
+
<payment_fee_inc_ex translate="label">
|
| 891 |
+
<label>Including/Excluding Tax</label>
|
| 892 |
+
<frontend_type>select</frontend_type>
|
| 893 |
+
<config_path>payment/sisow_eps/payment_fee_inc_ex</config_path>
|
| 894 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 895 |
+
<sort_order>130</sort_order>
|
| 896 |
+
<show_in_default>1</show_in_default>
|
| 897 |
+
<show_in_website>1</show_in_website>
|
| 898 |
+
<show_in_store>1</show_in_store>
|
| 899 |
+
<comment>Is the entered payment fee value including or exluding tax</comment>
|
| 900 |
+
</payment_fee_inc_ex>
|
| 901 |
+
<payment_fee_label translate="label,comment">
|
| 902 |
+
<label>Payment fee label</label>
|
| 903 |
+
<config_path>payment/sisow_eps/payment_fee_label</config_path>
|
| 904 |
+
<sort_order>140</sort_order>
|
| 905 |
+
<show_in_default>1</show_in_default>
|
| 906 |
+
<show_in_website>1</show_in_website>
|
| 907 |
+
<show_in_store>1</show_in_store>
|
| 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/template/sisow/checkout/default_form.phtml
CHANGED
|
@@ -11,5 +11,6 @@ $_paymentfee = $this->getFee();
|
|
| 11 |
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
| 12 |
}
|
| 13 |
?>
|
|
|
|
| 14 |
</li>
|
| 15 |
</ul>
|
| 11 |
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
| 12 |
}
|
| 13 |
?>
|
| 14 |
+
|
| 15 |
</li>
|
| 16 |
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/eps_form.phtml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
$_code = $this->getMethodCode();
|
| 3 |
+
$_paymentfee = $this->getFee();
|
| 4 |
+
?>
|
| 5 |
+
<script>
|
| 6 |
+
var j = jQuery.noConflict();
|
| 7 |
+
j(document).ready(function() {
|
| 8 |
+
j('#eps_widget').eps_widget({'return': 'bic'});
|
| 9 |
+
});
|
| 10 |
+
</script>
|
| 11 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
| 12 |
+
<li>
|
| 13 |
+
<?php
|
| 14 |
+
if($_paymentfee['incl'] > 0)
|
| 15 |
+
{
|
| 16 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
| 17 |
+
}
|
| 18 |
+
?>
|
| 19 |
+
<input id="eps_widget" type="text" autocomplete="off" name="payment[sisow_eps_bic]" />
|
| 20 |
+
</li>
|
| 21 |
+
</ul>
|
app/design/frontend/base/default/template/sisow/checkout/giropay_form.phtml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
$_code = $this->getMethodCode();
|
| 3 |
+
$_paymentfee = $this->getFee();
|
| 4 |
+
?>
|
| 5 |
+
<script>
|
| 6 |
+
var j = jQuery.noConflict();
|
| 7 |
+
j(document).ready(function() {
|
| 8 |
+
j('#giropay_widget').giropay_widget({'return': 'bic','kind': 0});
|
| 9 |
+
});
|
| 10 |
+
</script>
|
| 11 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
| 12 |
+
<li>
|
| 13 |
+
<?php
|
| 14 |
+
if($_paymentfee['incl'] > 0)
|
| 15 |
+
{
|
| 16 |
+
echo '<b>'. $this->__(Mage::getStoreConfig('payment/'.$_code.'/payment_fee_label')) .' ' . Mage::app()->getStore()->convertPrice($_paymentfee['incl'], true, true).'</b>';
|
| 17 |
+
}
|
| 18 |
+
?>
|
| 19 |
+
<input id="giropay_widget" type="text" autocomplete="off" name="payment[sisow_giropay_bic]" />
|
| 20 |
+
</li>
|
| 21 |
+
</ul>
|
package.xml
CHANGED
|
@@ -1,13 +1,14 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>sisowpayment</name>
|
| 4 |
-
<version>4.2.
|
| 5 |
<stability>beta</stability>
|
| 6 |
<license/>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>This plug-in contains all the payment options from Sisow.</summary>
|
| 10 |
<description>This plug-in contains the following payment methods:
|
|
|
|
| 11 |
Bankwire
|
| 12 |
Creditcard (Maestro/MasterCard/Visa)
|
| 13 |
Ebill
|
|
@@ -16,12 +17,11 @@ Klarna Account
|
|
| 16 |
Klarna Invoice
|
| 17 |
MisterCash
|
| 18 |
Sofort</description>
|
| 19 |
-
<notes>
|
| 20 |
-
Fix: sending Ebill from backend (No mail error)</notes>
|
| 21 |
<authors><author><name>Sisow</name><user>auto-converted</user><email>support@sisow.nl</email></author></authors>
|
| 22 |
-
<date>2015-02-
|
| 23 |
-
<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="Focum.php" hash="cc242ee202d45176ff1265ca445ec937"/><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="
|
| 25 |
<compatible/>
|
| 26 |
<dependencies/>
|
| 27 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>sisowpayment</name>
|
| 4 |
+
<version>4.2.1</version>
|
| 5 |
<stability>beta</stability>
|
| 6 |
<license/>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>This plug-in contains all the payment options from Sisow.</summary>
|
| 10 |
<description>This plug-in contains the following payment methods:
|
| 11 |
+
Achteraf Betalen(Focum)
|
| 12 |
Bankwire
|
| 13 |
Creditcard (Maestro/MasterCard/Visa)
|
| 14 |
Ebill
|
| 17 |
Klarna Invoice
|
| 18 |
MisterCash
|
| 19 |
Sofort</description>
|
| 20 |
+
<notes>Fix: communication Sisow</notes>
|
|
|
|
| 21 |
<authors><author><name>Sisow</name><user>auto-converted</user><email>support@sisow.nl</email></author></authors>
|
| 22 |
+
<date>2015-02-23</date>
|
| 23 |
+
<time>09:49:39</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="a67cf4e1f4af6303545834a33863b73a"/></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="99db52231b8fe6c80ed653e19dc6a34e"/><file name="Paymentfee.php" hash="78835217b2b6875e14da8b6630c21456"/><file name="Sendebill.php" hash="95adb35fbd55ac3c8c077cd6a54050b5"/><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="a1f3b4fe8070a46ce84b156d9db44a6c"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="dee9658ecd645beab234ec0a762cc359"/><file name="NotifyController.php" hash="4793822e1b937191ace1f2925038082f"/></dir><dir name="etc"><file name="config.xml" hash="f3762f463373a201f5d3e12c066f94ba"/><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="d10abfa8bf5855365ac66fadd08496f3"/><file name="focum_form.phtml" hash="d52d5c0461e2dd6c79ed039a41c76b58"/><file name="giropay_form.phtml" hash="4d3a59d783b8212b8702f9d756083911"/><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>
|
