Version Notes
Added: iDEAL QR
Added: V PAY
Download this release
Release Info
Developer | sisow |
Extension | sisowpayment |
Version | 4.6.0 |
Comparing to | |
See all releases |
Code changes from version 4.5.12 to 4.6.0
- app/code/local/Sisow/Model/Methods/Idealqr.php +14 -0
- app/code/local/Sisow/Model/Methods/Maestro.php +0 -14
- app/code/local/Sisow/Model/Methods/Vpay.php +14 -0
- app/code/local/Sisow/controllers/NotifyController.php +0 -18
- app/code/local/Sisow/etc/config.xml +17 -0
- app/code/local/Sisow/etc/system.xml +324 -0
- package.xml +6 -5
app/code/local/Sisow/Model/Methods/Idealqr.php
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Sisow_Model_Methods_Idealqr extends Sisow_Model_Methods_Abstract
|
3 |
+
{
|
4 |
+
protected $_code = 'sisow_idealqr'; //sisow = modulenaam, ideal = paymentcode sisow
|
5 |
+
protected $_paymentcode = 'idealqr';
|
6 |
+
|
7 |
+
//blocks for loading templates in checkout
|
8 |
+
protected $_formBlockType = 'sisow/paymentmethod_default';
|
9 |
+
protected $_infoBlockType = 'sisow/paymentmethod_defaultInfo';
|
10 |
+
|
11 |
+
protected $_isGateway = true;
|
12 |
+
protected $_canUseCheckout = true;
|
13 |
+
}
|
14 |
+
?>
|
app/code/local/Sisow/Model/Methods/Maestro.php
CHANGED
@@ -10,19 +10,5 @@ class Sisow_Model_Methods_Maestro extends Sisow_Model_Methods_Abstract
|
|
10 |
|
11 |
protected $_isGateway = true;
|
12 |
protected $_canUseCheckout = true;
|
13 |
-
|
14 |
-
public function getOrderPlaceRedirectUrl()
|
15 |
-
{
|
16 |
-
/*
|
17 |
-
* Redirect to Sisow
|
18 |
-
* method = paymentcode from Sisow
|
19 |
-
* additional params (fields from the checkout page)
|
20 |
-
*/
|
21 |
-
$url = Mage::getUrl('sisow/checkout/redirect/', array('_secure' => true));
|
22 |
-
if (!strpos($url, "?")) $url .= '?';
|
23 |
-
else $url .= '&';
|
24 |
-
$url .= '&method=maestro';
|
25 |
-
return $url;
|
26 |
-
}
|
27 |
}
|
28 |
?>
|
10 |
|
11 |
protected $_isGateway = true;
|
12 |
protected $_canUseCheckout = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
?>
|
app/code/local/Sisow/Model/Methods/Vpay.php
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Sisow_Model_Methods_Vpay extends Sisow_Model_Methods_Abstract
|
3 |
+
{
|
4 |
+
protected $_code = 'sisow_vpay'; //sisow = modulenaam, ideal = paymentcode sisow
|
5 |
+
protected $_paymentcode = 'vpay';
|
6 |
+
|
7 |
+
//blocks for loading templates in checkout
|
8 |
+
protected $_formBlockType = 'sisow/paymentmethod_default';
|
9 |
+
protected $_infoBlockType = 'sisow/paymentmethod_defaultInfo';
|
10 |
+
|
11 |
+
protected $_isGateway = true;
|
12 |
+
protected $_canUseCheckout = true;
|
13 |
+
}
|
14 |
+
?>
|
app/code/local/Sisow/controllers/NotifyController.php
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class Sisow_NotifyController extends Mage_Core_Controller_Front_Action {
|
4 |
-
{
|
5 |
-
public function Sisow_NotifyController()
|
6 |
-
{
|
7 |
-
echo 'test2';
|
8 |
-
exit;
|
9 |
-
}
|
10 |
-
|
11 |
-
public function indexAction()
|
12 |
-
{
|
13 |
-
echo 'test';
|
14 |
-
exit;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Sisow/etc/config.xml
CHANGED
@@ -238,6 +238,15 @@
|
|
238 |
<allowspecific>1</allowspecific>
|
239 |
<specificcountry>NL</specificcountry>
|
240 |
</sisow_ideal>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
<sisow_mistercash>
|
242 |
<group>sisow</group>
|
243 |
<active>0</active>
|
@@ -307,6 +316,14 @@
|
|
307 |
<testmode>0</testmode>
|
308 |
<allowspecific>0</allowspecific>
|
309 |
</sisow_maestro>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
<sisow_overboeking>
|
311 |
<group>sisow</group>
|
312 |
<active>0</active>
|
238 |
<allowspecific>1</allowspecific>
|
239 |
<specificcountry>NL</specificcountry>
|
240 |
</sisow_ideal>
|
241 |
+
<sisow_idealqr>
|
242 |
+
<group>sisow</group>
|
243 |
+
<active>0</active>
|
244 |
+
<model>sisow/methods_Idealqr</model>
|
245 |
+
<title>Sisow iDEAL QR</title>
|
246 |
+
<testmode>0</testmode>
|
247 |
+
<allowspecific>1</allowspecific>
|
248 |
+
<specificcountry>NL</specificcountry>
|
249 |
+
</sisow_idealqr>
|
250 |
<sisow_mistercash>
|
251 |
<group>sisow</group>
|
252 |
<active>0</active>
|
316 |
<testmode>0</testmode>
|
317 |
<allowspecific>0</allowspecific>
|
318 |
</sisow_maestro>
|
319 |
+
<sisow_vpay>
|
320 |
+
<group>sisow</group>
|
321 |
+
<active>0</active>
|
322 |
+
<model>sisow/methods_Vpay</model>
|
323 |
+
<title>Sisow V PAY</title>
|
324 |
+
<testmode>0</testmode>
|
325 |
+
<allowspecific>0</allowspecific>
|
326 |
+
</sisow_vpay>
|
327 |
<sisow_overboeking>
|
328 |
<group>sisow</group>
|
329 |
<active>0</active>
|
app/code/local/Sisow/etc/system.xml
CHANGED
@@ -354,6 +354,168 @@
|
|
354 |
</payment_fee_label>
|
355 |
</fields>
|
356 |
</sisow_ideal>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
<sisow_mistercash translate="label" module="sisow">
|
358 |
<label>Sisow MisterCash</label>
|
359 |
<sort_order>20</sort_order>
|
@@ -1650,6 +1812,168 @@
|
|
1650 |
</payment_fee_label>
|
1651 |
</fields>
|
1652 |
</sisow_maestro>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1653 |
<sisow_overboeking translate="label" module="sisow">
|
1654 |
<label>Sisow OverBoeking</label>
|
1655 |
<sort_order>50</sort_order>
|
354 |
</payment_fee_label>
|
355 |
</fields>
|
356 |
</sisow_ideal>
|
357 |
+
<sisow_idealqr translate="label" module="sisow">
|
358 |
+
<label>Sisow iDEAL QR</label>
|
359 |
+
<sort_order>11</sort_order>
|
360 |
+
<show_in_default>1</show_in_default>
|
361 |
+
<show_in_website>1</show_in_website>
|
362 |
+
<show_in_store>1</show_in_store>
|
363 |
+
<fields>
|
364 |
+
<active translate="label">
|
365 |
+
<label>Enabled</label>
|
366 |
+
<frontend_type>select</frontend_type>
|
367 |
+
<config_path>payment/sisow_idealqr/active</config_path>
|
368 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
369 |
+
<sort_order>10</sort_order>
|
370 |
+
<show_in_default>1</show_in_default>
|
371 |
+
<show_in_website>1</show_in_website>
|
372 |
+
<show_in_store>1</show_in_store>
|
373 |
+
</active>
|
374 |
+
<title translate="label">
|
375 |
+
<label>Title</label>
|
376 |
+
<frontend_type>text</frontend_type>
|
377 |
+
<config_path>payment/sisow_idealqr/title</config_path>
|
378 |
+
<sort_order>20</sort_order>
|
379 |
+
<show_in_default>1</show_in_default>
|
380 |
+
<show_in_website>1</show_in_website>
|
381 |
+
<show_in_store>1</show_in_store>
|
382 |
+
</title>
|
383 |
+
<prefix translate="label">
|
384 |
+
<label>Prefix</label>
|
385 |
+
<config_path>payment/sisow_idealqr/prefix</config_path>
|
386 |
+
<frontend_type>text</frontend_type>
|
387 |
+
<sort_order>30</sort_order>
|
388 |
+
<show_in_default>1</show_in_default>
|
389 |
+
<show_in_website>1</show_in_website>
|
390 |
+
<show_in_store>1</show_in_store>
|
391 |
+
</prefix>
|
392 |
+
<testmode translate="label">
|
393 |
+
<label>Testmode</label>
|
394 |
+
<frontend_type>select</frontend_type>
|
395 |
+
<config_path>payment/sisow_idealqr/testmode</config_path>
|
396 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
397 |
+
<sort_order>40</sort_order>
|
398 |
+
<show_in_default>1</show_in_default>
|
399 |
+
<show_in_website>1</show_in_website>
|
400 |
+
<show_in_store>1</show_in_store>
|
401 |
+
</testmode>
|
402 |
+
<sort_order translate="label">
|
403 |
+
<label>Sort order</label>
|
404 |
+
<config_path>payment/sisow_idealqr/sort_order</config_path>
|
405 |
+
<frontend_type>text</frontend_type>
|
406 |
+
<sort_order>50</sort_order>
|
407 |
+
<show_in_default>1</show_in_default>
|
408 |
+
<show_in_website>1</show_in_website>
|
409 |
+
<show_in_store>1</show_in_store>
|
410 |
+
</sort_order>
|
411 |
+
<new_order_mail translate="label">
|
412 |
+
<label>New order mail</label>
|
413 |
+
<frontend_type>select</frontend_type>
|
414 |
+
<config_path>payment/sisow_idealqr/newordermail</config_path>
|
415 |
+
<source_model>sisow/config_newordermailMethod</source_model>
|
416 |
+
<sort_order>55</sort_order>
|
417 |
+
<show_in_default>1</show_in_default>
|
418 |
+
<show_in_website>1</show_in_website>
|
419 |
+
<show_in_store>1</show_in_store>
|
420 |
+
</new_order_mail>
|
421 |
+
<auto_invoice translate="label">
|
422 |
+
<label>Auto invoice</label>
|
423 |
+
<frontend_type>select</frontend_type>
|
424 |
+
<config_path>payment/sisow_idealqr/autoinvoice</config_path>
|
425 |
+
<source_model>sisow/config_autoinvoice</source_model>
|
426 |
+
<sort_order>60</sort_order>
|
427 |
+
<show_in_default>1</show_in_default>
|
428 |
+
<show_in_website>1</show_in_website>
|
429 |
+
<show_in_store>1</show_in_store>
|
430 |
+
</auto_invoice>
|
431 |
+
<min_order_total translate="label">
|
432 |
+
<label>Minimum Order Total</label>
|
433 |
+
<config_path>payment/sisow_idealqr/min_order_total</config_path>
|
434 |
+
<frontend_type>text</frontend_type>
|
435 |
+
<sort_order>70</sort_order>
|
436 |
+
<show_in_default>1</show_in_default>
|
437 |
+
<show_in_website>1</show_in_website>
|
438 |
+
<show_in_store>1</show_in_store>
|
439 |
+
</min_order_total>
|
440 |
+
<max_order_total translate="label">
|
441 |
+
<label>Maximum Order Total</label>
|
442 |
+
<config_path>payment/sisow_idealqr/max_order_total</config_path>
|
443 |
+
<frontend_type>text</frontend_type>
|
444 |
+
<sort_order>80</sort_order>
|
445 |
+
<show_in_default>1</show_in_default>
|
446 |
+
<show_in_website>1</show_in_website>
|
447 |
+
<show_in_store>1</show_in_store>
|
448 |
+
</max_order_total>
|
449 |
+
<allowspecific translate="label">
|
450 |
+
<label>Payment from Applicable Countries</label>
|
451 |
+
<frontend_type>allowspecific</frontend_type>
|
452 |
+
<config_path>payment/sisow_idealqr/allowspecific</config_path>
|
453 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
454 |
+
<sort_order>90</sort_order>
|
455 |
+
<show_in_default>1</show_in_default>
|
456 |
+
<show_in_website>1</show_in_website>
|
457 |
+
<show_in_store>1</show_in_store>
|
458 |
+
</allowspecific>
|
459 |
+
<specificcountry translate="label">
|
460 |
+
<label>Payment from Specific Country</label>
|
461 |
+
<frontend_type>multiselect</frontend_type>
|
462 |
+
<config_path>payment/sisow_idealqr/specificcountry</config_path>
|
463 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
464 |
+
<sort_order>100</sort_order>
|
465 |
+
<show_in_default>1</show_in_default>
|
466 |
+
<show_in_website>1</show_in_website>
|
467 |
+
<show_in_store>1</show_in_store>
|
468 |
+
</specificcountry>
|
469 |
+
<instructions translate="label">
|
470 |
+
<label>Payment Instructions</label>
|
471 |
+
<config_path>payment/sisow_idealqr/instructions</config_path>
|
472 |
+
<sort_order>105</sort_order>
|
473 |
+
<show_in_default>1</show_in_default>
|
474 |
+
<show_in_website>1</show_in_website>
|
475 |
+
<show_in_store>1</show_in_store>
|
476 |
+
</instructions>
|
477 |
+
<payment_fee translate="label">
|
478 |
+
<label>Payment fee</label>
|
479 |
+
<config_path>payment/sisow_idealqr/payment_fee</config_path>
|
480 |
+
<sort_order>110</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 |
+
<comment>Payment fee, positive is amount, negative is percentage or make a comination (eg 1;-3)</comment>
|
485 |
+
</payment_fee>
|
486 |
+
<payment_fee_tax translate="label">
|
487 |
+
<label>Payment fee tax class</label>
|
488 |
+
<frontend_type>select</frontend_type>
|
489 |
+
<config_path>payment/sisow_idealqr/payment_fee_tax</config_path>
|
490 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
491 |
+
<sort_order>120</sort_order>
|
492 |
+
<show_in_default>1</show_in_default>
|
493 |
+
<show_in_store>1</show_in_store>
|
494 |
+
<show_in_website>1</show_in_website>
|
495 |
+
<comment>The tax class to use to calculate the payment fee tax</comment>
|
496 |
+
</payment_fee_tax>
|
497 |
+
<payment_fee_inc_ex translate="label">
|
498 |
+
<label>Including/Excluding Tax</label>
|
499 |
+
<frontend_type>select</frontend_type>
|
500 |
+
<config_path>payment/sisow_idealqr/payment_fee_inc_ex</config_path>
|
501 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
502 |
+
<sort_order>130</sort_order>
|
503 |
+
<show_in_default>1</show_in_default>
|
504 |
+
<show_in_website>1</show_in_website>
|
505 |
+
<show_in_store>1</show_in_store>
|
506 |
+
<comment>Is the entered payment fee value including or exluding tax</comment>
|
507 |
+
</payment_fee_inc_ex>
|
508 |
+
<payment_fee_label translate="label,comment">
|
509 |
+
<label>Payment fee label</label>
|
510 |
+
<config_path>payment/sisow_idealqr/payment_fee_label</config_path>
|
511 |
+
<sort_order>140</sort_order>
|
512 |
+
<show_in_default>1</show_in_default>
|
513 |
+
<show_in_website>1</show_in_website>
|
514 |
+
<show_in_store>1</show_in_store>
|
515 |
+
<comment>Payment fee label to show</comment>
|
516 |
+
</payment_fee_label>
|
517 |
+
</fields>
|
518 |
+
</sisow_idealqr>
|
519 |
<sisow_mistercash translate="label" module="sisow">
|
520 |
<label>Sisow MisterCash</label>
|
521 |
<sort_order>20</sort_order>
|
1812 |
</payment_fee_label>
|
1813 |
</fields>
|
1814 |
</sisow_maestro>
|
1815 |
+
<sisow_vpay translate="label" module="sisow">
|
1816 |
+
<label>Sisow V PAY</label>
|
1817 |
+
<sort_order>47</sort_order>
|
1818 |
+
<show_in_default>1</show_in_default>
|
1819 |
+
<show_in_website>1</show_in_website>
|
1820 |
+
<show_in_store>1</show_in_store>
|
1821 |
+
<fields>
|
1822 |
+
<active translate="label">
|
1823 |
+
<label>Enabled</label>
|
1824 |
+
<frontend_type>select</frontend_type>
|
1825 |
+
<config_path>payment/sisow_vpay/active</config_path>
|
1826 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1827 |
+
<sort_order>10</sort_order>
|
1828 |
+
<show_in_default>1</show_in_default>
|
1829 |
+
<show_in_website>1</show_in_website>
|
1830 |
+
<show_in_store>1</show_in_store>
|
1831 |
+
</active>
|
1832 |
+
<title translate="label">
|
1833 |
+
<label>Title</label>
|
1834 |
+
<frontend_type>text</frontend_type>
|
1835 |
+
<config_path>payment/sisow_vpay/title</config_path>
|
1836 |
+
<sort_order>20</sort_order>
|
1837 |
+
<show_in_default>1</show_in_default>
|
1838 |
+
<show_in_website>1</show_in_website>
|
1839 |
+
<show_in_store>1</show_in_store>
|
1840 |
+
</title>
|
1841 |
+
<prefix translate="label">
|
1842 |
+
<label>Prefix</label>
|
1843 |
+
<frontend_type>text</frontend_type>
|
1844 |
+
<config_path>payment/sisow_vpay/prefix</config_path>
|
1845 |
+
<sort_order>30</sort_order>
|
1846 |
+
<show_in_default>1</show_in_default>
|
1847 |
+
<show_in_website>1</show_in_website>
|
1848 |
+
<show_in_store>1</show_in_store>
|
1849 |
+
</prefix>
|
1850 |
+
<testmode translate="label">
|
1851 |
+
<label>Testmode</label>
|
1852 |
+
<frontend_type>select</frontend_type>
|
1853 |
+
<config_path>payment/sisow_vpay/testmode</config_path>
|
1854 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1855 |
+
<sort_order>40</sort_order>
|
1856 |
+
<show_in_default>1</show_in_default>
|
1857 |
+
<show_in_website>1</show_in_website>
|
1858 |
+
<show_in_store>1</show_in_store>
|
1859 |
+
</testmode>
|
1860 |
+
<sort_order translate="label">
|
1861 |
+
<label>Sort order</label>
|
1862 |
+
<config_path>payment/sisow_vpay/sort_order</config_path>
|
1863 |
+
<frontend_type>text</frontend_type>
|
1864 |
+
<sort_order>50</sort_order>
|
1865 |
+
<show_in_default>1</show_in_default>
|
1866 |
+
<show_in_website>1</show_in_website>
|
1867 |
+
<show_in_store>1</show_in_store>
|
1868 |
+
</sort_order>
|
1869 |
+
<new_order_mail translate="label">
|
1870 |
+
<label>New order mail</label>
|
1871 |
+
<frontend_type>select</frontend_type>
|
1872 |
+
<config_path>payment/sisow_vpay/newordermail</config_path>
|
1873 |
+
<source_model>sisow/config_newordermailMethod</source_model>
|
1874 |
+
<sort_order>55</sort_order>
|
1875 |
+
<show_in_default>1</show_in_default>
|
1876 |
+
<show_in_website>1</show_in_website>
|
1877 |
+
<show_in_store>1</show_in_store>
|
1878 |
+
</new_order_mail>
|
1879 |
+
<auto_invoice translate="label">
|
1880 |
+
<label>Auto invoice</label>
|
1881 |
+
<frontend_type>select</frontend_type>
|
1882 |
+
<config_path>payment/sisow_vpay/autoinvoice</config_path>
|
1883 |
+
<source_model>sisow/config_autoinvoice</source_model>
|
1884 |
+
<sort_order>60</sort_order>
|
1885 |
+
<show_in_default>1</show_in_default>
|
1886 |
+
<show_in_website>1</show_in_website>
|
1887 |
+
<show_in_store>1</show_in_store>
|
1888 |
+
</auto_invoice>
|
1889 |
+
<min_order_total translate="label">
|
1890 |
+
<label>Minimum Order Total</label>
|
1891 |
+
<config_path>payment/sisow_vpay/min_order_total</config_path>
|
1892 |
+
<frontend_type>text</frontend_type>
|
1893 |
+
<sort_order>70</sort_order>
|
1894 |
+
<show_in_default>1</show_in_default>
|
1895 |
+
<show_in_website>1</show_in_website>
|
1896 |
+
<show_in_store>1</show_in_store>
|
1897 |
+
</min_order_total>
|
1898 |
+
<max_order_total translate="label">
|
1899 |
+
<label>Maximum Order Total</label>
|
1900 |
+
<config_path>payment/sisow_vpay/max_order_total</config_path>
|
1901 |
+
<frontend_type>text</frontend_type>
|
1902 |
+
<sort_order>80</sort_order>
|
1903 |
+
<show_in_default>1</show_in_default>
|
1904 |
+
<show_in_website>1</show_in_website>
|
1905 |
+
<show_in_store>1</show_in_store>
|
1906 |
+
</max_order_total>
|
1907 |
+
<allowspecific translate="label">
|
1908 |
+
<label>Payment from Applicable Countries</label>
|
1909 |
+
<frontend_type>allowspecific</frontend_type>
|
1910 |
+
<config_path>payment/sisow_vpay/allowspecific</config_path>
|
1911 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
1912 |
+
<sort_order>90</sort_order>
|
1913 |
+
<show_in_default>1</show_in_default>
|
1914 |
+
<show_in_website>1</show_in_website>
|
1915 |
+
<show_in_store>1</show_in_store>
|
1916 |
+
</allowspecific>
|
1917 |
+
<specificcountry translate="label">
|
1918 |
+
<label>Payment from Specific Country</label>
|
1919 |
+
<frontend_type>multiselect</frontend_type>
|
1920 |
+
<config_path>payment/sisow_vpay/specificcountry</config_path>
|
1921 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
1922 |
+
<sort_order>100</sort_order>
|
1923 |
+
<show_in_default>1</show_in_default>
|
1924 |
+
<show_in_website>1</show_in_website>
|
1925 |
+
<show_in_store>1</show_in_store>
|
1926 |
+
</specificcountry>
|
1927 |
+
<instructions translate="label">
|
1928 |
+
<label>Payment Instructions</label>
|
1929 |
+
<config_path>payment/sisow_vpay/instructions</config_path>
|
1930 |
+
<sort_order>105</sort_order>
|
1931 |
+
<show_in_default>1</show_in_default>
|
1932 |
+
<show_in_website>1</show_in_website>
|
1933 |
+
<show_in_store>1</show_in_store>
|
1934 |
+
</instructions>
|
1935 |
+
<payment_fee translate="label">
|
1936 |
+
<label>Payment fee</label>
|
1937 |
+
<config_path>payment/sisow_vpay/payment_fee</config_path>
|
1938 |
+
<sort_order>110</sort_order>
|
1939 |
+
<show_in_default>1</show_in_default>
|
1940 |
+
<show_in_website>1</show_in_website>
|
1941 |
+
<show_in_store>1</show_in_store>
|
1942 |
+
<comment>Payment fee, positive is amount, negative is percentage or make a comination (eg 1;-3)</comment>
|
1943 |
+
</payment_fee>
|
1944 |
+
<payment_fee_tax translate="label">
|
1945 |
+
<label>Payment fee tax class</label>
|
1946 |
+
<frontend_type>select</frontend_type>
|
1947 |
+
<config_path>payment/sisow_vpay/payment_fee_tax</config_path>
|
1948 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
1949 |
+
<sort_order>120</sort_order>
|
1950 |
+
<show_in_default>1</show_in_default>
|
1951 |
+
<show_in_store>1</show_in_store>
|
1952 |
+
<show_in_website>1</show_in_website>
|
1953 |
+
<comment>The tax class to use to calculate the payment fee tax</comment>
|
1954 |
+
</payment_fee_tax>
|
1955 |
+
<payment_fee_inc_ex translate="label">
|
1956 |
+
<label>Including/Excluding Tax</label>
|
1957 |
+
<frontend_type>select</frontend_type>
|
1958 |
+
<config_path>payment/sisow_vpay/payment_fee_inc_ex</config_path>
|
1959 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1960 |
+
<sort_order>130</sort_order>
|
1961 |
+
<show_in_default>1</show_in_default>
|
1962 |
+
<show_in_website>1</show_in_website>
|
1963 |
+
<show_in_store>1</show_in_store>
|
1964 |
+
<comment>Is the entered payment fee value including or exluding tax</comment>
|
1965 |
+
</payment_fee_inc_ex>
|
1966 |
+
<payment_fee_label translate="label,comment">
|
1967 |
+
<label>Payment fee label</label>
|
1968 |
+
<config_path>payment/sisow_vpay/payment_fee_label</config_path>
|
1969 |
+
<sort_order>140</sort_order>
|
1970 |
+
<show_in_default>1</show_in_default>
|
1971 |
+
<show_in_website>1</show_in_website>
|
1972 |
+
<show_in_store>1</show_in_store>
|
1973 |
+
<comment>Payment fee label to show</comment>
|
1974 |
+
</payment_fee_label>
|
1975 |
+
</fields>
|
1976 |
+
</sisow_vpay>
|
1977 |
<sisow_overboeking translate="label" module="sisow">
|
1978 |
<label>Sisow OverBoeking</label>
|
1979 |
<sort_order>50</sort_order>
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>sisowpayment</name>
|
4 |
-
<version>4.
|
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>
|
|
|
12 |
<authors><author><name>sisow</name><user>sisow</user><email>info@sisow.nl</email></author></authors>
|
13 |
-
<date>
|
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="
|
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.6.0</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>Added: iDEAL QR
|
12 |
+
Added: V PAY</notes>
|
13 |
<authors><author><name>sisow</name><user>sisow</user><email>info@sisow.nl</email></author></authors>
|
14 |
+
<date>2017-01-11</date>
|
15 |
+
<time>07:49:58</time>
|
16 |
+
<contents><target name="magelocal"><dir name="Sisow"><dir name="Block"><dir name="Adminhtml"><file name="Notice.php" hash="56154d92843b3c8a205837010405923e"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="1965cbd3a5bdfcec2b79fed11613b2c1"/></dir></dir></dir><dir name="Paymentfee"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="c086b64c05012dc579ee54fb6e50c5a3"/></dir></dir></dir><dir name="Checkout"><file name="Fee.php" hash="c7b7b19d5f2d2c5fbd07f355f8f57f9e"/></dir><dir name="Creditmemo"><file name="Totals.php" hash="ccfaa67f45416ab398ec55ea7356b537"/></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="a715f52568aa5f4a42a65437be3d0fb8"/></dir></dir><dir name="Order"><dir name="Totals"><file name="Fee.php" hash="2158794a5836acedc765900403649b16"/></dir></dir></dir><dir name="Paymentmethod"><file name="Creditcard.php" hash="a14f3818e0140496eae6afa180e4b2e2"/><file name="Default.php" hash="bc1f1e09fc1c48ab7a33a0f30248df2d"/><file name="DefaultInfo.php" hash="12bc768b15a910295c911f4790ae936a"/><file name="Eps.php" hash="f9b8e8844438fc0a07e5b85a816b59f5"/><file name="Focum.php" hash="2a7b60fff4a08be517db3edd3948e9f3"/><file name="Giropay.php" hash="52a1e50999719ed4cc3da3bd0956c900"/><file name="Ideal.php" hash="c57f4912978d24f6c766a418010eb4c0"/><file name="IdealInfo.php" hash="f2be70b33ab781c89a25c4be6f738067"/><file name="Klarna.php" hash="81c32ceead0cbf51d2208a3fe7182efe"/><file name="Klarnaacc.php" hash="3e72bcf65cc2421b613c328b68f4b7b8"/><file name="Overboeking.php" hash="b59341e0508aea8232de1b45606e66da"/></dir><file name="Redirect.php" hash="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="Idealqr.php" hash="a97b6cb840c3951a894fb5877b7147fa"/><file name="Klarna.php" hash="46a92a6a29e51e2e152389475e77d025"/><file name="Klarnaacc.php" hash="6905ba077eab559fe4d24a864e0ed416"/><file name="Maestro.php" hash="d30e9cbc49c5992094dff4fb62ed3d6c"/><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="Vpay.php" hash="5e3ffffd8b1665efd65297012c0a5312"/><file name="VvvGiftcard.php" hash="f1dbe386cb6f401f80333a8f2ca1e310"/><file name="WebshopGiftcard.php" hash="3ea06c83b6c0d1f87f1d61dcbf3a55c7"/></dir><dir name="Observer"><file name="Order.php" hash="e5e0ce8e5a05c3c2f87d3893b9932be8"/><file name="Paymentfee.php" hash="78835217b2b6875e14da8b6630c21456"/><file name="Sendebill.php" hash="d43b7a2961da792d8b1d860cd34a111f"/><file name="Submit.php" hash="47aa5da33f953cf9363f05578b2850fe"/></dir><dir name="Paymentfee"><dir name="Creditmemo"><file name="Total.php" hash="2340fd22ec6597f5fad53d9faea2d9fe"/></dir><dir name="Invoice"><dir name="Pdf"><file name="Total.php" hash="cec95df39f550cd70e6eb63b16cfb627"/></dir><file name="Tax.php" hash="5fba21bc05a7ed55b3c57ccb4b2790b5"/><file name="Total.php" hash="b77c63f1173d2112056a782490968cf6"/></dir><dir name="Quote"><file name="Quote.php" hash="838ad691a2da75b942a8ef41c2815a9a"/><file name="TaxTotal.php" hash="bd7cd2a16dc3dbc8c7a3c82746a0f671"/><file name="Total.php" hash="d2c8afd1ec4c96b6215ae28766e18177"/></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="5392c9e86fd5f3e95567d80a10514238"/></dir><dir name="etc"><file name="config.xml" hash="8fcf022d76119d02ded0a8f5c4f9caf9"/><file name="system.xml" hash="7bcb36798a79b0247459ea5ca0af0f4e"/></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>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
19 |
</package>
|