Lusopay_LusopayGateway - Version 2.3.7

Version Notes

Novo sistema de callback and fix some bugs.

Download this release

Release Info

Developer Lusopay
Extension Lusopay_LusopayGateway
Version 2.3.7
Comparing to
See all releases


Code changes from version 2.3.6 to 2.3.7

app/code/local/Magnimeios/Magnimeiosgateway/Block/Checkout/Success.php CHANGED
@@ -28,12 +28,29 @@ class Magnimeios_Magnimeiosgateway_Block_Checkout_Success extends Mage_Checkout_
28
  $refPS = $rows['refPS'];
29
  $valor = $rows['value'];
30
 
31
- if(!is_null($refMB) || $refMB != -1){
32
-
33
- $refMB = substr($refMB,0,3).' '.substr($refMB,3,3).' '.substr($refMB,6,3);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  $tabela ='
36
- <table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC" align="center">
 
37
  <tr>
38
  <td style="font-size: x-small; border-top: 0px; border-left: 0px; border-right: 0px; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
39
  </tr>
@@ -48,7 +65,7 @@ class Magnimeios_Magnimeiosgateway_Block_Checkout_Success extends Mage_Checkout_
48
  </tr>
49
  <tr>
50
  <td style="font-size: x-small; font-weight:bold; text-align:left">Valor:</td>
51
- <td style="font-size: x-small; text-align:left">' . $valor . '</td>
52
  </tr>
53
  <tr>
54
  <td style="font-size: x-small; font-weight:bold; text-align:left">&nbsp;</td>
@@ -59,12 +76,7 @@ class Magnimeios_Magnimeiosgateway_Block_Checkout_Success extends Mage_Checkout_
59
  </tr>
60
  </table>';
61
 
62
- }
63
- if(!is_null($refPS) || $refPS != -1){
64
-
65
- $refPS = substr($refPS,0,3).' '.substr($refPS,3,3).' '.substr($refPS,6,3).' '.substr($refPS,9,3).' '.substr($refPS,12,1);
66
-
67
- $tabela.='<table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC" align="center">
68
  <tr>
69
  <td style="font-size: x-small; border-top: 0px; border-left: 0px; border-right: 0px; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
70
  </tr>
@@ -77,7 +89,7 @@ class Magnimeios_Magnimeiosgateway_Block_Checkout_Success extends Mage_Checkout_
77
  </tr>
78
  <tr>
79
  <td style="font-size: x-small; font-weight:bold; text-align:left">Valor:</td>
80
- <td style="font-size: x-small; text-align:left">' . $valor . '</td>
81
  </tr>
82
  <tr>
83
  <td style="font-size: x-small; font-weight:bold; text-align:left">&nbsp;</td>
@@ -86,9 +98,8 @@ class Magnimeios_Magnimeiosgateway_Block_Checkout_Success extends Mage_Checkout_
86
  <tr>
87
  <td style="font-size: xx-small;border-top: 1px solid #DCDCDC; border-left: 0px; border-right: 0px; border-bottom: 0px; background-color: #DCDCDC; color: black" colspan="3"><center>O tal&atilde;o emitido faz prova de pagamento. Conserve-o.</center></td>
88
  </tr>
89
- </table>';
90
- }
91
-
92
 
93
  $html = parent::_toHtml();
94
 
28
  $refPS = $rows['refPS'];
29
  $valor = $rows['value'];
30
 
31
+ if ($refPS == '-1'){
32
+ $showPS = 'display:none;';
33
+ $refPS='';
34
+ }
35
+ else{
36
+ $showPS = '';
37
+ $refPS = substr($refPS,0,3).' '.substr($refPS,3,3).' '.substr($refPS,6,3).' '.substr($refPS,9,3).' '.substr($refPS,12,1);
38
+ }
39
+
40
+ if ($refMB == '-1'){
41
+ $showMB = 'display:none;';
42
+ $refMB='';
43
+ }
44
+ else{
45
+ $showMB = '';
46
+ $refMB = substr($refMB,0,3).' '.substr($refMB,3,3).' '.substr($refMB,6,3);
47
+ }
48
+
49
+
50
 
51
  $tabela ='
52
+ <div align="center">
53
+ <table cellpadding="3" width="300px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC;'.$showMB.'">
54
  <tr>
55
  <td style="font-size: x-small; border-top: 0px; border-left: 0px; border-right: 0px; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
56
  </tr>
65
  </tr>
66
  <tr>
67
  <td style="font-size: x-small; font-weight:bold; text-align:left">Valor:</td>
