Eupago_MB - Version 1.0.2

Version Notes

- Update Order Status in Realtime

Download this release

Release Info

Developer Eupago
Extension Eupago_MB
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.2

Files changed (21) hide show
  1. app/code/{local → community}/Eupago/Multibanco/Block/Form.php +0 -0
  2. app/code/{local → community}/Eupago/Multibanco/Block/Info.php +0 -0
  3. app/code/{local → community}/Eupago/Multibanco/Block/Onepage/Success.phtml +0 -0
  4. app/code/{local → community}/Eupago/Multibanco/Block/Success.php +0 -0
  5. app/code/{local → community}/Eupago/Multibanco/Helper/Data.php +0 -0
  6. app/code/{local → community}/Eupago/Multibanco/Model/Convert/Order.php +0 -0
  7. app/code/{local → community}/Eupago/Multibanco/Model/Convert/Quote.php +0 -0
  8. app/code/{local → community}/Eupago/Multibanco/Model/GerarRef.php +0 -0
  9. app/code/{local → community}/Eupago/Multibanco/Model/Mysql4/Setup.php +0 -0
  10. app/code/{local → community}/Eupago/Multibanco/Model/PaymentAction.php +0 -0
  11. app/code/{local → community}/Eupago/Multibanco/Model/Process.php +26 -10
  12. app/code/community/Eupago/Multibanco/controllers/CallbackController.php +47 -0
  13. app/code/{local → community}/Eupago/Multibanco/etc/config.xml +16 -7
  14. app/code/{local → community}/Eupago/Multibanco/etc/system.xml +0 -0
  15. app/code/{local → community}/Eupago/Multibanco/sql/multibanco_setup/mysql4-install-1.0.0.php +0 -0
  16. app/design/adminhtml/default/default/template/multibanco/form/form.phtml +8 -0
  17. app/design/adminhtml/default/default/template/multibanco/form/mark.phtml +3 -0
  18. app/design/adminhtml/default/default/template/multibanco/info/info.phtml +21 -0
  19. app/design/adminhtml/default/default/template/multibanco/info/pdf/info.phtml +5 -0
  20. app/etc/modules/Eupago_Multibanco.xml +1 -1
  21. package.xml +5 -5
app/code/{local → community}/Eupago/Multibanco/Block/Form.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Block/Info.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Block/Onepage/Success.phtml RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Block/Success.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Helper/Data.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/Convert/Order.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/Convert/Quote.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/GerarRef.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/Mysql4/Setup.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/PaymentAction.php RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/Model/Process.php RENAMED
@@ -22,7 +22,8 @@ class Eupago_Multibanco_Model_Process extends Mage_Payment_Model_Method_Abstract
22
  protected $_canFetchTransactionInfo = false;
23
  protected $_canReviewPayment = false;
24
  protected $_canCreateBillingAgreement = false;
25
-
 
