Tray_CheckoutApi - Version 1.1.4

Version Notes

Versão 0.1.0

- Primeira versão liberada do TrayCheckout

Versão 0.2.0

- Correção no envio do número de telefone.
- Melhorias no envio dos dados.

Versão 0.3.0

- Correções de integração com a API de Simulação de Parcelamento.
- Envio de um valor padrão ao finalizar por boleto e transferência online.
- Ajuste no envio das requisições para as APIs do TrayCheckout.
- Incrementado log personalizado no módulo.

Versão 0.4.0

- Ajustes nas URLs de integração com o TrayCheckout.

Versão 0.5.0

- Melhorias no código de integração com o TrayCheckout

Versão 0.6.0

- Melhorias na exibição das bandeiras de cartão de crédito
- Melhorias na exibição dos dados de parcelamento

Versão 0.7.0

- Melhorias no NAS (Notificação Automática de Status).

Versão 0.8.0

- Ajuste na validação dos campos enviados na integração.

Versão 0.9.0

- Ajustes no NAS (Notificação Automática de Status).

Versão 1.1.0

- Melhoria nos dados capturados para realização da análise de risco.

Versão 1.1.1

- Ajuste na captura e atualização dos dados do pedido

Versão 1.1.2

- Ajuste na exibição do link de pagamento (Detalhes do Pedido)

Versão 1.1.3