68
+ <td style="font-size: x-small; text-align:left">' . $valor . ' €</td>
69
  </tr>
70
  <tr>
71
  <td style="font-size: x-small; font-weight:bold; text-align:left">&nbsp;</td>
76
  </tr>
77
  </table>';
78
 
79
+ $tabela.='<table cellpadding="3" width="300px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC; '.$showPS.'">
 
 
 
 
 
80
  <tr>
81
  <td style="font-size: x-small; border-top: 0px; border-left: 0px; border-right: 0px; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
82
  </tr>
89
  </tr>
90
  <tr>
91
  <td style="font-size: x-small; font-weight:bold; text-align:left">Valor:</td>
92
+ <td style="font-size: x-small; text-align:left">' . $valor . ' €</td>
93
  </tr>
94
  <tr>
95
  <td style="font-size: x-small; font-weight:bold; text-align:left">&nbsp;</td>
98
  <tr>
99
  <td style="font-size: xx-small;border-top: 1px solid #DCDCDC; border-left: 0px; border-right: 0px; border-bottom: 0px; background-color: #DCDCDC; color: black" colspan="3"><center>O tal&atilde;o emitido faz prova de pagamento. Conserve-o.</center></td>
100
  </tr>
101
+ </table>
102
+ </div>';
 
103
 
104
  $html = parent::_toHtml();
105
 
app/code/local/Magnimeios/Magnimeiosgateway/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Magnimeios_Magnimeiosgateway>
5
- <version>2.3.6</version>
6
  </Magnimeios_Magnimeiosgateway>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <Magnimeios_Magnimeiosgateway>
5
+ <version>2.3.7</version>
6
  </Magnimeios_Magnimeiosgateway>
7
  </modules>
8
  <frontend>
app/code/local/Magnimeios/Magnimeiosgateway/etc/system.xml CHANGED
@@ -4,7 +4,7 @@
4
  <payment>
5
  <groups>
6
  <magnimeiosgateway translate="label" module="payment">
7
- <label><![CDATA[LUSOPAY - Pagamentos por Refer&ecirc;ncias Multibanco e / ou Payshop]]></label>
8
  <frontend_type>text</frontend_type>
9
  <sort_order>1</sort_order>
10
  <show_in_default>1</show_in_default>
4
  <payment>
5
  <groups>
6
  <magnimeiosgateway translate="label" module="payment">
7
+ <label><![CDATA[LUSOPAY - Pagamentos por Refer&ecirc;ncias Multibanco / Payshop]]></label>
8
  <frontend_type>text</frontend_type>
9
  <sort_order>1</sort_order>
10
  <show_in_default>1</show_in_default>
app/code/local/Magnimeios/Magnimeiosgateway/sql/magnimeiosgateway_setup/{mysql4-install-2.3.6.php → mysql4-install-2.3.7.php} RENAMED
File without changes
app/design/frontend/base/default/template/magnimeiosgateway/info/info.phtml CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  //Get Referencias
3
  $referencias = $this->htmlEscape($this->getInfo()->getMagnimeiosReferencia());
4
 
@@ -16,8 +17,8 @@
16
  }
17
 
18
  if ($int1 == '1'){
19
- $showPS = 'display:none;';
20
- $int1='';
21
  }
22
  else{
23
  $showPS = '';
@@ -25,7 +26,7 @@
25
  }
26
 
27
  if ($int2 == '1'){
28
- $showMB = 'display:none;';
29
  $int2='';
30
  }
31
  else{
@@ -39,7 +40,7 @@
39
 
40
 
41
  <div align="center">
42
- <table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC;<?php echo $showMB;?>">
43
  <tbody><tr>
44
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
45
  </tr>
@@ -68,7 +69,7 @@
68
 
69
 
70
 
71
- <table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC;<?php echo $showPS;?>">
72
  <tbody>
73
  <tr>
74
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
1
  <?php
2
+
3
  //Get Referencias
4
  $referencias = $this->htmlEscape($this->getInfo()->getMagnimeiosReferencia());
5
 
17
  }
18
 
19
  if ($int1 == '1'){
20
+ $showPS = 'display:none';
21
+ $int1='';
22
  }
23
  else{
24
  $showPS = '';
26
  }
27
 
28
  if ($int2 == '1'){
29
+ $showMB = 'display:none';
30
  $int2='';
31
  }