26
  public function orderObserver($observer) {
27
 
28
  $chave_api = $this->getConfigData('chave');
@@ -44,17 +45,32 @@ class Eupago_Multibanco_Model_Process extends Mage_Payment_Model_Method_Abstract
44
 
45
 
46
  if ($referencia == "") {
47
-
48
- $client = @new SoapClient('http://replica.eupago.pt/replica.eupagov1.wsdl', array('cache_wsdl' => WSDL_CACHE_NONE)); // chamada do servi�o SOAP
49
- $arraydados = array("chave" => $chave_api, "valor" => $order_value, "id" => $id); //cada canal tem a sua chave
50
- $result = $client->gerarReferenciaMB($arraydados);
51
- $query = "UPDATE $sales_flat_order_payment SET eupago_montante = $order_value, eupago_entidade = $result->entidade, eupago_referencia = $result->referencia WHERE parent_id =$entity";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  $writeConnection->query($query);
53
- $query = "UPDATE $sales_flat_quote_payment SET eupago_montante = $order_value, eupago_entidade = $result->entidade, eupago_referencia = $result->referencia WHERE quote_id =$quote_id";
54
  $writeConnection->query($query);
55
-
56
-
57
-
58
  } else {
59
 
60
  $writeConnection = $resource->getConnection('core_write');
22
  protected $_canFetchTransactionInfo = false;
23
  protected $_canReviewPayment = false;
24
  protected $_canCreateBillingAgreement = false;
25
+ // protected $chave_api = $this->getConfigData('chave');
26
+
27
  public function orderObserver($observer) {
28
 
29
  $chave_api = $this->getConfigData('chave');
45
 
46
 
47
  if ($referencia == "") {
48
+ if(class_exists('SOAPClient')){
49
+ $arraydados = array("chave" => $chave_api, "valor" => $order_value, "id" => $id); //cada canal tem a sua chave
50
+ $client = @new SoapClient('http://replica.eupago.pt/replica.eupagov1.wsdl', array('cache_wsdl' => WSDL_CACHE_NONE)); // chamada do servi�o SOAP
51
+ $result = $client->gerarReferenciaMB($arraydados);
52
+ $query = "UPDATE $sales_flat_order_payment SET eupago_montante = $order_value, eupago_entidade = $result->entidade, eupago_referencia = $result->referencia WHERE parent_id =$entity";
53
+ $query = "UPDATE $sales_flat_quote_payment SET eupago_montante = $order_value, eupago_entidade = $result->entidade, eupago_referencia = $result->referencia WHERE quote_id =$quote_id";
54
+ }else{
55
+ $client = new Varien_Http_Client();
56
+ $client->setUri('https://replica.eupago.pt/bridge_clientes/bridge.php?servico=mb&chave_api='.$chave_api.'&valor='.$order_value.'&identificador='.$id)
57
+ ->setMethod('GET')
58
+ ->setConfig(array(
59
+ 'maxredirects'=>1,
60
+ 'timeout'=>30,
61
+ ));
62
+
63
+ $response = $client->request()->getBody();
64
+ $dados = explode('#', $response);
65
+ $entidade = $dados['0'];
66
+ $referencia = $dados['1'];
67
+ $query = "UPDATE $sales_flat_order_payment SET eupago_montante = $order_value, eupago_entidade = $entidade, eupago_referencia = $referencia WHERE parent_id =$entity";
68
+ $query = "UPDATE $sales_flat_quote_payment SET eupago_montante = $order_value, eupago_entidade = $entidade, eupago_referencia = $referencia WHERE quote_id =$quote_id";
69
+
70
+ }
71
  $writeConnection->query($query);
 
72
  $writeConnection->query($query);
73
+
 
 
74
  } else {
75
 
76
  $writeConnection = $resource->getConnection('core_write');
app/code/community/Eupago/Multibanco/controllers/CallbackController.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Eupago_Multibanco_CallbackController extends Mage_Core_Controller_Front_Action { // extends Mage_Payment_Model_Method_Abstract
4
+
5
+ public function autorizeAction(){
6
+
7
+ ///// dados vindos da api para comfirmar
8
+ $CallBack = $this->getRequest()->getParams();
9
+ $CallBack_valor = $CallBack['valor'];
10
+ $CallBack_referencia = $CallBack['referencia'];
11
+ $CallBack_chave_api = $CallBack['chave_api'];
12
+ $CallBack_orderId = $CallBack['identificador'];
13
+ $CallBack_autorizacao = $CallBack['autorizacao'];
14
+
15
+
16
+ ////// dados de encomenda
17
+ $OrderNumber = $CallBack_orderId; //$CallBack_orderId vaem da api Eupago[order-id]
18
+ $order = Mage::getModel('sales/order')->load($OrderNumber, 'increment_id');
19
+ $valor_encomenda = $order->grand_total; //retirado do valor total da encomenda
20
+
21
+ /////// dados do pagamento
22
+ $pagamento = $order->getPayment();
23
+ $entidade = $pagamento->eupago_entidade;
24
+ $referencia = $pagamento->eupago_referencia;
25
+ $valor_gerado = $pagamento->eupago_montante;
26
+
27
+ /////// gera autorizacao
28
+ $chave_api = Mage::getModel('multibanco/process')->getConfigData('chave');
29
+ $autorizacao = md5(date('Y-m-d').$chave_api);
30
+
31
+ //////// Confere dados
32
+ $confere_montantes = (($valor_encomenda == $valor_gerado) == $CallBack_valor ? true : false);
33
+ $confere_autorizacao = ($autorizacao == $CallBack_autorizacao ? true : false);
34
+ $confere_referencia = ($referencia == $CallBack_referencia ? true : false);
35
+ $confere_chave_api = ($CallBack_chave_api == $chave_api ? true : false);
36
+
37
+ ////// se tudo ok, faz o update do estado da encomenda e envia um email ao cliente
38
+ if($confere_montantes && $confere_chave_api && $confere_referencia){ /*futuro upgrade -> $confere_autorizacao*/
39
+ $order->setData('state', "complete");
40
+ $order->setStatus("processing");
41
+ $order->sendOrderUpdateEmail();
42
+ $history = $order->addStatusHistoryComment('Order marked as complete automatically.', false);
43
+ $history->setIsCustomerNotified(true);
44
+ $order->save();
45
+ }
46
+ }
47
+ }
app/code/{local → community}/Eupago/Multibanco/etc/config.xml RENAMED
@@ -15,13 +15,22 @@
15
  </Eupago_Multibanco>
16
  </modules>
17
  </translate>
18
- <layout>
19
- <updates>
20
- <yourmodule>
21
- <file>multibanco.xml</file>
22
- </yourmodule>
23
- </updates>
24
- </layout>
 
 
 
 
 
 
 
 
 
25
  </frontend>
26
  <adminhtml>
27
  <translate>
15
  </Eupago_Multibanco>
16
  </modules>
17
  </translate>
18
+ <layout>
19
+ <updates>
20
+ <yourmodule>
21
+ <file>multibanco.xml</file>
22
+ </yourmodule>
23
+ </updates>
24
+ </layout>
25
+ <routers>
26
+ <Eupago_Multibanco>
27
+ <use>standard</use>
28
+ <args>
29
+ <module>Eupago_Multibanco</module>
30
+ <frontName>Eupago</frontName>
31
+ </args>
32
+ </Eupago_Multibanco>
33
+ </routers>
34
  </frontend>
35
  <adminhtml>
36
  <translate>
app/code/{local → community}/Eupago/Multibanco/etc/system.xml RENAMED
File without changes
app/code/{local → community}/Eupago/Multibanco/sql/multibanco_setup/mysql4-install-1.0.0.php RENAMED
File without changes
app/design/adminhtml/default/default/template/multibanco/form/form.phtml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <fieldset class="form-list">
2
+ <ul id="payment_form_<?php echo $this->getMethodCode(); ?>" style="display:none">
3
+ <li><img src="<?php echo $this->getSkinUrl('images/multibanco/eupagomultibanco.png') ?>" border="0" /></li>
4
+ <?php if ($this->getMethod()->getMensagem()): ?>
5
+ <?php echo '<li>' . $this->getMethod()->getMensagem() . '</li>'; ?>
6
+ <?php endif; ?>
7
+ </ul>
8
+ </fieldset>
app/design/adminhtml/default/default/template/multibanco/form/mark.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <!-- MB Logo -->
2
+ <img src="<?php echo $this->getSkinUrl('images/multibanco/mb_mark.gif') ?>" class="v-middle" />
3
+ <!-- MB Logo -->
app/design/adminhtml/default/default/template/multibanco/info/info.phtml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <table border="0" cellspacing="1" cellpadding="0">
2
+ <tr>
3
+ <td><img src="<?php echo $this->getSkinUrl('images/multibanco/eupagomultibanco.png') ?>" border="0" alt="<?php echo $this->getMethod()->getTitle(); ?>" title="<?php echo $this->getMethod()->getTitle(); ?>" /></td>
4
+ </tr>
5
+ <tr>
6
+ <td><table width="100%" border="0" cellspacing="1" cellpadding="0">
7
+ <tr>
8
+ <td><?php echo $this->__('<strong>Entidade:</strong>'); ?></td>
9
+ <td><?php echo $this->htmlEscape($this->getInfo()->getEupagoEntidade()) ?></td>
10
+ </tr>
11
+ <tr>
12
+ <td><?php echo $this->__('<strong>Referência:</strong>'); ?> </td>
13
+ <td><?php echo $this->htmlEscape($this->getInfo()->getEupagoReferencia()); ?></td>
14
+ </tr>
15
+ <tr>
16
+ <td><?php echo $this->__('<strong>Montante:</strong>'); ?></td>
17
+ <td><?php echo number_format($this->htmlEscape($this->getInfo()->getEupagoMontante()),'2',',','') . ' EUR'; ?></td>
18
+ </tr>
19
+ </table></td>
20
+ </tr>
21
+ </table>
app/design/adminhtml/default/default/template/multibanco/info/pdf/info.phtml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php echo $this->__('Entidade: %s', $this->htmlEscape($this->getInfo()->getEupagoEntidade())) ?>
2
+ {{pdf_row_separator}}
3
+ <?php echo utf8_encode($this->__('Refer�ncia: %s', $this->htmlEscape($this->getInfo()->getEupagoReferencia()))) ?>
4
+ {{pdf_row_separator}}
5
+ <?php echo $this->__('Montante: %s EUR', $this->htmlEscape($this->getInfo()->getEupagoMontante())) ?>
app/etc/modules/Eupago_Multibanco.xml CHANGED
@@ -3,7 +3,7 @@
3
  <modules>
4
  <Eupago_Multibanco>
5
  <active>true</active>
6
- <codePool>local</codePool>
7
  <depends>
8
  <Mage_Payment />
9
  </depends>
3
  <modules>
4
  <Eupago_Multibanco>
5
  <active>true</active>
6
+ <codePool>community</codePool>
7
  <depends>
8
  <Mage_Payment />
9
  </depends>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Eupago_MB</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license>GNU General Public License (GPL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Modulo de pagamento que gera referencias multibanco.</summary>
10
  <description>Modulo de pagamento por Entidade e Referencia Multibanco</description>
11
- <notes>Necess&#xE1;rio criar conta no http://www.eupago.pt</notes>
12
  <authors><author><name>euPago</name><user>euPago</user><email>dev@eupago.pt</email></author></authors>
13
- <date>2015-12-07</date>
14
- <time>13:00:38</time>
15
- <contents><target name="magelocal"><dir name="Eupago"><dir name="Multibanco"><dir name="Block"><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><dir name="Onepage"><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/></dir><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/></dir><dir name="Helper"><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/></dir><dir name="Model"><dir name="Convert"><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/></dir><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><dir name="Mysql4"><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/></dir><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="81d907c2ed831b57de60a6b2b42d4c36"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="81d907c2ed831b57de60a6b2b42d4c36"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="81d907c2ed831b57de60a6b2b42d4c36"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="81d907c2ed831b57de60a6b2b42d4c36"/><dir name="Mysgl4"><file name="Setup.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><dir name="etc"><file name="config.xml" hash="fe6f5159f3c4a5bd411a7ce4d0e8e2ad"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="fe6f5159f3c4a5bd411a7ce4d0e8e2ad"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="fe6f5159f3c4a5bd411a7ce4d0e8e2ad"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="fe6f5159f3c4a5bd411a7ce4d0e8e2ad"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/></dir><dir name="sql"><dir name="multibanco_setup"><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eupago_Multibanco.xml" hash="65a22db8af02e4fa13ca4b9c0e212c82"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="multibanco"><dir name="form"><file name="form.phtml" hash=""/><file name="mark.phtml" hash=""/></dir><dir name="info"><file name="info.phtml" hash=""/><dir name="pdf"><file name="info.phtml" hash=""/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="multibanco"><dir name="checkout"><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/></dir><dir name="form"><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/></dir><dir name="info"><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/></dir></dir></dir><dir name="layout"><file name="multibanco.xml" hash="969c55bcef9cc469e66d53283a31c200"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="multibanco"><file name="eupagomultibanco.png" hash="0b8ff29352f558fc8e756339a337a885"/><file name="eupagomultibanco.png" hash="0b8ff29352f558fc8e756339a337a885"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="multibanco"><file name="eupagomultibanco.png" hash="0ca321915123d5a712fb2b4f6744278a"/><file name="mb_mark.gif" hash="bbfd7b49dc892a72a8a87d8d1ae3e4ee"/><file name="eupagomultibanco.png" hash="0ca321915123d5a712fb2b4f6744278a"/><file name="mb_mark.gif" hash="bbfd7b49dc892a72a8a87d8d1ae3e4ee"/></dir></dir></dir></dir></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>Eupago_MB</name>
4
+ <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license>GNU General Public License (GPL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Modulo de pagamento que gera referencias multibanco.</summary>
10
  <description>Modulo de pagamento por Entidade e Referencia Multibanco</description>
11
+ <notes>- Update Order Status in Realtime</notes>
12
  <authors><author><name>euPago</name><user>euPago</user><email>dev@eupago.pt</email></author></authors>
13
+ <date>2015-12-11</date>
14
+ <time>12:48:56</time>
15
+ <contents><target name="magecommunity"><dir name="Eupago"><dir name="Multibanco"><dir name="Block"><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><dir name="Onepage"><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="Success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/></dir><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/><file name="Success.php" hash="c5c80ea22deadb07018d588174e4bb7e"/><file name="Form.php" hash="b10bbd2ac4230fb7b5b23163bba5497d"/><file name="Info.php" hash="6b2e8bc2cb50cd10921632d72d283e91"/></dir><dir name="Helper"><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/><file name="Data.php" hash="08f64400e4204040eced048d885fe3da"/></dir><dir name="Model"><dir name="Convert"><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/><file name="Order.php" hash="10fb9abcee863b4a809cd46d39fa0121"/><file name="Quote.php" hash="371acecf7ee5300f3bf9f363ca2c6e39"/></dir><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><dir name="Mysql4"><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/><file name="Setup.php" hash="da156d537188951a4f6eccc0adf96f06"/></dir><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="f02fce7d6136225b90a9f34373d0d147"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="f02fce7d6136225b90a9f34373d0d147"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="f02fce7d6136225b90a9f34373d0d147"/><file name="GerarRef.php" hash="a7e966a5dd1e47544cd8aaea3b460238"/><file name="PaymentAction.php" hash="d37848a985083e38e966ec081aa4c02b"/><file name="Process.php" hash="f02fce7d6136225b90a9f34373d0d147"/><dir name="Mysgl4"><file name="Setup.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><dir name="controllers"><file name="CallbackController.php" hash="7fbf35d729e2446cec747a6db5cb773d"/><file name="CallbackController.php" hash="7fbf35d729e2446cec747a6db5cb773d"/><file name="CallbackController.php" hash="7fbf35d729e2446cec747a6db5cb773d"/><file name="CallbackController.php" hash="7fbf35d729e2446cec747a6db5cb773d"/></dir><dir name="etc"><file name="config.xml" hash="d3d4c60ef5d8f97e244a388fd23b6f20"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="d3d4c60ef5d8f97e244a388fd23b6f20"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="d3d4c60ef5d8f97e244a388fd23b6f20"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/><file name="config.xml" hash="d3d4c60ef5d8f97e244a388fd23b6f20"/><file name="system.xml" hash="a8065db3bfe97c4ce3e29b1b2ca9fe72"/></dir><dir name="sql"><dir name="multibanco_setup"><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/><file name="mysql4-install-1.0.0.php" hash="9f00ec506a0a94d8863cf14e3673d9ef"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eupago_Multibanco.xml" hash="79392e90e1f4e79aa0362ea7957930c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="multibanco"><dir name="form"><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/></dir><dir name="info"><file name="info.phtml" hash="fa6321e93aaf8d3849b6b5219a8b8987"/><dir name="pdf"><file name="info.phtml" hash="30d8927be3ac9f8ec898b21a58d1c574"/><file name="info.phtml" hash="30d8927be3ac9f8ec898b21a58d1c574"/><file name="info.phtml" hash="30d8927be3ac9f8ec898b21a58d1c574"/><file name="info.phtml" hash="30d8927be3ac9f8ec898b21a58d1c574"/></dir><file name="info.phtml" hash="fa6321e93aaf8d3849b6b5219a8b8987"/><file name="info.phtml" hash="fa6321e93aaf8d3849b6b5219a8b8987"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="multibanco"><dir name="checkout"><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/><file name="success.phtml" hash="ec51c7f1fc81caff3aba0d310b563919"/></dir><dir name="form"><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/><file name="form.phtml" hash="a9bed52032750b6d5b01d09306f63cc1"/><file name="mark.phtml" hash="59b0d4028051a96a8c54d5b33b67c8fd"/></dir><dir name="info"><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/><file name="info.phtml" hash="e723851ebf60f894f37154dd89d7ff4e"/></dir></dir></dir><dir name="layout"><file name="multibanco.xml" hash="969c55bcef9cc469e66d53283a31c200"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="multibanco"><file name="eupagomultibanco.png" hash="0b8ff29352f558fc8e756339a337a885"/><file name="eupagomultibanco.png" hash="0b8ff29352f558fc8e756339a337a885"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="multibanco"><file name="eupagomultibanco.png" hash="0ca321915123d5a712fb2b4f6744278a"/><file name="mb_mark.gif" hash="bbfd7b49dc892a72a8a87d8d1ae3e4ee"/><file name="eupagomultibanco.png" hash="0ca321915123d5a712fb2b4f6744278a"/><file name="mb_mark.gif" hash="bbfd7b49dc892a72a8a87d8d1ae3e4ee"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>