- Segregar meios de pagamento (à vista / à prazo
- Cancelamento de transação pelo painel administrativo da loja
- Seleção automática das bandeiras de cartão.
- Adicionada as Bandeiras Hiper / Hipercard
- Adicionado o pagamento por HSBC

Versão 1.1.4

- Ajustes no botão de configuração.
- Melhorias no script de finger print.

Download this release

Release Info

Developer TrayCheckout
Extension Tray_CheckoutApi
Version 1.1.4
Comparing to
See all releases


Code changes from version 1.1.3 to 1.1.4

app/code/community/Tray/CheckoutApi/Block/Payment.php CHANGED
@@ -20,6 +20,7 @@
20
  class Tray_CheckoutApi_Block_Payment extends Mage_Core_Block_Template
21
  {
22
  protected $order_number;
 
23
  protected $transaction_id;
24
  protected $url_payment;
25
  protected $typeful_line;
@@ -32,6 +33,9 @@ class Tray_CheckoutApi_Block_Payment extends Mage_Core_Block_Template
32
  public function getOrderNumber() {
33
  return $this->order_number;
34
  }
 
 
 
35
  public function getTransactionId() {
36
  return $this->transaction_id;
37
  }
@@ -66,6 +70,7 @@ class Tray_CheckoutApi_Block_Payment extends Mage_Core_Block_Template
66
 
67
  $xml = simplexml_load_string($response);
68
  $this->order_number = str_replace($standard->getConfigData('prefixo'),'',$xml->data_response->transaction->order_number);
 
69
  $this->transaction_id = $xml->data_response->transaction->transaction_id;
70
  $this->url_payment = $xml->data_response->transaction->payment->url_payment;
71
  $this->typeful_line = $xml->data_response->transaction->payment->linha_digitavel;
20
  class Tray_CheckoutApi_Block_Payment extends Mage_Core_Block_Template
21
  {
22
  protected $order_number;
23
+ protected $order_number_tc;
24
  protected $transaction_id;
25
  protected $url_payment;
26
  protected $typeful_line;
33
  public function getOrderNumber() {
34
  return $this->order_number;
35
  }
36
+ public function getOrderNumberTc() {
37
+ return $this->order_number_tc;
38
+ }
39
  public function getTransactionId() {
40
  return $this->transaction_id;
41
  }
70
 
71
  $xml = simplexml_load_string($response);
72
  $this->order_number = str_replace($standard->getConfigData('prefixo'),'',$xml->data_response->transaction->order_number);
73
+ $this->order_number_tc = $xml->data_response->transaction->order_number;
74
  $this->transaction_id = $xml->data_response->transaction->transaction_id;
75
  $this->url_payment = $xml->data_response->transaction->payment->url_payment;
76
  $this->typeful_line = $xml->data_response->transaction->payment->linha_digitavel;
app/code/community/Tray/CheckoutApi/Model/Auth.php CHANGED
@@ -25,7 +25,7 @@ class Tray_CheckoutApi_Model_Auth extends Varien_Object
25
  public $access_token = "";
26
  public $refresh_token = "";
27
 
28
- public function doAuthorization($consumer_key = "", $consumer_secret = "", $code = "")
29
  {
30
 
31
  $params["consumer_key"] = $consumer_key;
@@ -34,7 +34,7 @@ class Tray_CheckoutApi_Model_Auth extends Varien_Object
34
 
35
  $tcRequest = Mage::getModel('checkoutapi/request');
36
 
37
- $tcResponse = $tcRequest->requestData($this->urlAccessToken,$params,"1");
38
 
39
  if($tcResponse->message_response->message == "success"){
40
  $this->access_token = $tcResponse->data_response->authorization->access_token;
25
  public $access_token = "";
26
  public $refresh_token = "";
27
 
28
+ public function doAuthorization($consumer_key = "", $consumer_secret = "", $code = "",$environment = "1")
29
  {
30
 
31
  $params["consumer_key"] = $consumer_key;
34
 
35
  $tcRequest = Mage::getModel('checkoutapi/request');
36
 
37
+ $tcResponse = $tcRequest->requestData($this->urlAccessToken,$params,$environment);
38
 
39
  if($tcResponse->message_response->message == "success"){
40
  $this->access_token = $tcResponse->data_response->authorization->access_token;
app/code/community/Tray/CheckoutApi/controllers/StandardController.php CHANGED
@@ -47,13 +47,14 @@ class Tray_CheckoutApi_StandardController extends Mage_Core_Controller_Front_Act
47
  $environment = $this->getRequest()->getParam('environment', false);
48
 
49
  $tcAuth = Mage::getModel('checkoutapi/auth');
50
- $tcAuth->doAuthorization( $customerKey, $customerSecret, $code);
51
 
52
  $tcRequest = Mage::getModel('checkoutapi/request');
53
 
54
  $params["access_token"] = $tcAuth->access_token;
55
  $params["url"] = Mage::getBaseUrl();
56
-
 
57
  $tcResponse = $tcRequest->requestData("v1/people/update",$params,$environment);
58
 
59
  if($tcResponse->message_response->message == "success"){
47
  $environment = $this->getRequest()->getParam('environment', false);
48
 
49
  $tcAuth = Mage::getModel('checkoutapi/auth');
50
+ $tcAuth->doAuthorization( $customerKey, $customerSecret, $code, $environment);
51
 
52
  $tcRequest = Mage::getModel('checkoutapi/request');
53
 
54
  $params["access_token"] = $tcAuth->access_token;
55
  $params["url"] = Mage::getBaseUrl();
56
+ //var_dump($code,$customerKey,$customerSecret,$environment);
57
+ //var_dump($params);
58
  $tcResponse = $tcRequest->requestData("v1/people/update",$params,$environment);
59
 
60
  if($tcResponse->message_response->message == "success"){
app/code/community/Tray/CheckoutApi/etc/config.xml CHANGED
@@ -21,7 +21,7 @@
21
  <config>
22
  <modules>
23
  <Tray_CheckoutApi>
24
- <version>1.1.3</version>
25
  </Tray_CheckoutApi>
26
  </modules>
27
  <global>
21
  <config>
22
  <modules>
23
  <Tray_CheckoutApi>
24
+ <version>1.1.4</version>
25
  </Tray_CheckoutApi>
26
  </modules>
27
  <global>
app/design/frontend/base/default/layout/tray_checkoutapi.xml CHANGED
@@ -18,7 +18,7 @@
18
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19
  */
20
  -->
21
- <layout version="1.1.3">
22
  <default>
23
  <reference name="head">
24
  <action method="addJs">
@@ -26,12 +26,30 @@
26
  </action>
27
  </reference>
28
  </default>
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  <checkoutapi_standard_payment>
31
  <reference name="head">
32
  <action method="addCss">
33
  <stylesheet>tray/checkoutapi/css/styles.css</stylesheet>
34
  </action>
 
 
 
 
 
 
 
35
  </reference>
36
  <remove name="left"/>
37
  <reference name="root">
18
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19
  */
20
  -->
21
+ <layout version="1.1.4">
22
  <default>
23
  <reference name="head">
24
  <action method="addJs">
26
  </action>
27
  </reference>
28
  </default>
29
+ <checkoutapi_standard_success>
30
+ <reference name="head">
31
+ <block type="core/text" name="google.cdn.jquery">
32
+ <action method="setText">
33
+ <text>
34
+ <![CDATA[<script src="https://static.traycheckout.com.br/js/finger_print.js" type="text/javascript"></script>]]>
35
+ </text>
36
+ </action>
37
+ </block>
38
+ </reference>
39
+ </checkoutapi_standard_success>
40
 
41
  <checkoutapi_standard_payment>
42
  <reference name="head">
43
  <action method="addCss">
44
  <stylesheet>tray/checkoutapi/css/styles.css</stylesheet>
45
  </action>
46
+ <block type="core/text" name="google.cdn.jquery">
47
+ <action method="setText">
48
+ <text>
49
+ <![CDATA[<script src="https://static.traycheckout.com.br/js/finger_print.js" type="text/javascript"></script>]]>
50
+ </text>
51
+ </action>
52
+ </block>
53
  </reference>
54
  <remove name="left"/>
55
  <reference name="root">
app/design/frontend/base/default/template/tray/checkoutapi/payment.phtml CHANGED
@@ -17,7 +17,6 @@
17
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
18
  */
19
  ?>
20
- <script src="https://static.traycheckout.com.br/js/finger_print.js" type="text/javascript"></script>
21
  <?php
22
  $this->getPayment();
23
  $title = "";
@@ -85,7 +84,7 @@
85
  </div>
86
 
87
  <script>
88
- jQuery(document).FingerPrint({token_account: '<?php $this->getTokenAccount()?>',
89
- order_number: '<?php $this->getOrderNumber()?>',
90
  production: 'true'});
91
  </script>
17
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
18
  */
19
  ?>
 
20
  <?php
21
  $this->getPayment();
22
  $title = "";
84
  </div>
85
 
86
  <script>
87
+ jQuery(document).FingerPrint({token_account: '<?php echo $this->getTokenAccount()?>',
88
+ order_number: '<?php echo $this->getOrderNumberTc()?>',
89
  production: 'true'});
90
  </script>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Tray_CheckoutApi</name>
4
- <version>1.1.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -73,11 +73,16 @@ Este m&#xF3;dulo &#xE9; capaz de fazer a integra&#xE7;&#xE3;o com a API do pagam
73
  - Cancelamento de transa&#xE7;&#xE3;o pelo painel administrativo da loja&#xD;
74
  - Sele&#xE7;&#xE3;o autom&#xE1;tica das bandeiras de cart&#xE3;o.&#xD;
75
  - Adicionada as Bandeiras Hiper / Hipercard&#xD;
76
- - Adicionado o pagamento por HSBC</notes>
 
 
 
 
 
77
  <authors><author><name>TrayCheckout</name><user>traycheckout</user><email>integracao@traycheckout.com.br</email></author></authors>
78
- <date>2015-07-27</date>
79
- <time>17:42:36</time>
80
- <contents><target name="magecommunity"><dir name="Tray"><dir name="CheckoutApi"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hidden.php" hash="be5282cf3b72a35f2c7c808093bd2373"/><file name="Label.php" hash="f9ca741354aa668b5206360891a0198c"/></dir></dir></dir></dir><file name="Error.php" hash="a3a8aa9edb5c7718b7941e85421f0aa2"/><dir name="Form"><file name="Bankslip.php" hash="2a274dde3529a37888169d8b9b6e2c3a"/><file name="Onlinetransfer.php" hash="9fd9a1d28fab6d56b5b796e302da0cb0"/><file name="Standard.php" hash="02612595b4e9d19ccf458cc072d9cf52"/></dir><dir name="Info"><file name="Bankslip.php" hash="aeff5e716c8276e1f20cfc7cde6b49a6"/><file name="Onlinetransfer.php" hash="b1156534ef56fecf6bfc55807e650f0f"/><file name="Standard.php" hash="001cb928fdf7c652c2d64d888da34985"/></dir><file name="Link.php" hash="06ad7cb8eb1a52c7f130caacc0921657"/><file name="Payment.php" hash="27e7b19638c43fe7383ab3269b71594a"/><file name="Return.php" hash="6b5700113c184160ee447d1c6116b1c0"/></dir><dir name="Helper"><file name="Adress.php" hash="6064f62a723b2075290964e3e980d92b"/><file name="Data.php" hash="9a1da0d7564539c0b2fc307fc815b4ea"/></dir><dir name="Model"><file name="Auth.php" hash="2bfdb7b4be784ff636bf486354c10d76"/><file name="Bankslip.php" hash="2b560b0067a0dc0f9b55a22c6ca6b679"/><file name="Config.php" hash="7377296737b655ad3c01b3ae6081b507"/><dir name="Mysql4"><file name="Setup.php" hash="8a42c69f5c1a1be59d99985982a3703b"/></dir><file name="Observer.php" hash="bb74439605320f0133efd5434150e788"/><file name="Onlinetransfer.php" hash="0429bebc730f867743834e0ea17e676c"/><file name="Payment.php" hash="73d4ed6ffac89dc49d1dd908455cd4d8"/><file name="Request.php" hash="835404edf5edef57711264aab658de28"/><dir name="Resource"><file name="Payment.php" hash="74c257a6afb7ca7ff9ce96954dac64c0"/></dir><dir name="Source"><file name="Country.php" hash="153d0153071b72f23ac2a1c4fee93c24"/><file name="Payment.php" hash="7872c2c8b2f0a489876cea0fdaa89ce1"/><file name="Paymentmethods.php" hash="6e72208d95785d45181ac4a2557bb882"/><file name="Qtdsplit.php" hash="1273ee53626482898aefd7a3d31ebaea"/><file name="Specificcountries.php" hash="e41658287e6c68041d3f0042130f7db3"/><file name="Tefpaymentmethods.php" hash="efa55a28f959f252195134753b16a05c"/></dir><file name="Standard.php" hash="3bddd5e2051b66fc9fa4f4484cf04625"/></dir><dir name="controllers"><file name="StandardController.php" hash="c6591768c31b0da6ef71b5150131a65b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2b0114a2ffbce1930787f7a4e20ce73b"/><file name="config.xml" hash="48226ed617a22faf8de836a696c17dae"/><file name="system.xml" hash="89d8916687897780551c77432ab7e54a"/></dir><dir name="sql"><dir name="checkoutapi_setup"><file name="mysql4-install-0.1.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.2.0.php" hash="bb4ecef6ed4cb724d3fd505ad36acc4d"/><file name="mysql4-install-0.3.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.4.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.2.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.3.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.3.0-0.4.0.php" hash="1020462cfb124528fb590922eadfb74a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><file name="error.phtml" hash="9e07c1164917e9118c3b21d5bf8c864b"/><dir name="form"><file name="bankslip.phtml" hash="a07bbe0da9d492cc69bacffa2fd4781e"/><dir name="images"><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/></dir><file name="onlinetransfer.phtml" hash="59778850625bff50e592501c54f4e155"/><file name="standard.phtml" hash="d7fef69800121bc57b93c21e119ea0ec"/></dir><file name="head.phtml" hash="750d167a7a10ef1f56a73262f918dca5"/><dir name="info"><file name="bankslip.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="onlinetransfer.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="standard.phtml" hash="52b346990e73d69158b872e2189910c3"/></dir><file name="overlay.phtml" hash="d4ee4dbb85f9a7a350c6e8d5f59a9978"/><file name="payment.phtml" hash="303193cd94c93ba2b80fd26ac56406bc"/><file name="return.phtml" hash="47d5e3e1c3bda47721573e9639a54ca6"/></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="259a57b20eeb5b7fa6c81aadd6a37942"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><dir name="form"><file name="bankslip.phtml" hash="f543bfd1254908764362a07bcb943116"/><file name="onlinetransfer.phtml" hash="6b185db6587e9089dd0032aceb4554fc"/><file name="standard.phtml" hash="591e95574d2653f139763929b22bc3fd"/></dir><file name="getbaseurl.phtml" hash="05fba34637bc8da3958d1342f54c0ed4"/><dir name="info"><file name="standard.phtml" hash="1e9ba28c30b9a88c3fd6a53420ae8419"/></dir></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="9535831da505416e8c0adaea5ca6004b"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="styles.css" hash="5d09463e234fd2f20622f63795019be6"/></dir><dir name="images"><file name="BannerTrayCheckout890px.png" hash="535d5a4a4f190d03df38664dcb6463f8"/><file name="american-express-flag.svg" hash="5e8f075abba7baa0bf6612ad7257b7af"/><file name="aura-flag.svg" hash="5108ae0c1ffcf5e8ade452971fab86e3"/><file name="banner_comlogo_formas.jpg" hash="e02a16c32109746786c24db177ddad3a"/><file name="banner_semlogo_formas.jpg" hash="4f13591f17ed96347f136eab09343121"/><file name="banner_semlogo_formas.png" hash="84a82c3d7ed9a42ade9660b8dd16511d"/><file name="bb-flag.svg" hash="1f975352db9858164953c239c0f48b15"/><file name="boleto-flag.svg" hash="349465678cab30e15fc915cbb20f70c0"/><file name="bradesco-flag.svg" hash="922871bd31002207cd21fb4c83ab2bf9"/><file name="close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="diners-club-international-flag.svg" hash="6654d0a49c0bda41e37f09b204299719"/><file name="discover-flag.svg" hash="cc3c7a7a645c1c2b9ff45d35ec3d6ba4"/><file name="elo-flag.svg" hash="6aea17a57eb7f333bff577132846f6db"/><file name="hiper-flag.svg" hash="a42c6023c50d0a25e00072c4d9c1f382"/><file name="hipercard-flag.svg" hash="1f48be23788b90411c22ff2569b48f74"/><file name="hsbc-flag.svg" hash="4dec610798ad69cb53e32037d4bc9eee"/><file name="itau-flag.svg" hash="5eed9a56cbb9e313bce6c272a180275d"/><file name="jcb-flag.svg" hash="72c3cb6f8ccec48734422c5258e6d706"/><file name="mastercard-flag.svg" hash="6f8393b3588046c3bb17ffb26eb8c726"/><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/><file name="paymentFlags1.png" hash="2a1724b718bf2ff7a1b25b53acc0cefd"/><file name="paymentFlagsTc.png" hash="6dd7df4802b30ea61b96ad5752bab4ed"/><file name="peela-flag.svg" hash="59f1259c52ad40afaee0943ff1e64791"/><file name="visa-flag.svg" hash="98ec94a1fa4bcb73effc3e5f3506c08b"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="magentomodal.css" hash="2c6dd38e421f644475a121b8d6c96503"/></dir><dir name="images"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><dir name="js"><file name="modal.js" hash="a1021b9d952418ab46053fb0af03efac"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tray_CheckoutApi.xml" hash="c95a8f82fd3200b98898f0b9712ea0c8"/></dir></target><target name="mage"><dir name="js"><dir name="tray"><dir name="checkoutapi"><dir><dir name="js"><file name="traycheckout.js" hash="2f0a68e8b1a9f64e452ba28ec1c98783"/></dir></dir></dir></dir></dir></target></contents>
81
  <compatible/>
82
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.7</max></package></required></dependencies>
83
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Tray_CheckoutApi</name>
4
+ <version>1.1.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
73
  - Cancelamento de transa&#xE7;&#xE3;o pelo painel administrativo da loja&#xD;
74
  - Sele&#xE7;&#xE3;o autom&#xE1;tica das bandeiras de cart&#xE3;o.&#xD;
75
  - Adicionada as Bandeiras Hiper / Hipercard&#xD;
76
+ - Adicionado o pagamento por HSBC&#xD;
77
+ &#xD;
78
+ Vers&#xE3;o 1.1.4&#xD;
79
+ &#xD;
80
+ - Ajustes no bot&#xE3;o de configura&#xE7;&#xE3;o.&#xD;
81
+ - Melhorias no script de finger print.</notes>
82
  <authors><author><name>TrayCheckout</name><user>traycheckout</user><email>integracao@traycheckout.com.br</email></author></authors>
83
+ <date>2015-07-28</date>
84
+ <time>12:59:34</time>
85
+ <contents><target name="magecommunity"><dir name="Tray"><dir name="CheckoutApi"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hidden.php" hash="be5282cf3b72a35f2c7c808093bd2373"/><file name="Label.php" hash="f9ca741354aa668b5206360891a0198c"/></dir></dir></dir></dir><file name="Error.php" hash="a3a8aa9edb5c7718b7941e85421f0aa2"/><dir name="Form"><file name="Bankslip.php" hash="2a274dde3529a37888169d8b9b6e2c3a"/><file name="Onlinetransfer.php" hash="9fd9a1d28fab6d56b5b796e302da0cb0"/><file name="Standard.php" hash="02612595b4e9d19ccf458cc072d9cf52"/></dir><dir name="Info"><file name="Bankslip.php" hash="aeff5e716c8276e1f20cfc7cde6b49a6"/><file name="Onlinetransfer.php" hash="b1156534ef56fecf6bfc55807e650f0f"/><file name="Standard.php" hash="001cb928fdf7c652c2d64d888da34985"/></dir><file name="Link.php" hash="06ad7cb8eb1a52c7f130caacc0921657"/><file name="Payment.php" hash="be531180440dc9ebe575a847a812e8d1"/><file name="Return.php" hash="6b5700113c184160ee447d1c6116b1c0"/></dir><dir name="Helper"><file name="Adress.php" hash="6064f62a723b2075290964e3e980d92b"/><file name="Data.php" hash="9a1da0d7564539c0b2fc307fc815b4ea"/></dir><dir name="Model"><file name="Auth.php" hash="2b2c3130ad3d325cdc4bda96933f883d"/><file name="Bankslip.php" hash="2b560b0067a0dc0f9b55a22c6ca6b679"/><file name="Config.php" hash="7377296737b655ad3c01b3ae6081b507"/><dir name="Mysql4"><file name="Setup.php" hash="8a42c69f5c1a1be59d99985982a3703b"/></dir><file name="Observer.php" hash="bb74439605320f0133efd5434150e788"/><file name="Onlinetransfer.php" hash="0429bebc730f867743834e0ea17e676c"/><file name="Payment.php" hash="73d4ed6ffac89dc49d1dd908455cd4d8"/><file name="Request.php" hash="835404edf5edef57711264aab658de28"/><dir name="Resource"><file name="Payment.php" hash="74c257a6afb7ca7ff9ce96954dac64c0"/></dir><dir name="Source"><file name="Country.php" hash="153d0153071b72f23ac2a1c4fee93c24"/><file name="Payment.php" hash="7872c2c8b2f0a489876cea0fdaa89ce1"/><file name="Paymentmethods.php" hash="6e72208d95785d45181ac4a2557bb882"/><file name="Qtdsplit.php" hash="1273ee53626482898aefd7a3d31ebaea"/><file name="Specificcountries.php" hash="e41658287e6c68041d3f0042130f7db3"/><file name="Tefpaymentmethods.php" hash="efa55a28f959f252195134753b16a05c"/></dir><file name="Standard.php" hash="3bddd5e2051b66fc9fa4f4484cf04625"/></dir><dir name="controllers"><file name="StandardController.php" hash="2a962696d371ef327ca40828e043e0ac"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2b0114a2ffbce1930787f7a4e20ce73b"/><file name="config.xml" hash="d3cc8e6423ab88a7d7f8ba59acb2f9ac"/><file name="system.xml" hash="89d8916687897780551c77432ab7e54a"/></dir><dir name="sql"><dir name="checkoutapi_setup"><file name="mysql4-install-0.1.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.2.0.php" hash="bb4ecef6ed4cb724d3fd505ad36acc4d"/><file name="mysql4-install-0.3.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-0.4.0.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.2.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-install-1.1.3.php" hash="8eb2972ea2fcdd38306041ed37665902"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.2.0-0.3.0.php" hash="1020462cfb124528fb590922eadfb74a"/><file name="mysql4-upgrade-0.3.0-0.4.0.php" hash="1020462cfb124528fb590922eadfb74a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><file name="error.phtml" hash="9e07c1164917e9118c3b21d5bf8c864b"/><dir name="form"><file name="bankslip.phtml" hash="a07bbe0da9d492cc69bacffa2fd4781e"/><dir name="images"><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/></dir><file name="onlinetransfer.phtml" hash="59778850625bff50e592501c54f4e155"/><file name="standard.phtml" hash="d7fef69800121bc57b93c21e119ea0ec"/></dir><file name="head.phtml" hash="750d167a7a10ef1f56a73262f918dca5"/><dir name="info"><file name="bankslip.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="onlinetransfer.phtml" hash="52b346990e73d69158b872e2189910c3"/><file name="standard.phtml" hash="52b346990e73d69158b872e2189910c3"/></dir><file name="overlay.phtml" hash="d4ee4dbb85f9a7a350c6e8d5f59a9978"/><file name="payment.phtml" hash="0198beef2c36ca39afe6aa1f81830d95"/><file name="return.phtml" hash="47d5e3e1c3bda47721573e9639a54ca6"/></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="5dbfda9fe201738240e4db1e56f0a29a"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="tray"><dir name="checkoutapi"><dir name="form"><file name="bankslip.phtml" hash="f543bfd1254908764362a07bcb943116"/><file name="onlinetransfer.phtml" hash="6b185db6587e9089dd0032aceb4554fc"/><file name="standard.phtml" hash="591e95574d2653f139763929b22bc3fd"/></dir><file name="getbaseurl.phtml" hash="05fba34637bc8da3958d1342f54c0ed4"/><dir name="info"><file name="standard.phtml" hash="1e9ba28c30b9a88c3fd6a53420ae8419"/></dir></dir></dir></dir><dir name="layout"><file name="tray_checkoutapi.xml" hash="9535831da505416e8c0adaea5ca6004b"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="styles.css" hash="5d09463e234fd2f20622f63795019be6"/></dir><dir name="images"><file name="BannerTrayCheckout890px.png" hash="535d5a4a4f190d03df38664dcb6463f8"/><file name="american-express-flag.svg" hash="5e8f075abba7baa0bf6612ad7257b7af"/><file name="aura-flag.svg" hash="5108ae0c1ffcf5e8ade452971fab86e3"/><file name="banner_comlogo_formas.jpg" hash="e02a16c32109746786c24db177ddad3a"/><file name="banner_semlogo_formas.jpg" hash="4f13591f17ed96347f136eab09343121"/><file name="banner_semlogo_formas.png" hash="84a82c3d7ed9a42ade9660b8dd16511d"/><file name="bb-flag.svg" hash="1f975352db9858164953c239c0f48b15"/><file name="boleto-flag.svg" hash="349465678cab30e15fc915cbb20f70c0"/><file name="bradesco-flag.svg" hash="922871bd31002207cd21fb4c83ab2bf9"/><file name="close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="diners-club-international-flag.svg" hash="6654d0a49c0bda41e37f09b204299719"/><file name="discover-flag.svg" hash="cc3c7a7a645c1c2b9ff45d35ec3d6ba4"/><file name="elo-flag.svg" hash="6aea17a57eb7f333bff577132846f6db"/><file name="hiper-flag.svg" hash="a42c6023c50d0a25e00072c4d9c1f382"/><file name="hipercard-flag.svg" hash="1f48be23788b90411c22ff2569b48f74"/><file name="hsbc-flag.svg" hash="4dec610798ad69cb53e32037d4bc9eee"/><file name="itau-flag.svg" hash="5eed9a56cbb9e313bce6c272a180275d"/><file name="jcb-flag.svg" hash="72c3cb6f8ccec48734422c5258e6d706"/><file name="mastercard-flag.svg" hash="6f8393b3588046c3bb17ffb26eb8c726"/><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/><file name="paymentFlags1.png" hash="2a1724b718bf2ff7a1b25b53acc0cefd"/><file name="paymentFlagsTc.png" hash="6dd7df4802b30ea61b96ad5752bab4ed"/><file name="peela-flag.svg" hash="59f1259c52ad40afaee0943ff1e64791"/><file name="visa-flag.svg" hash="98ec94a1fa4bcb73effc3e5f3506c08b"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="tray"><dir name="checkoutapi"><dir name="css"><file name="magentomodal.css" hash="2c6dd38e421f644475a121b8d6c96503"/></dir><dir name="images"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><dir name="js"><file name="modal.js" hash="a1021b9d952418ab46053fb0af03efac"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tray_CheckoutApi.xml" hash="c95a8f82fd3200b98898f0b9712ea0c8"/></dir></target><target name="mage"><dir name="js"><dir name="tray"><dir name="checkoutapi"><dir><dir name="js"><file name="traycheckout.js" hash="2f0a68e8b1a9f64e452ba28ec1c98783"/></dir></dir></dir></dir></dir></target></contents>
86
  <compatible/>
87
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.7</max></package></required></dependencies>
88
  </package>