32
  else{
40
 
41
 
42
  <div align="center">
43
+ <table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC;<?php echo $showMB;?> !important;">
44
  <tbody><tr>
45
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
46
  </tr>
69
 
70
 
71
 
72
+ <table cellpadding="3" width="400px" cellspacing="0" style="margin-top: 10px;border: 1px solid #DCDCDC;<?php echo $showPS;?> !important;">
73
  <tbody>
74
  <tr>
75
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lusopay_LusopayGateway</name>
4
- <version>2.3.6</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>Pagamentos por Multibanco e / ou Payshop (by LUSOPAY)</summary>
10
  <description>Metodo de pagamento atrav&#xE9;s da gera&#xE7;&#xE3;o refer&#xEA;ncias Multibanco e payshop e com sistema callback.</description>
11
- <notes>Novo sistema de callback</notes>
12
  <authors><author><name>Lusopay</name><user>lusopay</user><email>hf@lusopay.com</email></author></authors>
13
- <date>2015-09-08</date>
14
- <time>16:36:34</time>
15
- <contents><target name="magelocal"><dir name="Magnimeios"><dir name="Magnimeiosgateway"><dir name="Block"><dir name="Checkout"><dir name="Info"><file name="LusopayMBPS.php" hash="b6274051d8914c43fddfa8d9572e2557"/><file name="LusopayMBPS.php" hash="b6274051d8914c43fddfa8d9572e2557"/></dir><file name="Success.php" hash="5be6c37d01bbefbefe888c22166c1e77"/><file name="Success.php" hash="5be6c37d01bbefbefe888c22166c1e77"/></dir><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/></dir><dir name="Helper"><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/></dir><dir name="Model"><file name="AtivarCallback.php" hash="5dfdfc743e6df8b61971a57b0e7f13d5"/><dir name="Convert"><file name="Order.php" hash="4db18a43bb43a11690141dbaa8ed5799"/><file name="Quote.php" hash="2741e8f49ea614e099296a8df8318377"/><file name="Order.php" hash="4db18a43bb43a11690141dbaa8ed5799"/><file name="Quote.php" hash="2741e8f49ea614e099296a8df8318377"/></dir><file name="GerarRef.php" hash="6254717ad1913cc4e6392b33cc50c919"/><dir name="Mysql4"><file name="Setup.php" hash="99eb9cd753f0d2f58f3eb3c8ee3c6ff4"/><file name="Setup.php" hash="99eb9cd753f0d2f58f3eb3c8ee3c6ff4"/></dir><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/><file name="AtivarCallback.php" hash="5dfdfc743e6df8b61971a57b0e7f13d5"/><file name="GerarRef.php" hash="6254717ad1913cc4e6392b33cc50c919"/><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/></dir><dir name="controllers"><file name="CallbackController.php" hash="11898193409f2f5a8f6dba30e7ee5a80"/><file name="CallbackController.php" hash="11898193409f2f5a8f6dba30e7ee5a80"/></dir><dir name="etc"><file name="config.xml" hash="3131dbd6071275ed4e803907b22366f7"/><file name="system.xml" hash="8c12150a0d33977951836bd63b3268c4"/><file name="config.xml" hash="3131dbd6071275ed4e803907b22366f7"/><file name="system.xml" hash="8c12150a0d33977951836bd63b3268c4"/></dir><dir name="sql"><dir name="magnimeiosgateway_setup"><file name="mysql4-install-2.3.6.php" hash="3bd68c1602cbd1b60ecb860af582bb81"/><file name="mysql4-install-2.3.6.php" hash="3bd68c1602cbd1b60ecb860af582bb81"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/><file name="mark.phtml" hash="49b022bdb40ed3aaf8055e05a0e725f3"/></dir><dir name="info"><file name="info.phtml" hash="d07b20ae60559a61b2c8f314816da303"/><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="mark.phtml" hash="49b022bdb40ed3aaf8055e05a0e725f3"/><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/></dir><dir name="info"><file name="info.phtml" hash="0fd23136fccb26bc8dca3f5a2476791e"/><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magnimeiosgateway.xml" hash="dfceba032c2112335d3de7a876c151c0"/></dir><dir name="template"><dir name="magnimeiosgateway"><dir name="checkout"><file name="success.phtml" hash="890651282fa0b4d1cbdeaabbce67e5ce"/></dir><dir name="form"><file name="form.phtml" hash="357405fda2c5827381cba52f1871c4d8"/><file name="mark.phtml" hash="03422e879309c75a1bc407f202a44ff1"/></dir><dir name="info"><file name="info.phtml" hash="c9abacb184a9f75fb32a5a8e268a2470"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magnimeios_Magnimeiosgateway.xml" hash="bf2c21eae3198cddf69ab496cb29443f"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lusopay_LusopayGateway</name>
4
+ <version>2.3.7</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>Pagamentos por Multibanco e / ou Payshop (by LUSOPAY)</summary>
10
  <description>Metodo de pagamento atrav&#xE9;s da gera&#xE7;&#xE3;o refer&#xEA;ncias Multibanco e payshop e com sistema callback.</description>
11
+ <notes>Novo sistema de callback and fix some bugs.</notes>
12
  <authors><author><name>Lusopay</name><user>lusopay</user><email>hf@lusopay.com</email></author></authors>
13
+ <date>2015-10-28</date>
14
+ <time>17:59:36</time>
15
+ <contents><target name="magelocal"><dir name="Magnimeios"><dir name="Magnimeiosgateway"><dir name="Block"><dir name="Checkout"><dir name="Info"><file name="LusopayMBPS.php" hash="b6274051d8914c43fddfa8d9572e2557"/><file name="LusopayMBPS.php" hash="b6274051d8914c43fddfa8d9572e2557"/></dir><file name="Success.php" hash="caeff85e2e65d62ddfb2ad81b25ee04c"/><file name="Success.php" hash="caeff85e2e65d62ddfb2ad81b25ee04c"/></dir><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/></dir><dir name="Helper"><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/></dir><dir name="Model"><file name="AtivarCallback.php" hash="5dfdfc743e6df8b61971a57b0e7f13d5"/><dir name="Convert"><file name="Order.php" hash="4db18a43bb43a11690141dbaa8ed5799"/><file name="Quote.php" hash="2741e8f49ea614e099296a8df8318377"/><file name="Order.php" hash="4db18a43bb43a11690141dbaa8ed5799"/><file name="Quote.php" hash="2741e8f49ea614e099296a8df8318377"/></dir><file name="GerarRef.php" hash="6254717ad1913cc4e6392b33cc50c919"/><dir name="Mysql4"><file name="Setup.php" hash="99eb9cd753f0d2f58f3eb3c8ee3c6ff4"/><file name="Setup.php" hash="99eb9cd753f0d2f58f3eb3c8ee3c6ff4"/></dir><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/><file name="AtivarCallback.php" hash="5dfdfc743e6df8b61971a57b0e7f13d5"/><file name="GerarRef.php" hash="6254717ad1913cc4e6392b33cc50c919"/><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/></dir><dir name="controllers"><file name="CallbackController.php" hash="11898193409f2f5a8f6dba30e7ee5a80"/><file name="CallbackController.php" hash="11898193409f2f5a8f6dba30e7ee5a80"/></dir><dir name="etc"><file name="config.xml" hash="6bb83c32e5655cb40ad67b60a24bf799"/><file name="system.xml" hash="ae1d79bdfcaafbcd59d90342cc4cd312"/><file name="config.xml" hash="6bb83c32e5655cb40ad67b60a24bf799"/><file name="system.xml" hash="ae1d79bdfcaafbcd59d90342cc4cd312"/></dir><dir name="sql"><dir name="magnimeiosgateway_setup"><file name="mysql4-install-2.3.7.php" hash="3bd68c1602cbd1b60ecb860af582bb81"/><file name="mysql4-install-2.3.7.php" hash="3bd68c1602cbd1b60ecb860af582bb81"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/><file name="mark.phtml" hash="49b022bdb40ed3aaf8055e05a0e725f3"/></dir><dir name="info"><file name="info.phtml" hash="d07b20ae60559a61b2c8f314816da303"/><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="mark.phtml" hash="49b022bdb40ed3aaf8055e05a0e725f3"/><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/></dir><dir name="info"><file name="info.phtml" hash="0fd23136fccb26bc8dca3f5a2476791e"/><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magnimeiosgateway.xml" hash="dfceba032c2112335d3de7a876c151c0"/></dir><dir name="template"><dir name="magnimeiosgateway"><dir name="checkout"><file name="success.phtml" hash="890651282fa0b4d1cbdeaabbce67e5ce"/></dir><dir name="form"><file name="form.phtml" hash="357405fda2c5827381cba52f1871c4d8"/><file name="mark.phtml" hash="03422e879309c75a1bc407f202a44ff1"/></dir><dir name="info"><file name="info.phtml" hash="7566e5cbe052d86ad84398e3390db256"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magnimeios_Magnimeiosgateway.xml" hash="bf2c21eae3198cddf69ab496cb29443f"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>