Version Notes
Features:
- Configuração de status de pedidos quando reconhecido pagamento de boleto
- Gerar fatura do boleto ao reconhecer pagamento de boleto.
Download this release
Release Info
Developer | Trezo |
Extension | pagueveloz |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
app/code/community/PagueVeloz/Api/etc/system.xml
CHANGED
@@ -38,9 +38,9 @@
|
|
38 |
margin-left: 100px;
|
39 |
margin-top: 25px;">OU</div>
|
40 |
Para criar seu token de produção faça o cadastro em
|
41 |
-
<a href="https://www.pagueveloz.com.br/
|
42 |
Para criar seu token para testes, em homologação, faça o cadastro em
|
43 |
-
<a href="http://pagueveloz.
|
44 |
|
45 |
</div>
|
46 |
]]>
|
38 |
margin-left: 100px;
|
39 |
margin-top: 25px;">OU</div>
|
40 |
Para criar seu token de produção faça o cadastro em
|
41 |
+
<a href="https://www.pagueveloz.com.br/" target="_blank">PagueVeloz</a>.<br />
|
42 |
Para criar seu token para testes, em homologação, faça o cadastro em
|
43 |
+
<a href="http://sandbox.pagueveloz.com.br/" target="_blank">PagueVeloz Homolog</a>.
|
44 |
|
45 |
</div>
|
46 |
]]>
|
app/code/community/PagueVeloz/Boleto/Model/Boleto.php
CHANGED
@@ -49,9 +49,11 @@ class PagueVeloz_Boleto_Model_Boleto extends Mage_Core_Model_Abstract
|
|
49 |
foreach ($_boletosData as $_boleto) {
|
50 |
|
51 |
if (($_boleto->SeuNumero == $this->getSeuNumero()) && $_boleto->TemPagamento) {
|
52 |
-
$
|
53 |
-
|
54 |
-
->
|
|
|
|
|
55 |
->save();
|
56 |
|
57 |
$this->setStatus('pago')
|
@@ -71,13 +73,41 @@ class PagueVeloz_Boleto_Model_Boleto extends Mage_Core_Model_Abstract
|
|
71 |
}
|
72 |
}
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
public function generate($order)
|
75 |
{
|
76 |
$customer = Mage::getModel("customer/customer")->load($order->getCustomerId());
|
77 |
$valor = $order->getGrandTotal();
|
78 |
$seuNumero = $order->getIncrementId();
|
79 |
$nome = $order->getCustomerName();
|
80 |
-
$cpf = $customer->getTaxvat();
|
81 |
$email = $order->getCustomerEmail();
|
82 |
$boleto = $this->loadByOrderId($order->getId());
|
83 |
if (!$boleto->getId()) {
|
@@ -106,7 +136,7 @@ class PagueVeloz_Boleto_Model_Boleto extends Mage_Core_Model_Abstract
|
|
106 |
$seuNumero = $order->getIncrementId() . "-" . $this->getQtyRegerado();
|
107 |
$this->setSeuNumero($seuNumero);
|
108 |
$nome = $order->getCustomerName();
|
109 |
-
$cpf = $customer->getTaxvat();
|
110 |
$email = $order->getCustomerEmail();
|
111 |
|
112 |
$url = $webservice->generateBoletoUrl($this->getValor(), $seuNumero, $nome, $cpf, $email);
|
49 |
foreach ($_boletosData as $_boleto) {
|
50 |
|
51 |
if (($_boleto->SeuNumero == $this->getSeuNumero()) && $_boleto->TemPagamento) {
|
52 |
+
$this->invoiceOrder($_order);
|
53 |
+
$_order->setStatus($boletoMethod->getPaidOrderStatus())
|
54 |
+
->setState($boletoMethod->getPaidOrderStatus())
|
55 |
+
->save();
|
56 |
+
$_order->addStatusHistoryComment("BOLETO PAGO EM: {$_boleto->DataPagamento} | R$ {$_boleto->ValorPago}")
|
57 |
->save();
|
58 |
|
59 |
$this->setStatus('pago')
|
73 |
}
|
74 |
}
|
75 |
|
76 |
+
protected function invoiceOrder($order)
|
77 |
+
{
|
78 |
+
try {
|
79 |
+
if(!$order->canInvoice())
|
80 |
+
{
|
81 |
+
Mage::throwException(Mage::helper('core')->__('Cannot create an invoice.'));
|
82 |
+
}
|
83 |
+
|
84 |
+
$invoice = Mage::getModel('sales/service_order', $order)->prepareInvoice();
|
85 |
+
|
86 |
+
if (!$invoice->getTotalQty()) {
|
87 |
+
Mage::throwException(Mage::helper('core')->__('Cannot create an invoice without products.'));
|
88 |
+
}
|
89 |
+
|
90 |
+
$invoice->setRequestedCaptureCase(Mage_Sales_Model_Order_Invoice::CAPTURE_OFFLINE);
|
91 |
+
$invoice->register();
|
92 |
+
$transactionSave = Mage::getModel('core/resource_transaction')
|
93 |
+
->addObject($invoice)
|
94 |
+
->addObject($invoice->getOrder());
|
95 |
+
|
96 |
+
$transactionSave->save();
|
97 |
+
}
|
98 |
+
catch (Mage_Core_Exception $e) {
|
99 |
+
$order->addStatusHistoryComment("ERRO AO GERAR FATURA BOLETO: " . $e->getMessage())
|
100 |
+
->save();
|
101 |
+
}
|
102 |
+
}
|
103 |
+
|
104 |
public function generate($order)
|
105 |
{
|
106 |
$customer = Mage::getModel("customer/customer")->load($order->getCustomerId());
|
107 |
$valor = $order->getGrandTotal();
|
108 |
$seuNumero = $order->getIncrementId();
|
109 |
$nome = $order->getCustomerName();
|
110 |
+
$cpf = ($order->getCustomerTaxvat()) ? $order->getCustomerTaxvat() : $customer->getTaxvat();
|
111 |
$email = $order->getCustomerEmail();
|
112 |
$boleto = $this->loadByOrderId($order->getId());
|
113 |
if (!$boleto->getId()) {
|
136 |
$seuNumero = $order->getIncrementId() . "-" . $this->getQtyRegerado();
|
137 |
$this->setSeuNumero($seuNumero);
|
138 |
$nome = $order->getCustomerName();
|
139 |
+
$cpf = ($order->getCustomerTaxvat()) ? $order->getCustomerTaxvat() : $customer->getTaxvat();
|
140 |
$email = $order->getCustomerEmail();
|
141 |
|
142 |
$url = $webservice->generateBoletoUrl($this->getValor(), $seuNumero, $nome, $cpf, $email);
|
app/code/community/PagueVeloz/Boleto/Model/BoletoMethod.php
CHANGED
@@ -19,9 +19,14 @@ class PagueVeloz_Boleto_Model_BoletoMethod extends Mage_Payment_Model_Method_Ban
|
|
19 |
return $this->getConfig('instruction1') . "<br>" . $this->getConfig('instruction2');
|
20 |
}
|
21 |
|
22 |
-
public function
|
23 |
{
|
24 |
-
return Mage::getStoreConfig('payment/pagueveloz_boleto/
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
public function log($msg)
|
19 |
return $this->getConfig('instruction1') . "<br>" . $this->getConfig('instruction2');
|
20 |
}
|
21 |
|
22 |
+
public function getPaidOrderStatus()
|
23 |
{
|
24 |
+
return Mage::getStoreConfig('payment/pagueveloz_boleto/order_status_paid');
|
25 |
+
}
|
26 |
+
|
27 |
+
public function getNewOrderStatus()
|
28 |
+
{
|
29 |
+
return Mage::getStoreConfig('payment/pagueveloz_boleto/order_status_new');
|
30 |
}
|
31 |
|
32 |
public function log($msg)
|
app/code/community/PagueVeloz/Boleto/etc/system.xml
CHANGED
@@ -40,7 +40,7 @@
|
|
40 |
Permite que o pagueveloz envie o email automaticamente para o cliente com o boleto gerado
|
41 |
</comment>
|
42 |
</send_email>
|
43 |
-
<
|
44 |
<label>New order status</label>
|
45 |
<frontend_type>select</frontend_type>
|
46 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
@@ -48,7 +48,16 @@
|
|
48 |
<show_in_default>1</show_in_default>
|
49 |
<show_in_website>1</show_in_website>
|
50 |
<show_in_store>0</show_in_store>
|
51 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<title translate="label">
|
53 |
<label>Title</label>
|
54 |
<frontend_type>text</frontend_type>
|
40 |
Permite que o pagueveloz envie o email automaticamente para o cliente com o boleto gerado
|
41 |
</comment>
|
42 |
</send_email>
|
43 |
+
<order_status_new translate="label">
|
44 |
<label>New order status</label>
|
45 |
<frontend_type>select</frontend_type>
|
46 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
48 |
<show_in_default>1</show_in_default>
|
49 |
<show_in_website>1</show_in_website>
|
50 |
<show_in_store>0</show_in_store>
|
51 |
+
</order_status_new>
|
52 |
+
<order_status_paid translate="label">
|
53 |
+
<label>Status Pago</label>
|
54 |
+
<frontend_type>select</frontend_type>
|
55 |
+
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
56 |
+
<sort_order>100</sort_order>
|
57 |
+
<show_in_default>1</show_in_default>
|
58 |
+
<show_in_website>1</show_in_website>
|
59 |
+
<show_in_store>0</show_in_store>
|
60 |
+
</order_status_paid>
|
61 |
<title translate="label">
|
62 |
<label>Title</label>
|
63 |
<frontend_type>text</frontend_type>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pagueveloz</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -31,12 +31,12 @@ Envia SMS para o cliente sobre as suas transações.
|
|
31 |
- Regerar boletos para o pedido pelo painel administrativo</description>
|
32 |
<notes>Features:
|
33 |

|
34 |
-
- Configuração
|
35 |
-
-
|
36 |
<authors><author><name>Trezo</name><user>trezo</user><email>contato@trezo.com.br</email></author><author><name>André Felipe</name><user>AndrewDaluz</user><email>andrew.daluz@gmail.com</email></author></authors>
|
37 |
-
<date>2015-
|
38 |
-
<time>
|
39 |
-
<contents><target name="magecommunity"><dir name="PagueVeloz"><dir name="Api"><dir name="Helper"><file name="Data.php" hash="5dd22a3dfaaec130dedf9beb9c7582c7"/></dir><dir name="Model"><dir name="Common"><file name="HttpContext.php" hash="87b8a23bb37ce28c8d133141f7192ea4"/><file name="HttpResponse.php" hash="8824a5b81f241eba95d1bb05eeaa2445"/></dir><dir name="Dto"><file name="AssinarDTO.php" hash="9f973ca8adbf9f03cfb49ff9945ab843"/><file name="AuthenticationDTO.php" hash="32adad741bd0488f153b6742b8ae05ef"/><file name="BoletoDTO.php" hash="305cde3edf6251336764c877d7f0dc36"/><file name="ClienteDTO.php" hash="68cc74cbe60d3aca11512cf428329e0e"/><file name="ComprarCreditosSMSDTO.php" hash="23faffe9ba86409a9baee5e9d5dc2d10"/><file name="ConsultarBoletoDTO.php" hash="d40d21746ddb2b5600b1126418c12126"/><file name="ConsultarClienteDTO.php" hash="81f0d0efd6c628e58036f411dcf4e54f"/><file name="ContaBancariaDTO.php" hash="ec010aca621bd4bd999d6a8690da3d73"/><file name="ContaDTO.php" hash="979c4cd877a5f4fe171741519d543837"/><file name="CreditoSMSDTO.php" hash="dc8ab72c5ce940fdf4703878e75af13b"/><file name="EmailDTO.php" hash="b59163a5e46981ad4f6766160de5b4f9"/><file name="EmitirBoletoDTO.php" hash="d643c25c36bdd9d84e047962a0206162"/><file name="MensagemSMSDTO.php" hash="1e82c6ebd460e71ed3d7f49229b324a7"/><file name="PacotesSMSDTO.php" hash="dc72eb8777fbb05f31a9545504ab0211"/><file name="SaqueDTO.php" hash="3088396e76abbcba0a0dd8946e74b849"/><file name="TransferenciaDTO.php" hash="4ec678f2308cca18ecc1ba4839e316f4"/></dir><dir name="Exceptions"><file name="ArgumentNullException.php" hash="849eab61181df20d28c76d27f90ea4e6"/><file name="InvalidEmailException.php" hash="78f26c55091d93311c561a3b82d23ede"/><file name="InvalidHostException.php" hash="1604677bc1ae445e078beb5c7eba3847"/><file name="InvalidJSONException.php" hash="802ef96e2f52fa168c3fb970e0f6c778"/><file name="InvalidMethodException.php" hash="a00a3f9e2ee43d7c2221c7fd87ec47d7"/><file name="InvalidValueException.php" hash="fd91721837c1a2b9d3762e0fd5b8c27c"/></dir><dir name="Interfaces"><file name="IHttpClient.php" hash="b4f3d163a7a5ee4e5f5a7ea6d132f3ed"/></dir><file name="Observer.php" hash="1e672ee02cee0ffdb585c5a157d1aa95"/><dir name="Services"><file name="Curl.php" hash="c73fb2938c780fc7a652d86cff68b635"/></dir><dir name="Source"><file name="States.php" hash="e2c1ee6aaa6c5ee930e619a2de13f929"/></dir><dir name="Webservice"><file name="Assinar.php" hash="d7f6ff66c4c07cff0cdc68d357eced9c"/><file name="Boleto.php" hash="5384f5fced8a083fe926e053ff1e6abc"/><file name="Cliente.php" hash="292297b56176d88033bd87064336fc07"/><file name="ComprarCreditosSMS.php" hash="805465acad1fa70fc0f0ca0164dbfd2a"/><file name="ConsultarBoleto.php" hash="4237724947a67f76cdeda0d261c3ddd7"/><file name="ConsultarCliente.php" hash="e1122f61ad83d0f83be61b58a8f3840a"/><file name="Conta.php" hash="20b39c7d57b5967be343f0ddfc54c4a9"/><file name="ContaBancaria.php" hash="9b9536d4e242755c42d104c5ca821747"/><file name="CreditoSMS.php" hash="e14cffd70ae25de85fdc385347d0ec55"/><file name="EmitirBoleto.php" hash="3a18a5f5dfec23ade179404a5b7612f2"/><file name="MensagemSMS.php" hash="7997c50d8e6295302c067b7ec0330f4c"/><file name="PacotesSMS.php" hash="ec8ca595e5dc6c4b44326f263ec0da59"/><file name="PagueVeloz.php" hash="22919d70c45a616760e1c54c34ae246b"/><file name="Saldo.php" hash="44cc18583e198e38f4dff2da7d28cded"/><file name="Saque.php" hash="d34c5726993945445e327f6f794ed8aa"/><file name="Transferencia.php" hash="a0e41d439c92ac87c7480b42ef35cbf2"/></dir><file name="Webservice.php" hash="cd676d2dc2fa4d18ab68503f3f8d6a94"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="PaguevelozController.php" hash="05bea1a4ac58edb59bbac81f73dc28dd"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9c7b1a6fdcd5f8406c6da0d25f6abf13"/><file name="config.xml" hash="8ef885b51b334c9ec421551d39c49510"/><file name="system.xml" hash="
|
40 |
<compatible/>
|
41 |
<dependencies><required><php><min>4.3.0</min><max>6.2.0</max></php></required></dependencies>
|
42 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>pagueveloz</name>
|
4 |
+
<version>1.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
31 |
- Regerar boletos para o pedido pelo painel administrativo</description>
|
32 |
<notes>Features:
|
33 |

|
34 |
+
- Configuração de status de pedidos quando reconhecido pagamento de boleto
|
35 |
+
- Gerar fatura do boleto ao reconhecer pagamento de boleto.</notes>
|
36 |
<authors><author><name>Trezo</name><user>trezo</user><email>contato@trezo.com.br</email></author><author><name>André Felipe</name><user>AndrewDaluz</user><email>andrew.daluz@gmail.com</email></author></authors>
|
37 |
+
<date>2015-06-10</date>
|
38 |
+
<time>00:23:25</time>
|
39 |
+
<contents><target name="magecommunity"><dir name="PagueVeloz"><dir name="Api"><dir name="Helper"><file name="Data.php" hash="5dd22a3dfaaec130dedf9beb9c7582c7"/></dir><dir name="Model"><dir name="Common"><file name="HttpContext.php" hash="87b8a23bb37ce28c8d133141f7192ea4"/><file name="HttpResponse.php" hash="8824a5b81f241eba95d1bb05eeaa2445"/></dir><dir name="Dto"><file name="AssinarDTO.php" hash="9f973ca8adbf9f03cfb49ff9945ab843"/><file name="AuthenticationDTO.php" hash="32adad741bd0488f153b6742b8ae05ef"/><file name="BoletoDTO.php" hash="305cde3edf6251336764c877d7f0dc36"/><file name="ClienteDTO.php" hash="68cc74cbe60d3aca11512cf428329e0e"/><file name="ComprarCreditosSMSDTO.php" hash="23faffe9ba86409a9baee5e9d5dc2d10"/><file name="ConsultarBoletoDTO.php" hash="d40d21746ddb2b5600b1126418c12126"/><file name="ConsultarClienteDTO.php" hash="81f0d0efd6c628e58036f411dcf4e54f"/><file name="ContaBancariaDTO.php" hash="ec010aca621bd4bd999d6a8690da3d73"/><file name="ContaDTO.php" hash="979c4cd877a5f4fe171741519d543837"/><file name="CreditoSMSDTO.php" hash="dc8ab72c5ce940fdf4703878e75af13b"/><file name="EmailDTO.php" hash="b59163a5e46981ad4f6766160de5b4f9"/><file name="EmitirBoletoDTO.php" hash="d643c25c36bdd9d84e047962a0206162"/><file name="MensagemSMSDTO.php" hash="1e82c6ebd460e71ed3d7f49229b324a7"/><file name="PacotesSMSDTO.php" hash="dc72eb8777fbb05f31a9545504ab0211"/><file name="SaqueDTO.php" hash="3088396e76abbcba0a0dd8946e74b849"/><file name="TransferenciaDTO.php" hash="4ec678f2308cca18ecc1ba4839e316f4"/></dir><dir name="Exceptions"><file name="ArgumentNullException.php" hash="849eab61181df20d28c76d27f90ea4e6"/><file name="InvalidEmailException.php" hash="78f26c55091d93311c561a3b82d23ede"/><file name="InvalidHostException.php" hash="1604677bc1ae445e078beb5c7eba3847"/><file name="InvalidJSONException.php" hash="802ef96e2f52fa168c3fb970e0f6c778"/><file name="InvalidMethodException.php" hash="a00a3f9e2ee43d7c2221c7fd87ec47d7"/><file name="InvalidValueException.php" hash="fd91721837c1a2b9d3762e0fd5b8c27c"/></dir><dir name="Interfaces"><file name="IHttpClient.php" hash="b4f3d163a7a5ee4e5f5a7ea6d132f3ed"/></dir><file name="Observer.php" hash="1e672ee02cee0ffdb585c5a157d1aa95"/><dir name="Services"><file name="Curl.php" hash="c73fb2938c780fc7a652d86cff68b635"/></dir><dir name="Source"><file name="States.php" hash="e2c1ee6aaa6c5ee930e619a2de13f929"/></dir><dir name="Webservice"><file name="Assinar.php" hash="d7f6ff66c4c07cff0cdc68d357eced9c"/><file name="Boleto.php" hash="5384f5fced8a083fe926e053ff1e6abc"/><file name="Cliente.php" hash="292297b56176d88033bd87064336fc07"/><file name="ComprarCreditosSMS.php" hash="805465acad1fa70fc0f0ca0164dbfd2a"/><file name="ConsultarBoleto.php" hash="4237724947a67f76cdeda0d261c3ddd7"/><file name="ConsultarCliente.php" hash="e1122f61ad83d0f83be61b58a8f3840a"/><file name="Conta.php" hash="20b39c7d57b5967be343f0ddfc54c4a9"/><file name="ContaBancaria.php" hash="9b9536d4e242755c42d104c5ca821747"/><file name="CreditoSMS.php" hash="e14cffd70ae25de85fdc385347d0ec55"/><file name="EmitirBoleto.php" hash="3a18a5f5dfec23ade179404a5b7612f2"/><file name="MensagemSMS.php" hash="7997c50d8e6295302c067b7ec0330f4c"/><file name="PacotesSMS.php" hash="ec8ca595e5dc6c4b44326f263ec0da59"/><file name="PagueVeloz.php" hash="22919d70c45a616760e1c54c34ae246b"/><file name="Saldo.php" hash="44cc18583e198e38f4dff2da7d28cded"/><file name="Saque.php" hash="d34c5726993945445e327f6f794ed8aa"/><file name="Transferencia.php" hash="a0e41d439c92ac87c7480b42ef35cbf2"/></dir><file name="Webservice.php" hash="cd676d2dc2fa4d18ab68503f3f8d6a94"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="PaguevelozController.php" hash="05bea1a4ac58edb59bbac81f73dc28dd"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9c7b1a6fdcd5f8406c6da0d25f6abf13"/><file name="config.xml" hash="8ef885b51b334c9ec421551d39c49510"/><file name="system.xml" hash="5a63d345dbd734fb0bedd54294df1e11"/></dir></dir><dir name="Boleto"><dir name="Block"><dir name="Adminhtml"><file name="Content.php" hash="4cef37b3e9506ef93e535a6635fe6e0e"/><file name="Js.php" hash="70cffb7e203a75ba2fdddfa4b88b3ac5"/><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><file name="Boleto.php" hash="311d65f72b67f967961725da616a120f"/></dir></dir></dir></dir></dir><dir name="Form"><file name="Boleto.php" hash="abbe1492aa0fd16117c3b565c2e57425"/></dir><dir name="Info"><file name="Boleto.php" hash="ed7f2649513be3643e929c0c2af2f98c"/></dir><dir name="Onepage"><file name="Success.php" hash="b9cf5a95c7c5a41fb889396e86d7bde8"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6c396287706a2fae0fabca1f964632fc"/></dir><dir name="Model"><file name="Boleto.php" hash="f164fa0a8defc96df05999d7d138925a"/><file name="BoletoMethod.php" hash="3a32473b9a6442b461a637e2427e7f60"/><file name="Cron.php" hash="2e776dd50ecbad80869419303c5a7219"/><dir name="Mysql4"><dir name="Boleto"><file name="Collection.php" hash="367a9911d7e9a98b58851e57c2556bea"/></dir><file name="Boleto.php" hash="ccd1b3c9f523236da3a7f26327ee158d"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="BoletoController.php" hash="a5e3b6fda6f793cef26dfc4a68faeac0"/><file name="ContaController.php" hash="9d4381834b4dee98effd2decdc38ed35"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="c1c2d8726d0985e26d2d96353b252161"/><file name="config.xml" hash="62cd45e1b7544178d3ed35c0d3db5665"/><file name="system.xml" hash="93fd35a5c6c84f4a2cee8b469de42a2f"/></dir><dir name="sql"><dir name="pagueveloz_boleto_setup"><file name="mysql4-install-1.0.0.php" hash="95a197e8d72480a9fc2304e05808c7f1"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="55024d5f3b074e2302a57850a290bfad"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="dd01cbf26c2cea6ae99b7c559b62074b"/></dir></dir></dir><dir name="Sms"><dir name="Block"><dir name="Adminhtml"><file name="Content.php" hash="bb303d97dbdb73f0dd9672ae9457d470"/><file name="Js.php" hash="ba85fce0c0ef747e3cb2d5f9871c569a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8018e7556f54eaf875bbe6f30630984"/></dir><dir name="Model"><file name="Cron.php" hash="4b2410d50a29f97a95e004bf374a4abd"/><dir name="Mysql4"><dir name="Sms"><file name="Collection.php" hash="b892e920b4e6c72ffad043d6136983e6"/></dir><file name="Sms.php" hash="cea8e93d288a3166ede32788212db818"/><dir name="Template"><file name="Collection.php" hash="f3f10f9a36161a00fd68b7d4c3938f8d"/></dir><file name="Template.php" hash="b23a4c8d530dd9c3bbe47f01c6c80ae4"/></dir><file name="Observer.php" hash="5ace26216c02db7fd4129924be66db2e"/><file name="Sms.php" hash="92bb8f32b0aca393af078745d5d71767"/><file name="Template.php" hash="4f6a500e1af540e03592a4416e71635b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SmsController.php" hash="37b3d3d6f72de79963bed53d7532591a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dac3f4eed8cefa32fadee773d4595208"/><file name="config.xml" hash="5adcbfdd6bfd9fad96c1a3f89478cf44"/><file name="system.xml" hash="134ddc80172a4c408d1f808e0730b41f"/></dir><dir name="sql"><dir name="pagueveloz_sms_setup"><file name="mysql4-install-1.0.0.php" hash="4a1e0fa19e30245ea70fe2319fbf901e"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="f206b98382ba544fb6dd60d7303eb2fc"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="pagueveloz_boleto.xml" hash="04bb884d0171f1018a9e21454cf3043e"/><file name="pagueveloz_sms.xml" hash="c4a3fd25cf57dd2f56e780211d981eb4"/></dir><dir name="template"><dir name="pagueveloz"><file name="boleto.phtml" hash="e331797b39ab943901d80da065b80c5a"/><file name="js.phtml" hash="3fb8c6613b14b63792d094ea6b3e9f7b"/></dir><dir name="pagueveloz_boleto"><file name="content.phtml" hash="53eeb2e00dec472ed8ed9d682eada203"/><file name="js.phtml" hash="7840ba742ba5375d34e5ee26452b4205"/></dir><dir name="pagueveloz_sms"><file name="content.phtml" hash="a55f737503bd54251c0f632db433caa6"/><file name="js.phtml" hash="dbfbb647452be17a39d94d3dff8e1dc2"/></dir><dir name="payment"><dir name="info"><file name="pagueveloz_boleto.phtml" hash="a6dc876486a849067454a3be07504a46"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="pagueveloz_boleto.xml" hash="32296931b036ace56f584349d191ddce"/></dir><dir name="template"><dir name="pagueveloz_boleto"><file name="success.phtml" hash="3aef8398e40624c9b6481b3891ccb799"/></dir><dir name="payment"><dir name="form"><file name="pagueveloz_boleto.phtml" hash="9916b6426aeb0948e3910297594e06d2"/></dir><dir name="info"><file name="pagueveloz_boleto.phtml" hash="54aaad5ba596271ce7ed76f624078e14"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PagueVeloz_All.xml" hash="fb817a06d78e0b2d688cbece00082b61"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="pagueveloz"><file name="botao-imprimir-boleto.png" hash="7f9313cae22687b8e61ec1c9494bb416"/></dir></dir></dir></dir></dir></target></contents>
|
40 |
<compatible/>
|
41 |
<dependencies><required><php><min>4.3.0</min><max>6.2.0</max></php></required></dependencies>
|
42 |
</package>
|