Version Notes
Alteração para o funcionamento do módulo MoIP para funcionamento em qualquer Módulo de checkout.
Download this release
Release Info
Developer | O2TI |
Extension | o2ti_moip |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- app/code/local/O2TI/Moip/Block/Standard/Redirect.php +39 -0
- app/code/local/O2TI/Moip/Model/Api.php +1 -1
- app/code/local/O2TI/Onestepcheckout/etc/system.xml +1 -77
- app/design/adminhtml/default/default/template/O2TI/moip/info.phtml +4 -246
- app/design/frontend/default/default/layout/o2ti_moip.xml +9 -11
- app/design/frontend/default/default/layout/o2ti_onestepcheckout.xml +4 -25
- app/design/frontend/default/default/template/O2TI/moip/boleto.phtml +16 -0
- app/design/frontend/default/default/template/O2TI/moip/cartao.phtml +15 -0
- app/design/frontend/default/default/template/O2TI/moip/transferencia.phtml +15 -1
- app/design/frontend/default/default/template/O2TI/moip/vertical_form.phtml +9 -37
- app/design/frontend/default/default/template/O2TI/onestepcheckout/daskboard.phtml +3 -56
- js/O2TI/moip/checkout.js +37 -0
- js/O2TI/moip/jquery_noconflict.js +0 -1
- js/O2TI/{moip/novamascara.js → novamascara.js} +0 -0
- js/O2TI/onestepcheckout/noConflict.js +0 -1
- js/O2TI/onestepcheckout/novamascara.js +0 -9
- js/O2TI/onestepcheckout/validacao.js +0 -15
- js/O2TI/{moip/validacao.js → validacao.js} +0 -0
- package.xml +6 -6
app/code/local/O2TI/Moip/Block/Standard/Redirect.php
CHANGED
@@ -77,6 +77,7 @@ class O2TI_Moip_Block_Standard_Redirect extends Mage_Checkout_Block_Onepage_Succ
|
|
77 |
|
78 |
}
|
79 |
public function getOrder_dados($order_dados){
|
|
|
80 |
return $order_dados;
|
81 |
}
|
82 |
|
@@ -102,6 +103,44 @@ class O2TI_Moip_Block_Standard_Redirect extends Mage_Checkout_Block_Onepage_Succ
|
|
102 |
return false;
|
103 |
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
public function getTrans_Moip($result_decode, $pagamento)
|
107 |
{
|
77 |
|
78 |
}
|
79 |
public function getOrder_dados($order_dados){
|
80 |
+
|
81 |
return $order_dados;
|
82 |
}
|
83 |
|
103 |
return false;
|
104 |
|
105 |
}
|
106 |
+
public function getTrackingMoip($order_dados)
|
107 |
+
{
|
108 |
+
|
109 |
+
$order = Mage::getModel('sales/order')->loadByIncrementId($order_dados['id_transacao']);
|
110 |
+
$orderIds = $order->getId();
|
111 |
+
$collection = Mage::getResourceModel('sales/order_collection')
|
112 |
+
->addFieldToFilter('entity_id', array('in' => $orderIds))
|
113 |
+
;
|
114 |
+
$result = array();
|
115 |
+
foreach ($collection as $order) {
|
116 |
+
if ($order->getIsVirtual()) {
|
117 |
+
$address = $order->getBillingAddress();
|
118 |
+
} else {
|
119 |
+
$address = $order->getShippingAddress();
|
120 |
+
}
|
121 |
+
$result[] = sprintf("_gaq.push(['_addTrans', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s']);",
|
122 |
+
$order->getIncrementId(),
|
123 |
+
$this->jsQuoteEscape(Mage::app()->getStore()->getFrontendName()),
|
124 |
+
$order->getBaseGrandTotal(),
|
125 |
+
$order->getBaseTaxAmount(),
|
126 |
+
$order->getBaseShippingAmount(),
|
127 |
+
$this->jsQuoteEscape(Mage::helper('core')->escapeHtml($address->getCity())),
|
128 |
+
$this->jsQuoteEscape(Mage::helper('core')->escapeHtml($address->getRegion())),
|
129 |
+
$this->jsQuoteEscape(Mage::helper('core')->escapeHtml($address->getCountry()))
|
130 |
+
);
|
131 |
+
foreach ($order->getAllVisibleItems() as $item) {
|
132 |
+
$result[] = sprintf("_gaq.push(['_addItem', '%s', '%s', '%s', '%s', '%s', '%s']);",
|
133 |
+
$order->getIncrementId(),
|
134 |
+
$this->jsQuoteEscape($item->getSku()), $this->jsQuoteEscape($item->getName()),
|
135 |
+
null,
|
136 |
+
$item->getBasePrice(), $item->getQtyOrdered()
|
137 |
+
);
|
138 |
+
}
|
139 |
+
$result[] = "_gaq.push(['_trackTrans']);";
|
140 |
+
}
|
141 |
+
|
142 |
+
return implode("\n", $result);
|
143 |
+
}
|
144 |
|
145 |
public function getTrans_Moip($result_decode, $pagamento)
|
146 |
{
|
app/code/local/O2TI/Moip/Model/Api.php
CHANGED
@@ -166,7 +166,7 @@ class O2TI_Moip_Model_Api {
|
|
166 |
"Complemento" => $data['pagador_complemento'],
|
167 |
"Bairro" => $data['pagador_bairro'],
|
168 |
"Cidade" => $data['pagador_cidade'],
|
169 |
-
"Estado" => '
|
170 |
"Pais" => 'BRA',
|
171 |
"CEP" => $data['pagador_cep'],
|
172 |
"TelefoneFixo" => $data['pagador_ddd'] . $data['pagador_telefone']
|
166 |
"Complemento" => $data['pagador_complemento'],
|
167 |
"Bairro" => $data['pagador_bairro'],
|
168 |
"Cidade" => $data['pagador_cidade'],
|
169 |
+
"Estado" => $data['pagador_estado'],
|
170 |
"Pais" => 'BRA',
|
171 |
"CEP" => $data['pagador_cep'],
|
172 |
"TelefoneFixo" => $data['pagador_ddd'] . $data['pagador_telefone']
|
app/code/local/O2TI/Onestepcheckout/etc/system.xml
CHANGED
@@ -381,83 +381,7 @@
|
|
381 |
</boxheight>
|
382 |
</fields>
|
383 |
</termcondition>
|
384 |
-
|
385 |
-
<label>Data para envio</label>
|
386 |
-
<frontend_type>text</frontend_type>
|
387 |
-
<sort_order>4</sort_order>
|
388 |
-
<show_in_default>1</show_in_default>
|
389 |
-
<show_in_website>1</show_in_website>
|
390 |
-
<show_in_store>1</show_in_store>
|
391 |
-
<fields>
|
392 |
-
<allow_options translate="label">
|
393 |
-
<label>Habilitar data para envio</label>
|
394 |
-
<frontend_type>select</frontend_type>
|
395 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
396 |
-
<sort_order>1</sort_order>
|
397 |
-
<show_in_default>1</show_in_default>
|
398 |
-
<show_in_website>1</show_in_website>
|
399 |
-
<show_in_store>1</show_in_store>
|
400 |
-
</allow_options>
|
401 |
-
<asa_option translate="label">
|
402 |
-
<label>Habilitar envio o mais rápido possivel</label>
|
403 |
-
<frontend_type>select</frontend_type>
|
404 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
405 |
-
<sort_order>2</sort_order>
|
406 |
-
<show_in_default>1</show_in_default>
|
407 |
-
<show_in_website>1</show_in_website>
|
408 |
-
<show_in_store>1</show_in_store>
|
409 |
-
<comment>Crie opção para que o cliente solicite apenas o envio para o menor período possível</comment>
|
410 |
-
</asa_option>
|
411 |
-
<formatdate translate="label">
|
412 |
-
<label>Formato da data</label>
|
413 |
-
<frontend_type>select</frontend_type>
|
414 |
-
<source_model>onestepcheckout/system_config_source_formatdate</source_model>
|
415 |
-
<sort_order>3</sort_order>
|
416 |
-
<show_in_default>1</show_in_default>
|
417 |
-
<show_in_website>1</show_in_website>
|
418 |
-
<show_in_store>1</show_in_store>
|
419 |
-
</formatdate>
|
420 |
-
<rangeday translate="label">
|
421 |
-
<label>Dias sem Entrega na semana</label>
|
422 |
-
<frontend_type>text</frontend_type>
|
423 |
-
<source_model>onestepcheckout/system_config_source_formatdate</source_model>
|
424 |
-
<sort_order>4</sort_order>
|
425 |
-
<show_in_default>1</show_in_default>
|
426 |
-
<show_in_website>1</show_in_website>
|
427 |
-
<show_in_store>1</show_in_store>
|
428 |
-
<comment>Específique um intervalo de quantas semanas o cliente poderá escolher.</comment>
|
429 |
-
</rangeday>
|
430 |
-
<weekend translate="label">
|
431 |
-
<label>Dias de entrega</label>
|
432 |
-
<frontend_type>multiselect</frontend_type>
|
433 |
-
<source_model>adminhtml/system_config_source_locale_weekdays</source_model>
|
434 |
-
<sort_order>5</sort_order>
|
435 |
-
<show_in_default>1</show_in_default>
|
436 |
-
<show_in_website>1</show_in_website>
|
437 |
-
<show_in_store>1</show_in_store>
|
438 |
-
</weekend>
|
439 |
-
<timerange translate="label">
|
440 |
-
<label>Horário de Entrega</label>
|
441 |
-
<comment></comment>
|
442 |
-
<frontend_type>select</frontend_type>
|
443 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
444 |
-
<sort_order>6</sort_order>
|
445 |
-
<show_in_default>1</show_in_default>
|
446 |
-
<show_in_website>1</show_in_website>
|
447 |
-
<show_in_store>1</show_in_store>
|
448 |
-
</timerange>
|
449 |
-
<addtimerange translate="label">
|
450 |
-
<label></label>
|
451 |
-
<frontend_model>onestepcheckout/adminhtml_onestepcheckout_system_config_form_field_addtimerange</frontend_model>
|
452 |
-
<backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
|
453 |
-
<sort_order>7</sort_order>
|
454 |
-
<show_in_default>1</show_in_default>
|
455 |
-
<show_in_website>1</show_in_website>
|
456 |
-
<show_in_store>1</show_in_store>
|
457 |
-
<comment>Horário no formato internacial 24h (h:m), ex. 17:30</comment>
|
458 |
-
</addtimerange>
|
459 |
-
</fields>
|
460 |
-
</deliverydate>
|
461 |
</groups>
|
462 |
</onestepcheckout>
|
463 |
</sections>
|
381 |
</boxheight>
|
382 |
</fields>
|
383 |
</termcondition>
|
384 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
</groups>
|
386 |
</onestepcheckout>
|
387 |
</sections>
|
app/design/adminhtml/default/default/template/O2TI/moip/info.phtml
CHANGED
@@ -13,11 +13,11 @@ $css_email_img = "position: absolute !important;left: -70px !important;top: -20p
|
|
13 |
<h4>Pago em <?php echo $info['creditcard_parc']; ?> parcelas via:</h4>
|
14 |
</div>
|
15 |
<div class="cartao" style="width:100%">
|
16 |
-
<div class="image" style="width:
|
17 |
-
<?php $imagem = $info['
|
18 |
-
<div class="image" style="padding:5px"><img src="<?php echo $
|
19 |
</div>
|
20 |
-
<div class="dados" style="width:
|
21 |
<label>6 Primeiros dígitos do cartão</label>
|
22 |
<div class="input-text"><strong><?php echo $info['first6'] ?></strong></div>
|
23 |
<label>4 Últimos dígitos do cartão</label>
|
@@ -46,245 +46,3 @@ $css_email_img = "position: absolute !important;left: -70px !important;top: -20p
|
|
46 |
<div class="boleto_line" style="clear:both;width:100%"><input type="text" class="input-text" value="<?php echo $info['url'] ?>" readonly="true" style="width:350px"></div>
|
47 |
</div>
|
48 |
<?php endif ?>
|
49 |
-
|
50 |
-
<?php if(Mage::app()->getRequest()->getModuleName() == "sales"): ?>
|
51 |
-
<?php
|
52 |
-
$api = Mage::getModel('moip/api');
|
53 |
-
$resposta_moip = $info['token'];
|
54 |
-
if (Mage::getSingleton('moip/standard')->getConfigData('ambiente') == "teste") {
|
55 |
-
$url = "https://desenvolvedor.moip.com.br/sandbox/Instrucao.do?token=";
|
56 |
-
$urljs = "https://desenvolvedor.moip.com.br/sandbox/";
|
57 |
-
}
|
58 |
-
else {
|
59 |
-
$url = "https://www.moip.com.br/Instrucao.do?token=";
|
60 |
-
$urljs = "https://www.moip.com.br/";
|
61 |
-
}
|
62 |
-
?>
|
63 |
-
<script type="text/javascript" charset="ISO-8859-1" src="<?php echo $urljs ?>/transparente/MoipWidget-v2.js" onerror="erro_mail('erro caiu o moip widget')" ></script>
|
64 |
-
<div id="MoipWidget" data-token="<?php echo $info['token'] ?>" callback-method-error="erroValidacao" callback-method-success="sucesso"></div>
|
65 |
-
<div class="refaz_pg" style="clear:both;width:100%">
|
66 |
-
<div>
|
67 |
-
<button type="button" title="Finalizar compra" style="background:none repeat scroll 0 0 #337baa;margin:10px;border-radius:3px;padding:10px 5px;width:250px;float:left;text-align:center;color:#ffffff;font-weight:normal;font-size:13px;display:block;text-decoration:none;font-family:Arial,Helvetica,sans-serif;border: none;margin-top: 10px !important;" onclick="jQuery('#showXml').modal('toggle')">
|
68 |
-
Escolher outra forma de pagamento
|
69 |
-
</button>
|
70 |
-
</div>
|
71 |
-
</div>
|
72 |
-
<div class="modal" id="showXml" style="display:none; width:38%; left:52%; min-width:250px;">
|
73 |
-
<div class="modal-header">
|
74 |
-
<button class="close" data-dismiss="modal">x</button><h3>Escolha a nova forma de pagamento.</h3>
|
75 |
-
</div>
|
76 |
-
<div class="modal-body">
|
77 |
-
<h4>Você poderá escolher uma nova forma de pagamento, selecionando os meios disponíveis a baixo:</h4>
|
78 |
-
<div style="display: none;" id="loading-mask">
|
79 |
-
<p id="loading_mask_loader" class="loader"><img alt="Loading..." src="<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/ajax-loader-tr.gif')?>"><br>Realizando pagamento, por favor aguarde...</p>
|
80 |
-
</div>
|
81 |
-
|
82 |
-
<form method="POST" action='<?php echo Mage::getBaseUrl(); ?>moip/index/Novaforma/' id="refaz_pg_forma">
|
83 |
-
<input type="hidden" name="forma_de_pagamento" id="forma_de_pagamento" value="" >
|
84 |
-
<input type="hidden" name="moip_id" value="<?php echo $info['token'] ?>">
|
85 |
-
<input type="hidden" name="order_id" value="<?php echo $info['realorder_id'] ?>">
|
86 |
-
|
87 |
-
|
88 |
-
<div class= "seleciona_meio" style="border-bottom:2px solid #eeeee0;">
|
89 |
-
<ul class="inline input-switcher moip-payment-methods" style="display: inline-flex;">
|
90 |
-
<li data-target="CartaoCredito" class='moip-payment-method-line' style="padding: 10px 15px;background: #EEE;border-radius: 5px 5px 0 0;margin-right: 10px;cursor:pointer;">
|
91 |
-
Cartão de Crédito
|
92 |
-
</li>
|
93 |
-
<li data-target="BoletoBancario" class='moip-payment-method-line' style="padding: 10px 15px;background: #EEE;border-radius: 5px 5px 0 0;margin-right: 10px;cursor:pointer;">
|
94 |
-
Boleto Bancário
|
95 |
-
</li>
|
96 |
-
<li data-target="DebitoBancario" class='moip-payment-method-line' style="padding: 10px 15px;background: #EEE;border-radius: 5px 5px 0 0;margin-right: 10px;cursor:pointer;">
|
97 |
-
Débito Bancário
|
98 |
-
</li>
|
99 |
-
</ul>
|
100 |
-
</div>
|
101 |
-
|
102 |
-
|
103 |
-
<div class="moip-payment-method-content row-fluid" id="DebitoBancario" style="display:none">
|
104 |
-
<h2>Transferência Bancária</h2>
|
105 |
-
<div style="width:100%">É obrigatório ter token do banco para realizar esse processo.</div>
|
106 |
-
<div><h4>Selecione o Banco.</h4></div>
|
107 |
-
<div>
|
108 |
-
<ul>
|
109 |
-
<li><label><input type="radio" name="instituicao" id="instituicao" value="BancodoBrasil" onclick="jQuery('.pagar_trans').show()"> Banco do Brasil</label></li>
|
110 |
-
<li><label><input type="radio" name="instituicao" id="instituicao" value="Bradesco" onclick="jQuery('.pagar_trans').show()"> Bradesco</label></li>
|
111 |
-
<li><label><input type="radio" name="instituicao" id="instituicao" value="Itau" onclick="jQuery('.pagar_trans').show()"> Itaú</label></li>
|
112 |
-
<li><label><input type="radio" name="instituicao" id="instituicao" value="Banrisul" onclick="jQuery('.pagar_trans').show()"> Banrisul</label></li>
|
113 |
-
</ul>
|
114 |
-
|
115 |
-
</div>
|
116 |
-
<div class="pagar_trans" style="display:none;">
|
117 |
-
<button id="sendToMoip2" style="margin-top: 10px;" class="btn-moip buttonmoip" onclick="jQuery('#loading-mask').show();jQuery('#refaz_pg_form').hide('slow');">Pagar Agora</button>
|
118 |
-
</div>
|
119 |
-
</div>
|
120 |
-
|
121 |
-
<div class="moip-payment-method-content row-fluid" id="BoletoBancario" style="display:none">
|
122 |
-
<h2>Boleto Bancário</h2>
|
123 |
-
<div>Pagável até a data do vencimento em qualquer Casa lotérica, via internet-bank ou caixa eletrônico do seu banco.</div>
|
124 |
-
<button id="sendToMoip2" style="margin-top: 10px;" class="btn-moip buttonmoip" onclick="jQuery('#loading-mask').show();jQuery('#refaz_pg_form').hide('slow');">Pagar Agora</button>
|
125 |
-
</div>
|
126 |
-
|
127 |
-
<div class="moip-payment-method-content row-fluid" id="CartaoCredito" style="display:none">
|
128 |
-
<div class="well">
|
129 |
-
<ul class="repay-form">
|
130 |
-
<div class="cartao_dados">
|
131 |
-
<li>
|
132 |
-
<h3>Dados do Cartão</h3>
|
133 |
-
</li>
|
134 |
-
<li>
|
135 |
-
<label>Parcelas:</label>
|
136 |
-
<?php $pgtoArray = $this->getOrder_dados(Mage::registry('client_array')); ?>
|
137 |
-
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($info['realorder_id']); ?>
|
138 |
-
<?php $parcelamento = $api->getParcelamento(number_format($order->getGrand_total(), 2, ".", ".")); $z=0;?>
|
139 |
-
<select id="Parcelas" name="parcelas">
|
140 |
-
<?php foreach ($parcelamento as $k => $v):?>
|
141 |
-
<?php if($z=="0"){ ?>
|
142 |
-
<option value="1">Pagamento à vista.</option>
|
143 |
-
<?php } ?>
|
144 |
-
<option value="<?php echo $k ?>"><?php echo $k . "x R$ " . $v['valor'] . " | Total: R$ " .$v['total']."" ?></option>
|
145 |
-
<?php $z++; endforeach; ?>
|
146 |
-
</select>
|
147 |
-
</li>
|
148 |
-
<li>
|
149 |
-
<label>Instituição:</label>
|
150 |
-
<select id="bandeira" name="bandeira">
|
151 |
-
<option value="VISA">Visa</option>
|
152 |
-
<option value="MASTERCARD">Mastercard</option>
|
153 |
-
<option value="AMERICANEXPRESS">AmericanExpress</option>
|
154 |
-
<option value="HIPERCARD">Hipercard</option>
|
155 |
-
<option value="DINERS">Diners</option>
|
156 |
-
</select>
|
157 |
-
</li>
|
158 |
-
<li>
|
159 |
-
<div>
|
160 |
-
<label>Numero do Cartão:</label>
|
161 |
-
<input type="text" id="Numero" name="Numero" class="input-text" >
|
162 |
-
</div>
|
163 |
-
<div>
|
164 |
-
<label>CVV:</label>
|
165 |
-
<input type="text" id="CodigoSeguranca" class="input-text" name="CodigoSeguranca" size="4">
|
166 |
-
</div>
|
167 |
-
</li>
|
168 |
-
<li>
|
169 |
-
<label>Expiração:</label>
|
170 |
-
<input type="text" id="Expiracao" name="Expiracao_mes" onkeypress="return txtBoxFormat(this, '99', event);" maxlength="2" placeholder="Ex. 10/15" size="2" class="input-text" >
|
171 |
-
<input type="text" id="Expiracao" name="Expiracao_ano" onkeypress="return txtBoxFormat(this, '99', event);" maxlength="2" placeholder="Ex. 10/15" size="2" class="input-text" >
|
172 |
-
</li>
|
173 |
-
<li>
|
174 |
-
<button type="button" id="sendToMoip2" class="btn-moip buttonmoip" style="margin-top: 10px !important;" onclick="jQuery('.cartao_dados').hide();jQuery('.pagador_dados_pessoais').show('slow');">Prosseguir</button>
|
175 |
-
</li>
|
176 |
-
</div>
|
177 |
-
<div class="pagador_dados_pessoais" style="display:none">
|
178 |
-
<li>
|
179 |
-
<h3>Dados do Títular do Cartão</h3>
|
180 |
-
</li>
|
181 |
-
<li>
|
182 |
-
<label>Portador:</label>
|
183 |
-
<input type="text" id="Portador" name="Portador" class="input-text" >
|
184 |
-
</li>
|
185 |
-
<li>
|
186 |
-
<label>CPF:</label>
|
187 |
-
<input type="text" id="CPF" name="CPF" class="input-text" onkeypress="return txtBoxFormat(this, '99999999999', event);" maxlength="11">
|
188 |
-
</li>
|
189 |
-
<li>
|
190 |
-
<label>Data Nascimento:</label>
|
191 |
-
<input type="text" id="DataNascimento" name="DataNascimento" onkeypress="return txtBoxFormat(this, '99/99/9999', event);" maxlength="10" placeholder="Ex. 10/10/1985" class="input-text" ><br>
|
192 |
-
</li>
|
193 |
-
<li>
|
194 |
-
<label>Telefone:</label>
|
195 |
-
<input type="text" id="Telefone" name="Telefone" onkeypress="return txtBoxFormat(this, '(99)9999-9999', event);" placeholder="Ex. (11)9999-9999" maxlength="14" class="input-text" ><br>
|
196 |
-
</li>
|
197 |
-
<li>
|
198 |
-
<a href="#" style="margin-top: 10px !important; float:left" onclick="jQuery('.cartao_dados').show('slow');jQuery('.pagador_dados_pessoais').hide();">← Voltar</a>
|
199 |
-
<button id="sendToMoip2" class="btn-moip buttonmoip" style="margin-top: -30px !important; float:left" onclick="jQuery('#loading-mask').show();jQuery('#refaz_pg_form').hide('slow');">Pagar Agora</button>
|
200 |
-
</li>
|
201 |
-
</div>
|
202 |
-
</ul>
|
203 |
-
</div>
|
204 |
-
</div>
|
205 |
-
</form>
|
206 |
-
<div class="resposta_recebida"></div>
|
207 |
-
</div>
|
208 |
-
</div>
|
209 |
-
<script type="text/javascript">
|
210 |
-
jQuery(document).ready(function() {
|
211 |
-
jQuery('.input-switcher > li').bind({
|
212 |
-
click: function() {
|
213 |
-
jQuery(this).parent().children('li').fadeTo(300, 0.4);
|
214 |
-
jQuery('#checkout-payment-bandeira').hide();
|
215 |
-
jQuery('#checkout-payment-banco').hide();
|
216 |
-
jQuery(this).fadeTo(0, 1);
|
217 |
-
jQuery(this).find('input[type="radio"]').attr('checked', true);
|
218 |
-
}
|
219 |
-
});
|
220 |
-
jQuery('.moip-payment-methods > li').bind({
|
221 |
-
click: function() {
|
222 |
-
jQuery('.moip-payment-method-content').not('#' + jQuery(this).attr('data-target')).slideUp();
|
223 |
-
jQuery('#' + jQuery(this).attr('data-target')).slideDown();
|
224 |
-
jQuery('#forma_de_pagamento').val(jQuery(this).attr('data-target'));
|
225 |
-
}
|
226 |
-
});
|
227 |
-
});
|
228 |
-
|
229 |
-
var sucesso = function(data){
|
230 |
-
console.log("ven"+JSON.stringify(data));
|
231 |
-
|
232 |
-
}
|
233 |
-
var erroValidacao = function(data) {
|
234 |
-
console.log("cer"+JSON.stringify(data));
|
235 |
-
}
|
236 |
-
jQuery("#refaz_pg_forma").submit(function(e){
|
237 |
-
var postData = jQuery(this).serializeArray();
|
238 |
-
var formURL = jQuery(this).attr("action");
|
239 |
-
jQuery.ajax(
|
240 |
-
{
|
241 |
-
url : formURL,
|
242 |
-
type: "POST",
|
243 |
-
data : postData,
|
244 |
-
success:function(data, textStatus, jqXHR)
|
245 |
-
{
|
246 |
-
jQuery("#loading-mask").hide();
|
247 |
-
|
248 |
-
if(jQuery("#forma_de_pagamento").val() == "BoletoBancario"){
|
249 |
-
var settings = {
|
250 |
-
"Forma" : "BoletoBancario"
|
251 |
-
};
|
252 |
-
};
|
253 |
-
if(jQuery("#forma_de_pagamento").val() == "DebitoBancario"){
|
254 |
-
var settings = {
|
255 |
-
"Forma" : "DebitoBancario",
|
256 |
-
"Instituicao": "BancoDoBrasil"
|
257 |
-
};
|
258 |
-
};
|
259 |
-
if(jQuery("#forma_de_pagamento").val() == "CartaoCredito")
|
260 |
-
{
|
261 |
-
var settings =
|
262 |
-
{
|
263 |
-
"Forma": "CartaoCredito",
|
264 |
-
"Instituicao": jQuery("#bandeira").val(),
|
265 |
-
"Parcelas": jQuery("#Parcelas").val(),
|
266 |
-
"CartaoCredito":
|
267 |
-
{
|
268 |
-
"Numero": jQuery("input[name=Numero]").val(),
|
269 |
-
"Expiracao": jQuery("input[name=Expiracao_mes]").val()+'/'+jQuery("input[name=Expiracao_ano]").val(),
|
270 |
-
"CodigoSeguranca": jQuery("input[name=CodigoSeguranca]").val(),
|
271 |
-
"Portador": {
|
272 |
-
"Nome" : jQuery("input[name=Portador]").val(),
|
273 |
-
"DataNascimento": jQuery("input[name=DataNascimento]").val(),
|
274 |
-
"Telefone": jQuery("input[name=Telefone]").val(),
|
275 |
-
"Identidade": jQuery("input[name=CPF]").val()
|
276 |
-
}
|
277 |
-
}
|
278 |
-
}
|
279 |
-
};
|
280 |
-
console.log(settings);
|
281 |
-
MoipWidget(settings);
|
282 |
-
},
|
283 |
-
|
284 |
-
});
|
285 |
-
e.preventDefault();
|
286 |
-
});
|
287 |
-
|
288 |
-
|
289 |
-
</script>
|
290 |
-
<?php endif; ?>
|
13 |
<h4>Pago em <?php echo $info['creditcard_parc']; ?> parcelas via:</h4>
|
14 |
</div>
|
15 |
<div class="cartao" style="width:100%">
|
16 |
+
<div class="image" style="width:30%; float:left;">
|
17 |
+
<?php $imagem = $info['image']; ?>
|
18 |
+
<div class="image" style="padding:5px"><img src="<?php echo $imagem; ?>"></div>
|
19 |
</div>
|
20 |
+
<div class="dados" style="width:70%; float:left">
|
21 |
<label>6 Primeiros dígitos do cartão</label>
|
22 |
<div class="input-text"><strong><?php echo $info['first6'] ?></strong></div>
|
23 |
<label>4 Últimos dígitos do cartão</label>
|
46 |
<div class="boleto_line" style="clear:both;width:100%"><input type="text" class="input-text" value="<?php echo $info['url'] ?>" readonly="true" style="width:350px"></div>
|
47 |
</div>
|
48 |
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/layout/o2ti_moip.xml
CHANGED
@@ -6,31 +6,29 @@
|
|
6 |
<checkout_onepage_index>
|
7 |
<reference name="head">
|
8 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
9 |
-
<action method="addJs"><script>O2TI/
|
10 |
-
<action method="addJs"><script>O2TI/
|
11 |
-
<action method="addJs"><script>O2TI/
|
|
|
12 |
</reference>
|
13 |
</checkout_onepage_index>
|
14 |
<moip_standard_redirect>
|
|
|
15 |
<reference name="head">
|
16 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
17 |
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
18 |
<action method="addJs"><script>O2TI/moip/bootstrap.min.js</script></action>
|
19 |
<action method="addJs"><script>O2TI/moip/bootstrap-modal.js</script></action>
|
20 |
-
<action method="addJs"><script>O2TI/
|
21 |
-
<action method="addJs"><script>O2TI/
|
22 |
<action method="addCss"><stylesheet>O2TI/moip/css/bootstrap.css</stylesheet></action>
|
23 |
-
|
24 |
-
use o <type>skin_js</type> se o js estiver na pasta skin
|
25 |
-
<action method="removeItem"><type>skin_js</type><name>js/jquery.js</name></action>
|
26 |
-
ou use <type>js</type> caso o js da pasta pasta_da_loja/js
|
27 |
-
<action method="removeItem"><type>js</type><name>js/jquery.js</name></action>
|
28 |
-
-->
|
29 |
</reference>
|
30 |
<reference name="root">
|
31 |
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
32 |
</reference>
|
33 |
<reference name="left">
|
|
|
34 |
<block type="O2TI_Moip_Block_Standard_Redirect" name="moip.comum" template="O2TI/moip/redirect.phtml">
|
35 |
</block>
|
36 |
<block type="O2TI_Moip_Block_Standard_Redirect" name="moip.transferencia" template="O2TI/moip/transferencia.phtml">
|
6 |
<checkout_onepage_index>
|
7 |
<reference name="head">
|
8 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
9 |
+
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
10 |
+
<action method="addJs"><script>O2TI/novamascara.js</script></action>
|
11 |
+
<action method="addJs"><script>O2TI/validacao.js</script></action>
|
12 |
+
<action method="addJs"><script>O2TI/moip/checkout.js</script></action>
|
13 |
</reference>
|
14 |
</checkout_onepage_index>
|
15 |
<moip_standard_redirect>
|
16 |
+
|
17 |
<reference name="head">
|
18 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
19 |
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
20 |
<action method="addJs"><script>O2TI/moip/bootstrap.min.js</script></action>
|
21 |
<action method="addJs"><script>O2TI/moip/bootstrap-modal.js</script></action>
|
22 |
+
<action method="addJs"><script>O2TI/novamascara.js</script></action>
|
23 |
+
<action method="addJs"><script>O2TI/validacao.js</script></action>
|
24 |
<action method="addCss"><stylesheet>O2TI/moip/css/bootstrap.css</stylesheet></action>
|
25 |
+
|
|
|
|
|
|
|
|
|
|
|
26 |
</reference>
|
27 |
<reference name="root">
|
28 |
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
29 |
</reference>
|
30 |
<reference name="left">
|
31 |
+
|
32 |
<block type="O2TI_Moip_Block_Standard_Redirect" name="moip.comum" template="O2TI/moip/redirect.phtml">
|
33 |
</block>
|
34 |
<block type="O2TI_Moip_Block_Standard_Redirect" name="moip.transferencia" template="O2TI/moip/transferencia.phtml">
|
app/design/frontend/default/default/layout/o2ti_onestepcheckout.xml
CHANGED
@@ -1,36 +1,15 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<layout version="0.1.0">
|
3 |
<default></default>
|
4 |
-
|
5 |
-
<reference name="head">
|
6 |
-
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
7 |
-
<action method="addJs"><script>O2TI/onestepcheckout/noConflict.js</script></action>
|
8 |
-
<action method="addJs"><script>O2TI/onestepcheckout/novamascara.js</script></action>
|
9 |
-
<action method="addJs"><script>O2TI/onestepcheckout/validacao.js</script></action>
|
10 |
-
</reference>
|
11 |
-
<reference name="customer_form_register">
|
12 |
-
<action method="setTemplate"><template>O2TI/cadastro/persistent/customer/form/register.phtml</template></action>
|
13 |
-
</reference>
|
14 |
-
</customer_account_create>
|
15 |
-
<customer_account_edit>
|
16 |
-
<reference name="head">
|
17 |
-
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
18 |
-
<action method="addJs"><script>O2TI/onestepcheckout/noConflict.js</script></action>
|
19 |
-
<action method="addJs"><script>O2TI/onestepcheckout/novamascara.js</script></action>
|
20 |
-
<action method="addJs"><script>O2TI/onestepcheckout/validacao.js</script></action>
|
21 |
-
</reference>
|
22 |
-
<reference name='customer_edit'>
|
23 |
-
<action method="setTemplate"><template>O2TI/cadastro/customer/form/edit.phtml</template></action>
|
24 |
-
</reference>
|
25 |
-
</customer_account_edit>
|
26 |
<checkout_onepage_index>
|
27 |
<reference name="head">
|
28 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
29 |
-
<action method="addJs"><script>O2TI/
|
30 |
<action method="addJs"><script>O2TI/onestepcheckout/jquery.fancybox-1.3.1.js</script></action>
|
31 |
<action method="addJs"><script>O2TI/onestepcheckout/change-events.js</script></action>
|
32 |
-
<action method="addJs"><script>O2TI/
|
33 |
-
<action method="addJs"><script>O2TI/
|
34 |
<action method="addCss"><stylesheet>O2TI/onestepcheckout/css/onestepcheckout.css</stylesheet></action>
|
35 |
<action method="addCss"><stylesheet>O2TI/onestepcheckout/css/jquery.fancybox-1.3.1.css</stylesheet></action>
|
36 |
|
1 |
<?xml version="1.0"?>
|
2 |
<layout version="0.1.0">
|
3 |
<default></default>
|
4 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
<checkout_onepage_index>
|
6 |
<reference name="head">
|
7 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
8 |
+
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
9 |
<action method="addJs"><script>O2TI/onestepcheckout/jquery.fancybox-1.3.1.js</script></action>
|
10 |
<action method="addJs"><script>O2TI/onestepcheckout/change-events.js</script></action>
|
11 |
+
<action method="addJs"><script>O2TI/novamascara.js</script></action>
|
12 |
+
<action method="addJs"><script>O2TI/validacao.js</script></action>
|
13 |
<action method="addCss"><stylesheet>O2TI/onestepcheckout/css/onestepcheckout.css</stylesheet></action>
|
14 |
<action method="addCss"><stylesheet>O2TI/onestepcheckout/css/jquery.fancybox-1.3.1.css</stylesheet></action>
|
15 |
|
app/design/frontend/default/default/template/O2TI/moip/boleto.phtml
CHANGED
@@ -4,6 +4,7 @@
|
|
4 |
<?php $pgtoArraya = $session->getPgtoarry(); ?>
|
5 |
<?php $pgtoArray = $this->getOrder_dados($client_array);
|
6 |
$customerData = "";
|
|
|
7 |
if(Mage::getSingleton('customer/session')->isLoggedIn()) {
|
8 |
$customerData = Mage::getSingleton('customer/session')->getCustomer();
|
9 |
}
|
@@ -16,6 +17,21 @@ if (Mage::getSingleton('moip/standard')->getConfigData('ambiente') == "teste") {
|
|
16 |
$urljs = "https://www.moip.com.br/";
|
17 |
}
|
18 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
20 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
21 |
|
4 |
<?php $pgtoArraya = $session->getPgtoarry(); ?>
|
5 |
<?php $pgtoArray = $this->getOrder_dados($client_array);
|
6 |
$customerData = "";
|
7 |
+
|
8 |
if(Mage::getSingleton('customer/session')->isLoggedIn()) {
|
9 |
$customerData = Mage::getSingleton('customer/session')->getCustomer();
|
10 |
}
|
17 |
$urljs = "https://www.moip.com.br/";
|
18 |
}
|
19 |
?>
|
20 |
+
<?php if (!Mage::helper('core/cookie')->isUserNotAllowSaveCookie()): ?>
|
21 |
+
<?php $accountId = 'UA-33860171-1' ?>
|
22 |
+
<script type="text/javascript">
|
23 |
+
//<![CDATA[
|
24 |
+
var _gaq = _gaq || [];
|
25 |
+
_gaq.push(['_setAccount', '<?php echo Mage::getStoreConfig("o2tiall/google/idgoogle") ?>']);
|
26 |
+
<?php echo $this->getTrackingMoip($client_array); ?>
|
27 |
+
(function() {
|
28 |
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
29 |
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
30 |
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
31 |
+
})();
|
32 |
+
//]]>
|
33 |
+
</script>
|
34 |
+
<?php endif; ?>
|
35 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
36 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
37 |
|
app/design/frontend/default/default/template/O2TI/moip/cartao.phtml
CHANGED
@@ -16,6 +16,21 @@ if (Mage::getSingleton('moip/standard')->getConfigData('ambiente') == "teste") {
|
|
16 |
$urljs = "https://www.moip.com.br/";
|
17 |
}
|
18 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
20 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
21 |
|
16 |
$urljs = "https://www.moip.com.br/";
|
17 |
}
|
18 |
?>
|
19 |
+
<?php if (!Mage::helper('core/cookie')->isUserNotAllowSaveCookie()): ?>
|
20 |
+
<?php $accountId = 'UA-33860171-1' ?>
|
21 |
+
<script type="text/javascript">
|
22 |
+
//<![CDATA[
|
23 |
+
var _gaq = _gaq || [];
|
24 |
+
_gaq.push(['_setAccount', '<?php echo Mage::getStoreConfig("o2tiall/google/idgoogle") ?>']);
|
25 |
+
<?php echo $this->getTrackingMoip($client_array); ?>
|
26 |
+
(function() {
|
27 |
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
28 |
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
29 |
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
30 |
+
})();
|
31 |
+
//]]>
|
32 |
+
</script>
|
33 |
+
<?php endif; ?>
|
34 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
35 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
36 |
|
app/design/frontend/default/default/template/O2TI/moip/transferencia.phtml
CHANGED
@@ -18,7 +18,21 @@ if (Mage::getSingleton('moip/standard')->getConfigData('ambiente') == "teste") {
|
|
18 |
?>
|
19 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
20 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
<script type="text/javascript" charset="ISO-8859-1" src="<?php echo $urljs ?>/transparente/MoipWidget-v2.js" onerror="erro_mail('erro caiu o moip widget')" ></script>
|
23 |
<div id="MoipWidget" data-token="<?php echo $result_decode['token'] ?>" callback-method-error="erroValidacao" callback-method-success="sucesso"></div>
|
24 |
<!--meta http-equiv='Refresh' content='10;URL=<?php #echo $url_direct ?>' -->
|
18 |
?>
|
19 |
<?php $order = Mage::getModel('sales/order')->loadByIncrementId($pgtoArray['id_transacao']); ?>
|
20 |
<?php $this->getSaveDate($pgtoArray['id_transacao'], $result_decode, $customerData, $pgtoArraya, $client_array); ?>
|
21 |
+
<?php if (!Mage::helper('core/cookie')->isUserNotAllowSaveCookie()): ?>
|
22 |
+
<?php $accountId = 'UA-33860171-1' ?>
|
23 |
+
<script type="text/javascript">
|
24 |
+
//<![CDATA[
|
25 |
+
var _gaq = _gaq || [];
|
26 |
+
_gaq.push(['_setAccount', '<?php echo Mage::getStoreConfig("o2tiall/google/idgoogle") ?>']);
|
27 |
+
<?php echo $this->getTrackingMoip($client_array); ?>
|
28 |
+
(function() {
|
29 |
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
30 |
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
31 |
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
32 |
+
})();
|
33 |
+
//]]>
|
34 |
+
</script>
|
35 |
+
<?php endif; ?>
|
36 |
<script type="text/javascript" charset="ISO-8859-1" src="<?php echo $urljs ?>/transparente/MoipWidget-v2.js" onerror="erro_mail('erro caiu o moip widget')" ></script>
|
37 |
<div id="MoipWidget" data-token="<?php echo $result_decode['token'] ?>" callback-method-error="erroValidacao" callback-method-success="sucesso"></div>
|
38 |
<!--meta http-equiv='Refresh' content='10;URL=<?php #echo $url_direct ?>' -->
|
app/design/frontend/default/default/template/O2TI/moip/vertical_form.phtml
CHANGED
@@ -7,43 +7,8 @@
|
|
7 |
$dn = "";
|
8 |
?>
|
9 |
<script type="text/javascript">
|
10 |
-
fechar = function(){
|
11 |
-
jQuery('.moip-payment-method-content').slideUp();
|
12 |
-
}
|
13 |
-
function setCcType(ccType)
|
14 |
-
{
|
15 |
-
jQuery('#moip_cc_type').val(ccType);
|
16 |
-
}
|
17 |
|
18 |
-
if(Validation) {
|
19 |
-
Validation.creditCartTypes = $H({
|
20 |
-
'VI': [new RegExp('^4[0-9]{12}([0-9]{3})?$'), new RegExp('^[0-9]{3}$'), true],
|
21 |
-
'MC': [new RegExp('^5[1-5][0-9]{14}$'), new RegExp('^[0-9]{3}$'), true],
|
22 |
-
'AE': [new RegExp('^3[47][0-9]{13}$'), new RegExp('^[0-9]{4}$'), true],
|
23 |
-
'DI': [false, new RegExp('^[0-9]{3}$'), true],
|
24 |
-
'OT': [false, new RegExp('^([0-9]{3}|[0-9]{4})?$'), false],
|
25 |
-
'EL': [false, new RegExp('^([0-9]{3})?$'), true],
|
26 |
-
'HI': [new RegExp('^(606282|3841)[0-9]'), new RegExp('^([0-9]{3})?$'), true]
|
27 |
-
});
|
28 |
-
}
|
29 |
-
function countChar(val) {
|
30 |
-
var cvv = val.value.length;
|
31 |
-
if (cvv > 2) {
|
32 |
-
jQuery('#formcli').hide();
|
33 |
-
jQuery("#formcli").slideDown("slow");
|
34 |
-
jQuery('#formcli').css({
|
35 |
-
display: "block"
|
36 |
-
});
|
37 |
-
document.getElementById('credito_portador_nome').value = document.getElementById('billing:firstname').value + ' ' + document.getElementById('billing:lastname').value;
|
38 |
-
document.getElementById('credito_portador_telefone').value = document.getElementById('billing:telephone').value;
|
39 |
-
document.getElementById('credito_portador_cpf').value = document.getElementById('billing:taxvat').value;
|
40 |
-
if (document.getElementById('billing:year').value) {
|
41 |
-
document.getElementById('credito_portador_nascimento').value = document.getElementById('billing:day').value + '/' + document.getElementById('billing:month').value + '/' + document.getElementById('billing:year').value
|
42 |
-
}
|
43 |
-
}
|
44 |
-
};
|
45 |
jQuery(document).ready(function() {
|
46 |
-
jQuery("#cartao_radio").trigger("click");
|
47 |
jQuery('.input-switcher > li').bind({
|
48 |
click: function() {
|
49 |
jQuery(this).parent().children('li').fadeTo(300, 0.4);
|
@@ -59,6 +24,13 @@ jQuery(document).ready(function() {
|
|
59 |
jQuery('#' + jQuery(this).attr('data-target')).slideDown();
|
60 |
}
|
61 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
});
|
63 |
</script>
|
64 |
|
@@ -92,7 +64,7 @@ jQuery(document).ready(function() {
|
|
92 |
<ul class="inline banderias-cartao input-switcher input-switcher-5">
|
93 |
<li>
|
94 |
<img src="<?php echo $this->getVisaImage(); ?>" alt="Visa" border="0" onclick="setCcType('VI');">
|
95 |
-
<input type="radio" name="payment[credito_instituicao]" value="Visa" onclick="setCcType('VI');">
|
96 |
</li>
|
97 |
<li>
|
98 |
<img src="<?php echo $this->getMastercardImage(); ?>" alt="Mastercard" border="0" onclick="setCcType('MC');">
|
@@ -233,7 +205,7 @@ jQuery(document).ready(function() {
|
|
233 |
<ul class="inline input-switcher input-switcher-4">
|
234 |
<li>
|
235 |
<img src="<?php echo $this->getBBImage(); ?>" alt="Banco do Brasil" id="debbb" >
|
236 |
-
<input type="radio" id="debito_instituicao" name="payment[debito_instituicao]" value="BancoDoBrasil">
|
237 |
</li>
|
238 |
<li>
|
239 |
<img src="<?php echo $this->getBradescoImage(); ?>" id="debbradesco" alt="Bradesco">
|
7 |
$dn = "";
|
8 |
?>
|
9 |
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
jQuery(document).ready(function() {
|
|
|
12 |
jQuery('.input-switcher > li').bind({
|
13 |
click: function() {
|
14 |
jQuery(this).parent().children('li').fadeTo(300, 0.4);
|
24 |
jQuery('#' + jQuery(this).attr('data-target')).slideDown();
|
25 |
}
|
26 |
});
|
27 |
+
if(jQuery("input[name=payment\\[method\\]]:checked").val() == "o2ti_moip_standard" && jQuery("input[name=payment\\[forma_pagamento\\]]:checked").val() != ""){
|
28 |
+
jQuery("#cartao_radio").trigger("click");
|
29 |
+
jQuery("#moip-cartao").css({'display':'block'})
|
30 |
+
} else {
|
31 |
+
jQuery("input[name=payment\\[forma_pagamento\\]]:checked").val();
|
32 |
+
jQuery("#moip-cartao").css({'display':'none'});
|
33 |
+
}
|
34 |
});
|
35 |
</script>
|
36 |
|
64 |
<ul class="inline banderias-cartao input-switcher input-switcher-5">
|
65 |
<li>
|
66 |
<img src="<?php echo $this->getVisaImage(); ?>" alt="Visa" border="0" onclick="setCcType('VI');">
|
67 |
+
<input type="radio" name="payment[credito_instituicao]" value="Visa" onclick="setCcType('VI');" checked="checked">
|
68 |
</li>
|
69 |
<li>
|
70 |
<img src="<?php echo $this->getMastercardImage(); ?>" alt="Mastercard" border="0" onclick="setCcType('MC');">
|
205 |
<ul class="inline input-switcher input-switcher-4">
|
206 |
<li>
|
207 |
<img src="<?php echo $this->getBBImage(); ?>" alt="Banco do Brasil" id="debbb" >
|
208 |
+
<input type="radio" id="debito_instituicao" name="payment[debito_instituicao]" value="BancoDoBrasil" checked="checked">
|
209 |
</li>
|
210 |
<li>
|
211 |
<img src="<?php echo $this->getBradescoImage(); ?>" id="debbradesco" alt="Bradesco">
|
app/design/frontend/default/default/template/O2TI/onestepcheckout/daskboard.phtml
CHANGED
@@ -399,65 +399,12 @@ $taxvat = Mage::getSingleton('customer/session')->getCustomer()->getTaxvat();
|
|
399 |
}
|
400 |
jQuery('.btn-checkout').removeAttr('disabled');
|
401 |
jQuery('.btn-checkout').bind("click",function(e){
|
402 |
-
if(jQuery('#onestep_form').find('.o2ti-osc-column-2.span8').size()<1){
|
403 |
-
jQuery('.o2ti-osc-column-2.span8').appendTo('#onestep_form');
|
404 |
-
}
|
405 |
-
if(document.getElementById('billing:telephone').value.length <= 12 ){
|
406 |
-
logic=false;
|
407 |
-
document.getElementById('billing:telephone').value = "";
|
408 |
-
document.getElementById('credito_portador_telefone').value = "";
|
409 |
-
jQuery(document).scrollTop(jQuery('#checkout-payment-method-load').offset().top );
|
410 |
-
}
|
411 |
|
412 |
-
|
413 |
-
if(!jQuery("input[name=payment\\[forma_pagamento\\]]:checked").val()){
|
414 |
-
if(!jQuery('#advice-required-o2ti').length)
|
415 |
-
{
|
416 |
-
logic=false;
|
417 |
-
jQuery('#checkout-payment-o2ti').css({display:"block"});
|
418 |
-
jQuery('#checkout-payment-o2ti').html('Selecione a forma de pagamento.');
|
419 |
-
jQuery(document).scrollTop(jQuery('#checkout-payment-method-load').offset().top );
|
420 |
-
return false;
|
421 |
-
}
|
422 |
-
}
|
423 |
-
else
|
424 |
-
jQuery('#checkout-payment-o2ti').css({display:"none"});
|
425 |
-
jQuery('#advice-required-entry_payment_o2ti').remove();
|
426 |
-
}
|
427 |
-
if(jQuery("input[name=payment\\[forma_pagamento\\]]:checked").val() == "CartaoCredito")
|
428 |
-
{
|
429 |
-
if(!jQuery("input[name=payment\\[credito_instituicao\\]]:checked").val())
|
430 |
-
{
|
431 |
-
if(!jQuery('#advice-required-o2ti').length)
|
432 |
-
{
|
433 |
-
logic=false;
|
434 |
-
jQuery('#checkout-payment-bandeira').css({display:"block"});
|
435 |
-
jQuery('#checkout-payment-bandeira').html('Selecione a bandeira do cartão.');
|
436 |
-
jQuery(document).scrollTop(jQuery('#checkout-payment-method-load').offset().top );
|
437 |
-
return false;
|
438 |
-
}
|
439 |
-
}else{
|
440 |
-
jQuery('#checkout-payment-bandeira').css({display:"none"});
|
441 |
-
jQuery('#advice-required-entry_payment_bandeira').remove();
|
442 |
-
}
|
443 |
-
}
|
444 |
-
if(jQuery("input[name=payment\\[forma_pagamento\\]]:checked").val() == "DebitoBancario"){
|
445 |
-
if(!jQuery("input[name=payment\\[debito_instituicao\\]]:checked").val()){
|
446 |
-
if(!jQuery('#advice-required-o2ti').length){
|
447 |
-
logic=false;
|
448 |
-
jQuery('#checkout-payment-banco').css({display:"block"});
|
449 |
-
jQuery('#checkout-payment-banco').html('Selecione o seu banco.');
|
450 |
-
jQuery(document).scrollTop(jQuery('#checkout-payment-method-load').offset().top );
|
451 |
-
return false;
|
452 |
-
}
|
453 |
-
}else{
|
454 |
-
jQuery('#checkout-payment-banco').css({display:"none"});
|
455 |
-
}
|
456 |
-
}
|
457 |
|
458 |
jQuery('#co-payment-form').show();
|
459 |
var form = new VarienForm('onestep_form');
|
460 |
-
|
461 |
<?php if(Mage::helper('onestepcheckout')->onlyProductDownloadable()):?>
|
462 |
var notshipmethod=1;
|
463 |
<?php else:?>
|
@@ -503,6 +450,7 @@ $taxvat = Mage::getSingleton('customer/session')->getCustomer()->getTaxvat();
|
|
503 |
return false;
|
504 |
}
|
505 |
}
|
|
|
506 |
if(logic){
|
507 |
jQuery('#onestep_form').submit();
|
508 |
jQuery('#loading-mask').show();
|
@@ -517,7 +465,6 @@ $taxvat = Mage::getSingleton('customer/session')->getCustomer()->getTaxvat();
|
|
517 |
jQuery('.validation-advice').delay(5000).fadeOut("slow");
|
518 |
});
|
519 |
|
520 |
-
|
521 |
</script>
|
522 |
|
523 |
<script type="text/javascript">
|
399 |
}
|
400 |
jQuery('.btn-checkout').removeAttr('disabled');
|
401 |
jQuery('.btn-checkout').bind("click",function(e){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
|
403 |
+
var logic= true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
|
405 |
jQuery('#co-payment-form').show();
|
406 |
var form = new VarienForm('onestep_form');
|
407 |
+
|
408 |
<?php if(Mage::helper('onestepcheckout')->onlyProductDownloadable()):?>
|
409 |
var notshipmethod=1;
|
410 |
<?php else:?>
|
450 |
return false;
|
451 |
}
|
452 |
}
|
453 |
+
|
454 |
if(logic){
|
455 |
jQuery('#onestep_form').submit();
|
456 |
jQuery('#loading-mask').show();
|
465 |
jQuery('.validation-advice').delay(5000).fadeOut("slow");
|
466 |
});
|
467 |
|
|
|
468 |
</script>
|
469 |
|
470 |
<script type="text/javascript">
|
js/O2TI/moip/checkout.js
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fechar = function(){
|
2 |
+
jQuery('.moip-payment-method-content').slideUp();
|
3 |
+
}
|
4 |
+
function setCcType(ccType)
|
5 |
+
{
|
6 |
+
jQuery('#moip_cc_type').val(ccType);
|
7 |
+
}
|
8 |
+
|
9 |
+
if(Validation) {
|
10 |
+
Validation.creditCartTypes = $H({
|
11 |
+
'VI': [new RegExp('^4[0-9]{12}([0-9]{3})?$'), new RegExp('^[0-9]{3}$'), true],
|
12 |
+
'MC': [new RegExp('^5[1-5][0-9]{14}$'), new RegExp('^[0-9]{3}$'), true],
|
13 |
+
'AE': [new RegExp('^3[47][0-9]{13}$'), new RegExp('^[0-9]{4}$'), true],
|
14 |
+
'DI': [false, new RegExp('^[0-9]{3}$'), true],
|
15 |
+
'OT': [false, new RegExp('^([0-9]{3}|[0-9]{4})?$'), false],
|
16 |
+
'EL': [false, new RegExp('^([0-9]{3})?$'), true],
|
17 |
+
'HI': [new RegExp('^(606282|3841)[0-9]'), new RegExp('^([0-9]{3})?$'), true]
|
18 |
+
});
|
19 |
+
}
|
20 |
+
function countChar(val) {
|
21 |
+
var cvv = val.value.length;
|
22 |
+
if (cvv > 2) {
|
23 |
+
jQuery('#formcli').hide();
|
24 |
+
jQuery("#formcli").slideDown("slow");
|
25 |
+
jQuery('#formcli').css({
|
26 |
+
display: "block"
|
27 |
+
});
|
28 |
+
document.getElementById('credito_portador_nome').value = document.getElementById('billing:firstname').value + ' ' + document.getElementById('billing:lastname').value;
|
29 |
+
document.getElementById('credito_portador_telefone').value = document.getElementById('billing:telephone').value;
|
30 |
+
document.getElementById('credito_portador_cpf').value = document.getElementById('billing:taxvat').value;
|
31 |
+
if (document.getElementById('billing:year').value) {
|
32 |
+
document.getElementById('credito_portador_nascimento').value = document.getElementById('billing:day').value + '/' + document.getElementById('billing:month').value + '/' + document.getElementById('billing:year').value
|
33 |
+
}
|
34 |
+
}
|
35 |
+
};
|
36 |
+
|
37 |
+
|
js/O2TI/moip/jquery_noconflict.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
jQuery.noConflict();
|
|
js/O2TI/{moip/novamascara.js → novamascara.js}
RENAMED
File without changes
|
js/O2TI/onestepcheckout/noConflict.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
jQuery.noConflict();
|
|
js/O2TI/onestepcheckout/novamascara.js
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
function txtBoxFormat(objeto,sMask,evtKeyPress){var i,nCount,sValue,fldLen,mskLen,bolMask,sCod,nTecla;if(document.all){nTecla=evtKeyPress.keyCode;}else if(document.layers){nTecla=evtKeyPress.which;}else{nTecla=evtKeyPress.which;if(nTecla==8){return true;}}
|
2 |
-
sValue=objeto.value;sValue=sValue.toString().replace("-","");sValue=sValue.toString().replace("-","");sValue=sValue.toString().replace(".","");sValue=sValue.toString().replace(".","");sValue=sValue.toString().replace("/","");sValue=sValue.toString().replace("/","");sValue=sValue.toString().replace(":","");sValue=sValue.toString().replace(":","");sValue=sValue.toString().replace("(","");sValue=sValue.toString().replace("(","");sValue=sValue.toString().replace(")","");sValue=sValue.toString().replace(")","");sValue=sValue.toString().replace(" ","");sValue=sValue.toString().replace(" ","");fldLen=sValue.length;mskLen=sMask.length;i=0;nCount=0;sCod="";mskLen=fldLen;while(i<=mskLen){bolMask=((sMask.charAt(i)=="-")||(sMask.charAt(i)==".")||(sMask.charAt(i)=="/")||(sMask.charAt(i)==":"))
|
3 |
-
bolMask=bolMask||((sMask.charAt(i)=="(")||(sMask.charAt(i)==")")||(sMask.charAt(i)==" "))
|
4 |
-
if(bolMask){sCod+=sMask.charAt(i);mskLen++;}
|
5 |
-
else{sCod+=sValue.charAt(nCount);nCount++;}
|
6 |
-
i++;}
|
7 |
-
objeto.value=sCod;if(nTecla!=8){if(sMask.charAt(i-1)=="9"){return((nTecla>47)&&(nTecla<58));}
|
8 |
-
else{return true;}}
|
9 |
-
else{return true;}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/O2TI/onestepcheckout/validacao.js
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
|
2 |
-
function validaCPF(cpf,pType){var cpf_filtrado="",valor_1=" ",valor_2=" ",ch="";var valido=false;for(i=0;i<cpf.length;i++){ch=cpf.substring(i,i+1);if(ch>="0"&&ch<="9"){cpf_filtrado=cpf_filtrado.toString()+ch.toString()
|
3 |
-
valor_1=valor_2;valor_2=ch;}
|
4 |
-
if((valor_1!=" ")&&(!valido))valido=!(valor_1==valor_2);}
|
5 |
-
if(!valido)cpf_filtrado="12345678912";if(cpf_filtrado.length<11){for(i=1;i<=(11-cpf_filtrado.length);i++){cpf_filtrado="0"+cpf_filtrado;}}
|
6 |
-
if(pType<=1){if((cpf_filtrado.substring(9,11)==checkCPF(cpf_filtrado.substring(0,9)))&&(cpf_filtrado.substring(11,12)=="")){return true;}}
|
7 |
-
if((pType==2)||(pType==0)){if(cpf_filtrado.length>=14){if(cpf_filtrado.substring(12,14)==checkCNPJ(cpf_filtrado.substring(0,12))){return true;}}}
|
8 |
-
return false;}
|
9 |
-
function checkCNPJ(vCNPJ){var mControle="";var aTabCNPJ=new Array(5,4,3,2,9,8,7,6,5,4,3,2);for(i=1;i<=2;i++){mSoma=0;for(j=0;j<vCNPJ.length;j++)
|
10 |
-
mSoma=mSoma+(vCNPJ.substring(j,j+1)*aTabCNPJ[j]);if(i==2)mSoma=mSoma+(2*mDigito);mDigito=(mSoma*10)%11;if(mDigito==10)mDigito=0;mControle1=mControle;mControle=mDigito;aTabCNPJ=new Array(6,5,4,3,2,9,8,7,6,5,4,3);}
|
11 |
-
return((mControle1*10)+mControle);}
|
12 |
-
function checkCPF(vCPF){var mControle=""
|
13 |
-
var mContIni=2,mContFim=10,mDigito=0;for(j=1;j<=2;j++){mSoma=0;for(i=mContIni;i<=mContFim;i++)
|
14 |
-
mSoma=mSoma+(vCPF.substring((i-j-1),(i-j))*(mContFim+1+j-i));if(j==2)mSoma=mSoma+(2*mDigito);mDigito=(mSoma*10)%11;if(mDigito==10)mDigito=0;mControle1=mControle;mControle=mDigito;mContIni=3;mContFim=11;}
|
15 |
-
return((mControle1*10)+mControle);}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/O2TI/{moip/validacao.js → validacao.js}
RENAMED
File without changes
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>o2ti_moip</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://o2ti.com/licensa_checkout_moip.txt">Free to use with MoIP</license>
|
7 |
<channel>community</channel>
|
@@ -31,12 +31,12 @@ Repayment, if you customer input wrong date he can try repaying it without have
|
|
31 |
Multi store split rates
|
32 |
Store terms and conditions (Mandatory in all stores following the federal law (http://legislacao.planalto.gov.br/legisla/legislacao.nsf/Viw_Identificacao/DEC%207.962-2013?OpenDocument) Nº 7.962, DE 15 DE MARÇO DE 2013</a>)
|
33 |
</ul></description>
|
34 |
-
<notes>
|
35 |
-
|
36 |
<authors><author><name>O2TI</name><user>o2ti</user><email>contato@o2ti.com</email></author></authors>
|
37 |
-
<date>2014-03-
|
38 |
-
<time>
|
39 |
-
<contents><target name="magelocal"><dir name="O2TI"><dir name="All"><dir name="Helper"><file name="Data.php" hash="5cfce5f56526da7a17ac2e402b39dd6e"/></dir><dir name="etc"><file name="config.xml" hash="b4343acf6c3f25bb750a287f0b4fa7fc"/><file name="system.xml" hash="9bad1e5078f470994567ce7a68d71688"/></dir></dir><dir name="Moip"><dir name="Block"><dir name="Adminhtml"><dir name="moip"><dir name="Info"><file name="Customermessages.php" hash="bf0e3f76f8ab4dde138a4125fe2fb07c"/><file name="Info.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir><file name="Info.php" hash="3284336179df5048bbbf44b59ea80398"/><dir name="Standard"><file name="Form.php" hash="f93521922122f4d4d5f829a67c0754c2"/><file name="Info.php" hash="a1826c09d72b4310573cae391b8a0f06"/><file name="Novaforma.php" hash="9dfbce5025124bd7e80f7ac23386aa1a"/><file name="Redirect.php" hash="80cbf0f6501a36447c7afa67edb5cb0f"/></dir></dir><dir name="Helper"><file name="Data.php" hash="36af3c64c424820d5e6124528959d296"/></dir><dir name="Model"><file name="Api.php" hash="ed388cc91d40b8b13b9dd454a3035d4f"/><dir name="Mysql4"><file name="Collection.php" hash="9e0195a71bb5a5cd959992a6cec97667"/><file name="Write.php" hash="056d78bdbbb7a9e466b62d78015a8ed5"/></dir><file name="Observer.php" hash="80db718dbfb7e493ad235e3bdf4d6baf"/><file name="Orders.php" hash="a6023047810e0652e9e6248d67704b44"/><dir name="Source"><file name="Ambiente.php" hash="439a9f70669af322f1de30937551a1f0"/><file name="FormasPagamento.php" hash="bfa5931fe39fc22841acc789e71e6e92"/><file name="Layout.php" hash="4cc1e4fb27e773ce93a1c6b9bc571158"/></dir><file name="Standard.php" hash="4404310e45f06ab588e463baf82bd192"/><file name="Write.php" hash="ac1d3e9ff033480cab6ea20af271fa91"/><file name=".ftpquota" hash="bd9db78914b33cca442f35848cc680b5"/></dir><dir name="controllers"><file name="IndexController.php" hash="1c46afa51975fee2e626df503cfc29c9"/><file name="StandardController.php" hash="41cda2a2e7f16fdd1929863ee2040bb2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75bde86c187ceb24042233abde0f88b0"/><file name="config.xml" hash="3e921887d5844a4b5602db406b476ee4"/><file name="system.xml" hash="abf7ba5636a5c869d7782e1177e78839"/></dir><dir name="sql"><dir name="moip_setup"><file name="mysql4-install-0.1.0.php" hash="bff338f70822b4af170073029558b511"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="e767051db0711586184d20abbdebcbca"/><file name="mysql4-upgrade-0.1.0-0.2.1.php" hash="441725100d074d7d212bae4bc07db841"/><file name="mysql4-upgrade-0.2.1-0.2.2.php" hash="7e22a5f81d536e1b024e07d60df808d7"/><file name="mysql4-upgrade-0.2.1-0.2.3.php" hash="b6a1c02303eb5be5ac7c2c9bee962bb0"/><file name="mysql4-upgrade-0.2.1-0.2.4.php" hash="39985ee007790d939be31c8339c570fe"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Renderer"><dir name="Config"><file name="Createfield.php" hash="bca92a144c0564105091fb78ec75a235"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Edit"><file name="Form.php" hash="011556489a4e2e987d622bbc193ca5db"/><dir name="Tab"><file name="Form.php" hash="786a5a8d580250f8ab5c9def49f197c4"/></dir><file name="Tabs.php" hash="3e49037ed0f2ba7d930e7675398a6fd6"/></dir><file name="Edit.php" hash="b4a2a6c99cea16750408cb5c89c97ad8"/><file name="Grid.php" hash="8aa5742a2357b1c632ef26ce2a71e217"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="e23140dfc8b567ba7d957afeabee6643"/><dir name="View"><dir name="Tab"><dir name="Info"><file name="Customermessages.php" hash="bf0e3f76f8ab4dde138a4125fe2fb07c"/><file name="Deliverydate.php" hash="64ea9d43321c8b51d74621ee90916553"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Addtimerange.php" hash="08419845203bd4dd3421cdcab5cf241d"/></dir></dir></dir></dir></dir><file name="Onestepcheckout.php" hash="d0253394f7c3515fcc4ba81f34f192d4"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Billing"><file name="Sortbilling.php" hash="c92c36496e94fd9dc6da3aa8e53dda86"/></dir><file name="Billing.php" hash="ef4f0f010d7e288c6664002060fa5b8a"/><dir name="Review"><file name="Options.php" hash="67b005f43191b0be294d4ecf50c37485"/></dir><dir name="Shipping"><file name="Sortshipping.php" hash="9af5fa1281bf34c37e4c92fb40a4873c"/></dir><file name="Shipping.php" hash="a56afd3502132baab34c4a9419aa7e3c"/><dir name="Shippingmethod"><file name="Deliverydate.php" hash="36ba92c13f59f21c33902ea1146d6cdc"/></dir></dir><file name="Top.php" hash="70e323dbbb57a29579c13412a8a2443f"/></dir><file name="Onestepcheckout.php" hash="e8b954f14acebf579bb0910813e899e4"/><dir name="Sales"><dir name="Info"><file name="Customermessages.php" hash="6666cedaeb9597e0c5f90cf7cc2934ae"/><file name="Deliverydate.php" hash="225859a718283767ca44b1ddccfd4bfb"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fb1897f58ca16ce27184dc0790f0ecf2"/></dir><dir name="Model"><dir name="Customer"><file name="Customer.php" hash="b1b26b8e170bd4ed90b27fb9fcea8481"/></dir><dir name="Entity"><file name="Tipopessoa.php" hash="af14c8d054fe25c7f8cef5f89fcb65da"/></dir><dir name="Mysql4"><dir name="Onestepcheckout"><file name="Collection.php" hash="13781c0c51fcde3c6afc4f31054a6e03"/></dir><file name="Onestepcheckout.php" hash="5777de55ec60a045e86dc9de10f768bd"/></dir><file name="Observer.php" hash="75aeac65c1e5ffa22465b3a1d9c754c7"/><file name="Onestepcheckout.php" hash="3630794e4b1fda8229b82826e49a702f"/><dir name="Sales"><dir name="Quote"><file name="Address.php" hash="09cba85a351b58f16b4daba5be0d5595"/></dir></dir><dir name="Shipping"><file name="Allowedmethods.php" hash="801e98156ee12fd5fa08f30c37b64086"/></dir><file name="Status.php" hash="3e1d737e4f8cef4b6a591240efdafd83"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Checkuncheck.php" hash="a232182e727d089f1a730d1e0bb05996"/><file name="Disablefield.php" hash="d5a2192f21d68175ed7375f3a6e7f85a"/><file name="Formatdate.php" hash="7e3eeae0c5a8ebba85ed501ef513b192"/><file name="Optionaddfield.php" hash="3b9cf9f6a67931b7d56c21c9e8cb48b3"/><file name="Optionhidefield.php" hash="847e6415e5d037ae3b3572e1df28f347"/><file name="Pagelayout.php" hash="676dd09a7aad20c0e3cfdb74e9f7f87f"/><dir name="Payment"><file name="Allowedmethods.php" hash="ea276b37bfdf6bcdbc302a76df966523"/></dir><dir name="Shipping"><file name="Allowedmethods.php" hash="801e98156ee12fd5fa08f30c37b64086"/></dir><file name="Subscribenewletter.php" hash="48dd4e572839e532e5321854bdd07750"/><dir name="form"><file name="Createfield.php" hash="6cc825f91bc3f787b7a84e5369422f39"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="OnestepcheckoutController.php" hash="260a95696953ed372ed3d22ab52e7c85"/></dir><file name="IndexController.php" hash="b27320c1411d103bfa2616f4825de62b"/><file name="TestController.php" hash="b7814c4a88338b9e031f26274bd7d07a"/></dir><dir name="etc"><file name="config.xml" hash="a8cd520ee0f0b93c00a01d95951da4fa"/><file name="system.xml" hash="61d85ec1a6ace0e8f465ad6069c5b6c7"/></dir><dir name="sql"><dir name="onestepcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="0bcce57d95b0c63e8efb86faad1d798c"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="6d20a03343747545eb10c276631114c8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="o2ti_moip.xml" hash="8b83c3965f776ae872077ea9523361a2"/><file name="o2ti_onestepcheckout.xml" hash="98ea87bd4113f491aade48e87c3fde46"/></dir><dir name="template"><dir name="O2TI"><dir name="cadastro"><dir name="customer"><dir name="form"><file name="edit.phtml" hash="1cdb3179dd883809bd7357409ca0a5d0"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="5fc8ba027dfb92482c1a85d88e211cda"/></dir></dir><dir name="customer"><dir name="form"><file name="register.phtml" hash="08b5b692abfce0e689d243c3478de77e"/></dir></dir></dir></dir><dir name="moip"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="boleto.phtml" hash="2e962f38695a7c5b3b405adf2d1af22f"/><file name="cartao.phtml" hash="21e081eade405c0ead973f028cb4e072"/><file name="emptyupdate.phtml" hash="8625e958f0e2dd1138721b8518c8069a"/><file name="form.phtml" hash="97159f0fb40753ded7c032dfba582762"/><file name="horizontal_form.phtml" hash="41ddf8a11071c36e026fd989ca884178"/><file name="info.phtml" hash="13a80155eccc99e762b57c14a6634815"/><file name="layout_boleto.phtml" hash="6a609b4bc4bbbb610f151266983c06e1"/><file name="redirect.phtml" hash="1d302d419b7855d702b5f04078062024"/><file name="refaz.phtml" hash="61375f1a1f052fa29100cae10623fd85"/><file name="transferencia.phtml" hash="85b6ed7d8fba7a3438799854c8b013a7"/><file name="vertical_form.phtml" hash="926d44a6c8969bfd105ed0020e177a32"/></dir><dir name="onestepcheckout"><dir name="daskboard"><dir name="onepage"><file name="agreements.phtml" hash="5b762aa76287b160fcbec8fed8b789e8"/><dir name="billing"><file name="billing_form.phtml" hash="908f6689451953e64b295da644181255"/></dir><file name="billing.phtml" hash="3ace016f656dd99a2f18b35ec13740a5"/><file name="correio.phtml" hash="461b88fcbf6adffc4f23c5905932bafa"/><file name="coupon.phtml" hash="7e3ffcc7e51d78c7607d91bc40ed68db"/><file name="forgotpassword.phtml" hash="2fb80e3ec1a8151dde497743b149c6e9"/><file name="local.xml" hash="08c7ce351c502056fb9ee3a14a9b065a"/><file name="login.phtml" hash="85198c4e290aec3eaf72057cf04d5ca8"/><dir name="payment"><file name="methods.phtml" hash="235eecfb6272e525a70cab79785852e2"/></dir><file name="payment.phtml" hash="3501af6f3b4c108f11bc2bc6d58a9d87"/><dir name="review"><file name="button.phtml" hash="4d5c7c5a2d70f85ec324e79c7e81946b"/><file name="info.phtml" hash="68556313d6d0943c153d69ebd00c8c4b"/><file name="item.phtml" hash="af2406220da6cd44940a672e2771f902"/><dir name="options"><file name="additional.phtml" hash="724b44c70421d206a77f72c2c151cf40"/></dir><file name="options.phtml" hash="c0281a5dc15905296ac8e93a9d13071b"/><file name="totals.phtml" hash="6e857d144768ed8faa0be977b547b32f"/></dir><file name="review.phtml" hash="763347e2b03553d1bf791b3c6df093a3"/><dir name="shipping"><file name="shipping_form.phtml" hash="87bf26552fb0c331c012a2b40c7ce059"/></dir><file name="shipping.phtml" hash="69f97ed0e0eb2e391b1e761bb8b1ffc7"/><dir name="shipping_method"><file name="available.phtml" hash="f0eb7caf698a2dddf1895b5211167467"/></dir><file name="shipping_method.phtml" hash="58c56da9e30df17c997e08e20e32a8ee"/></dir></dir><file name="daskboard.phtml" hash="840bb5f0838b3c039575db1cbeb6359d"/><file name="emptyupdate.phtml" hash="7bf34446254428a5c42740731127b435"/><file name="onepage.phtml" hash="149f7077a5a959968afc0da9a0d952db"/><dir name="sales"><dir name="order"><dir name="info"><file name="customermessages.phtml" hash="1d783fb503426ca094f02525dd1a827b"/><file name="customermessages.phtml~" hash="aa6199bb564edbf6d950fa154b624c02"/><file name="deliverydate.phtml" hash="24d4d3fafafca91bb44b2159695c24bc"/><file name="deliverydate.phtml~" hash="75709e72398a0df41305dee259dc3de2"/></dir><file name="info.phtml" hash="a5b6b9223ec3d5da923e04f8becc84f3"/><dir name="view"><dir name="tab"><dir name="info"><file name="customermessages.phtml" hash="7de74c4598eceef2d17215585252f740"/><file name="deliverydate.phtml" hash="6e1260a32a1f6801ac185ef38a33114c"/></dir><file name="info.phtml" hash="57f4718dbfaa448976954368c1932b2b"/></dir></dir></dir></dir></dir></dir><dir name="customer"><dir><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="O2TI"><dir name="moip"><file name="form.phtml" hash="e381151a9b66f0fdc6cd74d019cefb5e"/><file name="info.phtml" hash="c8d72ab25c1a9db9ac282b19fcd81711"/><file name="redirect.phtml" hash="a928915ad38266f0ca462a6e434cbb77"/></dir><dir name="onestepcheckout"><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><dir name="info"><file name="Customermessages.phtml" hash="bfaea7d5c4300ae8c73c31f3472c5a14"/><file name="Deliverydate.phtml" hash="b5040d3cb30cc31c0c63bfaa81d3c7ac"/></dir><file name="info.phtml" hash="1b6b38d40668d878487f1710a28c1e69"/></dir></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="view"><file name="info.phtml" hash="c6aa8255f5c494857c557a21a59e3367"/></dir></dir></dir></dir></dir><dir name="layout"><file name="o2ti_onestepcheckout.xml" hash="b601985811c14292e18b3e242ac6cc93"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="O2TI_All.xml" hash="0112972a847c93755903dd13239eae1f"/><file name="O2TI_Moip.xml" hash="e2cef22a0e5c667be681851c03dbffd4"/><file name="O2TI_Onestepcheckout.xml" hash="dbcbe66be4612fd2942b6f6847b834c9"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="O2TI_Onestepcheckout.csv" hash="4bff2b6a4c9e13f8d9ea2a287c10c85f"/><dir name="template"><dir name="email"><file name="statusmail_cancelado_o2ti.html" hash="867805dc1d9ecd61f96e1134cdacecf1"/><file name="statusmail_cancelado_o2ti.html~" hash="cb69a0a0e730655677332354bf3dd4a2"/></dir></dir></dir><dir name="pt_BR"><file name="O2TI_Onestepcheckout.csv" hash="4bff2b6a4c9e13f8d9ea2a287c10c85f"/><dir name="template"><dir name="email"><file name="statusmail_cancelado_o2ti.html" hash="867805dc1d9ecd61f96e1134cdacecf1"/><file name="statusmail_cancelado_o2ti.html~" hash="cb69a0a0e730655677332354bf3dd4a2"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="39f61bb34cd4c8ae95a771d2593ccfc3"/><file name="formulario.css" hash="dba3b96839a8e49fd4dff529ded7a2db"/><file name="formulario_horizontal.css" hash="3ebe4fefb3bdcea345187d043f71e843"/><file name="prettify.css" hash="ecd4a5d6c0cbee10b168f6aa000c64ea"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/><file name="ajax-loader.gif" hash="57ca1a2085d82f0574e3ef740b9a5ead"/><dir name="azul"><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/></dir><file name="bank-icon.png" hash="3f73473ce94841328abffa85fe314f3e"/><file name="bank-title.png" hash="3d33028c41f80b1042ef5500ea05c0d1"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto-icon.png" hash="c4560588cb6e12ca7756788648493ad3"/><file name="boleto.png" hash="fe1b591868a937c40e1a095b1313e3ed"/><dir name="branco"><file name="ababoleto.png" hash="f3baeeaf41a6528905b97d825ac67cf7"/><file name="abacartao.png" hash="684d8a48644f55f2c3504da1f51a350b"/><file name="abatransf.png" hash="ea6f42607620ea8f8dca34c1fc98b42b"/><file name="e-sedex.gif" hash="9d0af24408b3798ab687094ab9b76199"/><file name="e-sedex.png" hash="19c04d68032987d594c4da51e3b66094"/><file name="pac.gif" hash="fc1373622266269e8b0986b637e93851"/><file name="pac.png" hash="17aaff70f9924a8e37166429ceae549e"/><file name="sedex.gif" hash="9b6771f2d93f8f73dbbc8f5584a7f580"/><file name="sedex.png" hash="15e2831cad72756b9a9bf99a6e2af5e5"/></dir><file name="cc-title.png" hash="f3064bbd55a468c5bb717762e93a8a3b"/><file name="codigo-seguranca.png" hash="b1cdecab044511593083ff18033d4e4f"/><file name="flatrate_flatrate.gif" hash="a27796835310fe5e57ed11b5792d5530"/><file name="freeshipping_freeshipping.gif" hash="80af8e1da4c9cf03b1856f47bf7e27a4"/><file name="info.png" hash="051e3f3601ab034ba27615e42dd5cfdf"/><file name="logomoip.png" hash="0f09942428d649b8aa6b8999f0c60c0b"/><file name="logomoipck.png" hash="684da020f45d07cbee27cc231920d72a"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipbanner2.png" hash="1c24f42b0cbb05f00ea779d3a719ebe1"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="pedroteixeira_correios_40010.gif" hash="e260acafdeaf0f493350cfa5c34b8be1"/><file name="pedroteixeira_correios_40096.gif" hash="9d0af24408b3798ab687094ab9b76199"/><file name="pedroteixeira_correios_41068.gif" hash="fc1373622266269e8b0986b637e93851"/><file name="pedroteixeira_correios_41106.gif" hash="dcb56e6f42c1730736b44363d7c01e11"/><file name="pedroteixeira_correios_81019.gif" hash="9b6771f2d93f8f73dbbc8f5584a7f580"/><dir name="preto"><file name="ababoleto.png" hash="a728ac886e7e57744e62bba2c7b0b969"/><file name="abacartao.png" hash="50b6103cb5b7e51a27f3c26eaa7411d0"/><file name="abatransf.png" hash="61eec388356aea3230fc5d811ef996ea"/></dir><file name="printer.png" hash="f4bfc0849dceba778a6e7f252b7a3b9c"/><dir name="verde"><file name="ababoleto.png" hash="3c3e047acb513328ebdfd6bfc9c339fa"/><file name="abacartao.png" hash="809d7e21263b3474d1685087a91ca18a"/><file name="abatransf.png" hash="0e3e6bdba002a69be78e126f3e7e775f"/></dir><dir name="vermelho"><file name="ababoleto.png" hash="0d84f05b75c8e964122c4f087268bd1c"/><file name="abacartao.png" hash="63b85e98d5b77c6a373bc351080e60f4"/><file name="abatransf.png" hash="0bef9fec6108a914ebc108f3c600c013"/></dir><file name="warning.png" hash="3fbeef48124ccb146e082a9d20977b3e"/></dir></dir><dir name="onestepcheckout"><dir name="css"><file name="960grid_onestepcheckout.css" hash="0c8bb8b5a5519baf105c81be27fb8213"/><dir name="images"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_overlay.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="f6ccaf1eda8a79a2bd44643e5a346990"/><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_000_500x100.png" hash="5038a7d5d5bc3c3a565c585079798dca"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="5038a7d5d5bc3c3a565c585079798dca"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="ff1768bb6731566603303d106e298bec"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery.fancybox-1.3.1.css" hash="cc35aa3ea29cb379c994b32050f313b6"/><file name="onestepcheckout.css" hash="776267da336ae7dabe485db3189bfb95"/></dir><dir name="images"><file name="01.png" hash="89fcfa0fa3fe73b65ca2420269c26158"/><file name="02.png" hash="dab59c7515b3366465a4dd57d2d9deb2"/><file name="03.png" hash="dcaf4232529a8f9ac304db7553397450"/><file name="04.png" hash="68ae3a414c70c12f340e7c801d854c53"/><file name="05.png" hash="6e8fe636f0593ed3cf00d140e68d2308"/><file name="2_clock.png" hash="bb35645e06d8687f818a583202ad1615"/><file name="ajax-loader-tr.gif" hash="7a46575a4d543082fd6174c593aa762a"/><file name="bkg-giftmessage.png" hash="e0dc9f84c687af088bcc04e3ea200e0b"/><file name="bkg-step-review.png" hash="589914598419e9625c9358df8f68d49c"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="clock.gif" hash="c6d5badd40d31d332470c32a03d2e98c"/><file name="clock.png" hash="73f0648c150bde4ef647db7e9c14ca3e"/><file name="demo-large_03.png" hash="86628bc4358a1c1f655534d4ae15be45"/><file name="demo-large_04.png" hash="0d5f289d2bf808165be000b318a50591"/><file name="demo-large_05.png" hash="5fd1386a147ea4768553c3990d9db804"/><file name="demo-large_051.png" hash="452556661a99a8fb20c6d507ce9506f0"/><file name="demo-large_06.png" hash="247e5412b0e70bf164a428374b15a82d"/><file name="demo-large_07.png" hash="9deac604cfb692b2e17f0f53c3aebbf4"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_overlay.png" hash="7a46575a4d543082fd6174c593aa762a"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="line-gradient.gif" hash="bef9df2d426124dbe3d496407219190b"/><file name="loja_segura.jpg" hash="5e65fd40952db665746dc485d67fdf35"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="1899fb29f3f5bdeeaecd6d16485614e6"/><file name="formulario.css" hash="54920765fd12d894d8db2fbcdb3e62d5"/><file name="prettify.css" hash="a5ec3900f58a1827c96f8f103dc51ee6"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ababoleto.png" hash="f99320f749bda4f07e6bc9b43d4d98ad"/><file name="abacartao.png" hash="b9a2891519c51bb19ac1647dd5640be3"/><file name="abatransf.png" hash="86de71f37be51f0f19838c8952dd34b5"/><file name="ajax-loader.gif" hash="57ca1a2085d82f0574e3ef740b9a5ead"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto.png" hash="fe1b591868a937c40e1a095b1313e3ed"/><file name="codigo-seguranca.png" hash="03f97c4205ab539ba49ef83017e8ec94"/><file name="flatrate_flatrate.gif" hash="a27796835310fe5e57ed11b5792d5530"/><file name="freeshipping_freeshipping.gif" hash="80af8e1da4c9cf03b1856f47bf7e27a4"/><file name="info.png" hash="051e3f3601ab034ba27615e42dd5cfdf"/><file name="logomoip.png" hash="0f09942428d649b8aa6b8999f0c60c0b"/><file name="logomoipck.png" hash="684da020f45d07cbee27cc231920d72a"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="pedroteixeira_correios_40010.gif" hash="3defbbdc7b3d5ca86d76643260182320"/><file name="pedroteixeira_correios_40096.gif" hash="33cd0845f40648cf0584b13fa65c942a"/><file name="pedroteixeira_correios_41068.gif" hash="f317b7dff693b6598c78829c1592b2b7"/><file name="pedroteixeira_correios_41106.gif" hash="f317b7dff693b6598c78829c1592b2b7"/><file name="pedroteixeira_correios_81019.gif" hash="3defbbdc7b3d5ca86d76643260182320"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="O2TI"><dir name="all"><file name="logo.png" hash="c08692c7e53617ad2a6d5f1449d04e96"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="O2TI"><file name="jquery.js" hash="f8e2833ce2f57ec673b178be7eefbd82"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><dir name="moip"><file name="bootstrap-modal.js" hash="3a3af727bfc923a064aad1b02681ffce"/><file name="bootstrap.min.js" hash="5eb1cb055ddcf2f7b2b662f73f56cf1f"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><file name="novamascara.js" hash="b9e977ef39649ce38245bb62a855551b"/><file name="validacao.js" hash="73cb3aaf10be38fda611e8cff9abd550"/></dir><dir name="onestepcheckout"><file name="billing.js" hash="9f72ed92f8f51401ebc2fe98395c6af0"/><file name="change-events.js" hash="5f2255559e09fc56f24c72acd80e70b7"/><file name="jquery.fancybox-1.3.1.js" hash="9a060de18420a5bbe26cfa42b8470323"/><file name="noConflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><file name="novamascara.js" hash="b9e977ef39649ce38245bb62a855551b"/><file name="shipping.js" hash="d9045d07a8adddeaddf25a757e86cf44"/><file name="validacao.js" hash="73cb3aaf10be38fda611e8cff9abd550"/></dir></dir></dir><dir name="."><file name="MOIP_README.md" hash="4dfe78832a2ea8f2f065cd150c846658"/><file name="MOIP_SQL_MANUAL_INSTALATION.txt" hash="57eca9f3b60792f0e4925ff14b8eba0e"/></dir></target></contents>
|
40 |
<compatible/>
|
41 |
<dependencies><required><php><min>4.0.0</min><max>5.5.5</max></php><extension><name>openssl</name><min>1</min><max>1</max></extension><extension><name>PDO</name><min>1</min><max>1</max></extension><extension><name>mcrypt</name><min>1</min><max>1</max></extension></required></dependencies>
|
42 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>o2ti_moip</name>
|
4 |
+
<version>1.1.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://o2ti.com/licensa_checkout_moip.txt">Free to use with MoIP</license>
|
7 |
<channel>community</channel>
|
31 |
Multi store split rates
|
32 |
Store terms and conditions (Mandatory in all stores following the federal law (http://legislacao.planalto.gov.br/legisla/legislacao.nsf/Viw_Identificacao/DEC%207.962-2013?OpenDocument) Nº 7.962, DE 15 DE MARÇO DE 2013</a>)
|
33 |
</ul></description>
|
34 |
+
<notes>Alteração para o funcionamento do módulo MoIP para funcionamento em qualquer Módulo de checkout.
|
35 |
+
</notes>
|
36 |
<authors><author><name>O2TI</name><user>o2ti</user><email>contato@o2ti.com</email></author></authors>
|
37 |
+
<date>2014-03-20</date>
|
38 |
+
<time>20:12:23</time>
|
39 |
+
<contents><target name="magelocal"><dir name="O2TI"><dir name="All"><dir name="Helper"><file name="Data.php" hash="5cfce5f56526da7a17ac2e402b39dd6e"/></dir><dir name="etc"><file name="config.xml" hash="b4343acf6c3f25bb750a287f0b4fa7fc"/><file name="system.xml" hash="9bad1e5078f470994567ce7a68d71688"/></dir></dir><dir name="Moip"><dir name="Block"><dir name="Adminhtml"><dir name="moip"><dir name="Info"><file name="Customermessages.php" hash="bf0e3f76f8ab4dde138a4125fe2fb07c"/><file name="Info.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir><file name="Info.php" hash="3284336179df5048bbbf44b59ea80398"/><dir name="Standard"><file name="Form.php" hash="f93521922122f4d4d5f829a67c0754c2"/><file name="Info.php" hash="a1826c09d72b4310573cae391b8a0f06"/><file name="Novaforma.php" hash="9dfbce5025124bd7e80f7ac23386aa1a"/><file name="Redirect.php" hash="35f4c74dd1c6669dde8be302ae17d4fb"/></dir></dir><dir name="Helper"><file name="Data.php" hash="36af3c64c424820d5e6124528959d296"/></dir><dir name="Model"><file name="Api.php" hash="24d554773ef0cb0264075995bacd8fba"/><dir name="Mysql4"><file name="Collection.php" hash="9e0195a71bb5a5cd959992a6cec97667"/><file name="Write.php" hash="056d78bdbbb7a9e466b62d78015a8ed5"/></dir><file name="Observer.php" hash="80db718dbfb7e493ad235e3bdf4d6baf"/><file name="Orders.php" hash="a6023047810e0652e9e6248d67704b44"/><dir name="Source"><file name="Ambiente.php" hash="439a9f70669af322f1de30937551a1f0"/><file name="FormasPagamento.php" hash="bfa5931fe39fc22841acc789e71e6e92"/><file name="Layout.php" hash="4cc1e4fb27e773ce93a1c6b9bc571158"/></dir><file name="Standard.php" hash="4404310e45f06ab588e463baf82bd192"/><file name="Write.php" hash="ac1d3e9ff033480cab6ea20af271fa91"/><file name=".ftpquota" hash="bd9db78914b33cca442f35848cc680b5"/></dir><dir name="controllers"><file name="IndexController.php" hash="1c46afa51975fee2e626df503cfc29c9"/><file name="StandardController.php" hash="41cda2a2e7f16fdd1929863ee2040bb2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75bde86c187ceb24042233abde0f88b0"/><file name="config.xml" hash="3e921887d5844a4b5602db406b476ee4"/><file name="system.xml" hash="abf7ba5636a5c869d7782e1177e78839"/></dir><dir name="sql"><dir name="moip_setup"><file name="mysql4-install-0.1.0.php" hash="bff338f70822b4af170073029558b511"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="e767051db0711586184d20abbdebcbca"/><file name="mysql4-upgrade-0.1.0-0.2.1.php" hash="441725100d074d7d212bae4bc07db841"/><file name="mysql4-upgrade-0.2.1-0.2.2.php" hash="7e22a5f81d536e1b024e07d60df808d7"/><file name="mysql4-upgrade-0.2.1-0.2.3.php" hash="b6a1c02303eb5be5ac7c2c9bee962bb0"/><file name="mysql4-upgrade-0.2.1-0.2.4.php" hash="39985ee007790d939be31c8339c570fe"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Renderer"><dir name="Config"><file name="Createfield.php" hash="bca92a144c0564105091fb78ec75a235"/></dir></dir></dir><dir name="Onestepcheckout"><dir name="Edit"><file name="Form.php" hash="011556489a4e2e987d622bbc193ca5db"/><dir name="Tab"><file name="Form.php" hash="786a5a8d580250f8ab5c9def49f197c4"/></dir><file name="Tabs.php" hash="3e49037ed0f2ba7d930e7675398a6fd6"/></dir><file name="Edit.php" hash="b4a2a6c99cea16750408cb5c89c97ad8"/><file name="Grid.php" hash="8aa5742a2357b1c632ef26ce2a71e217"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="e23140dfc8b567ba7d957afeabee6643"/><dir name="View"><dir name="Tab"><dir name="Info"><file name="Customermessages.php" hash="bf0e3f76f8ab4dde138a4125fe2fb07c"/><file name="Deliverydate.php" hash="64ea9d43321c8b51d74621ee90916553"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Addtimerange.php" hash="08419845203bd4dd3421cdcab5cf241d"/></dir></dir></dir></dir></dir><file name="Onestepcheckout.php" hash="d0253394f7c3515fcc4ba81f34f192d4"/></dir><dir name="Checkout"><dir name="Onepage"><dir name="Billing"><file name="Sortbilling.php" hash="c92c36496e94fd9dc6da3aa8e53dda86"/></dir><file name="Billing.php" hash="ef4f0f010d7e288c6664002060fa5b8a"/><dir name="Review"><file name="Options.php" hash="67b005f43191b0be294d4ecf50c37485"/></dir><dir name="Shipping"><file name="Sortshipping.php" hash="9af5fa1281bf34c37e4c92fb40a4873c"/></dir><file name="Shipping.php" hash="a56afd3502132baab34c4a9419aa7e3c"/><dir name="Shippingmethod"><file name="Deliverydate.php" hash="36ba92c13f59f21c33902ea1146d6cdc"/></dir></dir><file name="Top.php" hash="70e323dbbb57a29579c13412a8a2443f"/></dir><file name="Onestepcheckout.php" hash="e8b954f14acebf579bb0910813e899e4"/><dir name="Sales"><dir name="Info"><file name="Customermessages.php" hash="6666cedaeb9597e0c5f90cf7cc2934ae"/><file name="Deliverydate.php" hash="225859a718283767ca44b1ddccfd4bfb"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fb1897f58ca16ce27184dc0790f0ecf2"/></dir><dir name="Model"><dir name="Customer"><file name="Customer.php" hash="b1b26b8e170bd4ed90b27fb9fcea8481"/></dir><dir name="Entity"><file name="Tipopessoa.php" hash="af14c8d054fe25c7f8cef5f89fcb65da"/></dir><dir name="Mysql4"><dir name="Onestepcheckout"><file name="Collection.php" hash="13781c0c51fcde3c6afc4f31054a6e03"/></dir><file name="Onestepcheckout.php" hash="5777de55ec60a045e86dc9de10f768bd"/></dir><file name="Observer.php" hash="75aeac65c1e5ffa22465b3a1d9c754c7"/><file name="Onestepcheckout.php" hash="3630794e4b1fda8229b82826e49a702f"/><dir name="Sales"><dir name="Quote"><file name="Address.php" hash="09cba85a351b58f16b4daba5be0d5595"/></dir></dir><dir name="Shipping"><file name="Allowedmethods.php" hash="801e98156ee12fd5fa08f30c37b64086"/></dir><file name="Status.php" hash="3e1d737e4f8cef4b6a591240efdafd83"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Checkuncheck.php" hash="a232182e727d089f1a730d1e0bb05996"/><file name="Disablefield.php" hash="d5a2192f21d68175ed7375f3a6e7f85a"/><file name="Formatdate.php" hash="7e3eeae0c5a8ebba85ed501ef513b192"/><file name="Optionaddfield.php" hash="3b9cf9f6a67931b7d56c21c9e8cb48b3"/><file name="Optionhidefield.php" hash="847e6415e5d037ae3b3572e1df28f347"/><file name="Pagelayout.php" hash="676dd09a7aad20c0e3cfdb74e9f7f87f"/><dir name="Payment"><file name="Allowedmethods.php" hash="ea276b37bfdf6bcdbc302a76df966523"/></dir><dir name="Shipping"><file name="Allowedmethods.php" hash="801e98156ee12fd5fa08f30c37b64086"/></dir><file name="Subscribenewletter.php" hash="48dd4e572839e532e5321854bdd07750"/><dir name="form"><file name="Createfield.php" hash="6cc825f91bc3f787b7a84e5369422f39"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="OnestepcheckoutController.php" hash="260a95696953ed372ed3d22ab52e7c85"/></dir><file name="IndexController.php" hash="b27320c1411d103bfa2616f4825de62b"/><file name="TestController.php" hash="b7814c4a88338b9e031f26274bd7d07a"/></dir><dir name="etc"><file name="config.xml" hash="a8cd520ee0f0b93c00a01d95951da4fa"/><file name="system.xml" hash="d6f72abeb349cb9753f30a1f84e1d5a1"/></dir><dir name="sql"><dir name="onestepcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="0bcce57d95b0c63e8efb86faad1d798c"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="6d20a03343747545eb10c276631114c8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="o2ti_moip.xml" hash="a891434ec116cab42d3466cfd7b6c6a3"/><file name="o2ti_onestepcheckout.xml" hash="a901f57e619569a8cd6b35b4cb9576d1"/></dir><dir name="template"><dir name="O2TI"><dir name="cadastro"><dir name="customer"><dir name="form"><file name="edit.phtml" hash="1cdb3179dd883809bd7357409ca0a5d0"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="5fc8ba027dfb92482c1a85d88e211cda"/></dir></dir><dir name="customer"><dir name="form"><file name="register.phtml" hash="08b5b692abfce0e689d243c3478de77e"/></dir></dir></dir></dir><dir name="moip"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="boleto.phtml" hash="9667a8ec9a4456be9a38c71ae70d2ad5"/><file name="cartao.phtml" hash="f51236967fdc8f086bf708f9e1cc86b3"/><file name="emptyupdate.phtml" hash="8625e958f0e2dd1138721b8518c8069a"/><file name="form.phtml" hash="97159f0fb40753ded7c032dfba582762"/><file name="horizontal_form.phtml" hash="41ddf8a11071c36e026fd989ca884178"/><file name="info.phtml" hash="13a80155eccc99e762b57c14a6634815"/><file name="layout_boleto.phtml" hash="6a609b4bc4bbbb610f151266983c06e1"/><file name="redirect.phtml" hash="1d302d419b7855d702b5f04078062024"/><file name="refaz.phtml" hash="61375f1a1f052fa29100cae10623fd85"/><file name="transferencia.phtml" hash="efc376926a603a9884a9ef615de726e2"/><file name="vertical_form.phtml" hash="732b71303fd887cb2d79266b3e2adb6e"/></dir><dir name="onestepcheckout"><dir name="daskboard"><dir name="onepage"><file name="agreements.phtml" hash="5b762aa76287b160fcbec8fed8b789e8"/><dir name="billing"><file name="billing_form.phtml" hash="908f6689451953e64b295da644181255"/></dir><file name="billing.phtml" hash="3ace016f656dd99a2f18b35ec13740a5"/><file name="correio.phtml" hash="461b88fcbf6adffc4f23c5905932bafa"/><file name="coupon.phtml" hash="7e3ffcc7e51d78c7607d91bc40ed68db"/><file name="forgotpassword.phtml" hash="2fb80e3ec1a8151dde497743b149c6e9"/><file name="local.xml" hash="08c7ce351c502056fb9ee3a14a9b065a"/><file name="login.phtml" hash="85198c4e290aec3eaf72057cf04d5ca8"/><dir name="payment"><file name="methods.phtml" hash="235eecfb6272e525a70cab79785852e2"/></dir><file name="payment.phtml" hash="3501af6f3b4c108f11bc2bc6d58a9d87"/><dir name="review"><file name="button.phtml" hash="4d5c7c5a2d70f85ec324e79c7e81946b"/><file name="info.phtml" hash="68556313d6d0943c153d69ebd00c8c4b"/><file name="item.phtml" hash="af2406220da6cd44940a672e2771f902"/><dir name="options"><file name="additional.phtml" hash="724b44c70421d206a77f72c2c151cf40"/></dir><file name="options.phtml" hash="c0281a5dc15905296ac8e93a9d13071b"/><file name="totals.phtml" hash="6e857d144768ed8faa0be977b547b32f"/></dir><file name="review.phtml" hash="763347e2b03553d1bf791b3c6df093a3"/><dir name="shipping"><file name="shipping_form.phtml" hash="87bf26552fb0c331c012a2b40c7ce059"/></dir><file name="shipping.phtml" hash="69f97ed0e0eb2e391b1e761bb8b1ffc7"/><dir name="shipping_method"><file name="available.phtml" hash="f0eb7caf698a2dddf1895b5211167467"/></dir><file name="shipping_method.phtml" hash="58c56da9e30df17c997e08e20e32a8ee"/></dir></dir><file name="daskboard.phtml" hash="1c0bb096ae8389fbc8cc6aab802ceb00"/><file name="emptyupdate.phtml" hash="7bf34446254428a5c42740731127b435"/><file name="onepage.phtml" hash="149f7077a5a959968afc0da9a0d952db"/><dir name="sales"><dir name="order"><dir name="info"><file name="customermessages.phtml" hash="1d783fb503426ca094f02525dd1a827b"/><file name="customermessages.phtml~" hash="aa6199bb564edbf6d950fa154b624c02"/><file name="deliverydate.phtml" hash="24d4d3fafafca91bb44b2159695c24bc"/><file name="deliverydate.phtml~" hash="75709e72398a0df41305dee259dc3de2"/></dir><file name="info.phtml" hash="a5b6b9223ec3d5da923e04f8becc84f3"/><dir name="view"><dir name="tab"><dir name="info"><file name="customermessages.phtml" hash="7de74c4598eceef2d17215585252f740"/><file name="deliverydate.phtml" hash="6e1260a32a1f6801ac185ef38a33114c"/></dir><file name="info.phtml" hash="57f4718dbfaa448976954368c1932b2b"/></dir></dir></dir></dir></dir></dir><dir name="customer"><dir><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="O2TI"><dir name="moip"><file name="form.phtml" hash="e381151a9b66f0fdc6cd74d019cefb5e"/><file name="info.phtml" hash="4517c05488d791fec96b8c882f10bfbc"/><file name="redirect.phtml" hash="a928915ad38266f0ca462a6e434cbb77"/></dir><dir name="onestepcheckout"><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><dir name="info"><file name="Customermessages.phtml" hash="bfaea7d5c4300ae8c73c31f3472c5a14"/><file name="Deliverydate.phtml" hash="b5040d3cb30cc31c0c63bfaa81d3c7ac"/></dir><file name="info.phtml" hash="1b6b38d40668d878487f1710a28c1e69"/></dir></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="view"><file name="info.phtml" hash="c6aa8255f5c494857c557a21a59e3367"/></dir></dir></dir></dir></dir><dir name="layout"><file name="o2ti_onestepcheckout.xml" hash="b601985811c14292e18b3e242ac6cc93"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="O2TI_All.xml" hash="0112972a847c93755903dd13239eae1f"/><file name="O2TI_Moip.xml" hash="e2cef22a0e5c667be681851c03dbffd4"/><file name="O2TI_Onestepcheckout.xml" hash="dbcbe66be4612fd2942b6f6847b834c9"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="O2TI_Onestepcheckout.csv" hash="4bff2b6a4c9e13f8d9ea2a287c10c85f"/><dir name="template"><dir name="email"><file name="statusmail_cancelado_o2ti.html" hash="867805dc1d9ecd61f96e1134cdacecf1"/><file name="statusmail_cancelado_o2ti.html~" hash="cb69a0a0e730655677332354bf3dd4a2"/></dir></dir></dir><dir name="pt_BR"><file name="O2TI_Onestepcheckout.csv" hash="4bff2b6a4c9e13f8d9ea2a287c10c85f"/><dir name="template"><dir name="email"><file name="statusmail_cancelado_o2ti.html" hash="867805dc1d9ecd61f96e1134cdacecf1"/><file name="statusmail_cancelado_o2ti.html~" hash="cb69a0a0e730655677332354bf3dd4a2"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="39f61bb34cd4c8ae95a771d2593ccfc3"/><file name="formulario.css" hash="dba3b96839a8e49fd4dff529ded7a2db"/><file name="formulario_horizontal.css" hash="3ebe4fefb3bdcea345187d043f71e843"/><file name="prettify.css" hash="ecd4a5d6c0cbee10b168f6aa000c64ea"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/><file name="ajax-loader.gif" hash="57ca1a2085d82f0574e3ef740b9a5ead"/><dir name="azul"><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/></dir><file name="bank-icon.png" hash="3f73473ce94841328abffa85fe314f3e"/><file name="bank-title.png" hash="3d33028c41f80b1042ef5500ea05c0d1"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto-icon.png" hash="c4560588cb6e12ca7756788648493ad3"/><file name="boleto.png" hash="fe1b591868a937c40e1a095b1313e3ed"/><dir name="branco"><file name="ababoleto.png" hash="f3baeeaf41a6528905b97d825ac67cf7"/><file name="abacartao.png" hash="684d8a48644f55f2c3504da1f51a350b"/><file name="abatransf.png" hash="ea6f42607620ea8f8dca34c1fc98b42b"/><file name="e-sedex.gif" hash="9d0af24408b3798ab687094ab9b76199"/><file name="e-sedex.png" hash="19c04d68032987d594c4da51e3b66094"/><file name="pac.gif" hash="fc1373622266269e8b0986b637e93851"/><file name="pac.png" hash="17aaff70f9924a8e37166429ceae549e"/><file name="sedex.gif" hash="9b6771f2d93f8f73dbbc8f5584a7f580"/><file name="sedex.png" hash="15e2831cad72756b9a9bf99a6e2af5e5"/></dir><file name="cc-title.png" hash="f3064bbd55a468c5bb717762e93a8a3b"/><file name="codigo-seguranca.png" hash="b1cdecab044511593083ff18033d4e4f"/><file name="flatrate_flatrate.gif" hash="a27796835310fe5e57ed11b5792d5530"/><file name="freeshipping_freeshipping.gif" hash="80af8e1da4c9cf03b1856f47bf7e27a4"/><file name="info.png" hash="051e3f3601ab034ba27615e42dd5cfdf"/><file name="logomoip.png" hash="0f09942428d649b8aa6b8999f0c60c0b"/><file name="logomoipck.png" hash="684da020f45d07cbee27cc231920d72a"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipbanner2.png" hash="1c24f42b0cbb05f00ea779d3a719ebe1"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="pedroteixeira_correios_40010.gif" hash="e260acafdeaf0f493350cfa5c34b8be1"/><file name="pedroteixeira_correios_40096.gif" hash="9d0af24408b3798ab687094ab9b76199"/><file name="pedroteixeira_correios_41068.gif" hash="fc1373622266269e8b0986b637e93851"/><file name="pedroteixeira_correios_41106.gif" hash="dcb56e6f42c1730736b44363d7c01e11"/><file name="pedroteixeira_correios_81019.gif" hash="9b6771f2d93f8f73dbbc8f5584a7f580"/><dir name="preto"><file name="ababoleto.png" hash="a728ac886e7e57744e62bba2c7b0b969"/><file name="abacartao.png" hash="50b6103cb5b7e51a27f3c26eaa7411d0"/><file name="abatransf.png" hash="61eec388356aea3230fc5d811ef996ea"/></dir><file name="printer.png" hash="f4bfc0849dceba778a6e7f252b7a3b9c"/><dir name="verde"><file name="ababoleto.png" hash="3c3e047acb513328ebdfd6bfc9c339fa"/><file name="abacartao.png" hash="809d7e21263b3474d1685087a91ca18a"/><file name="abatransf.png" hash="0e3e6bdba002a69be78e126f3e7e775f"/></dir><dir name="vermelho"><file name="ababoleto.png" hash="0d84f05b75c8e964122c4f087268bd1c"/><file name="abacartao.png" hash="63b85e98d5b77c6a373bc351080e60f4"/><file name="abatransf.png" hash="0bef9fec6108a914ebc108f3c600c013"/></dir><file name="warning.png" hash="3fbeef48124ccb146e082a9d20977b3e"/></dir></dir><dir name="onestepcheckout"><dir name="css"><file name="960grid_onestepcheckout.css" hash="0c8bb8b5a5519baf105c81be27fb8213"/><dir name="images"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_overlay.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="f6ccaf1eda8a79a2bd44643e5a346990"/><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_000_500x100.png" hash="5038a7d5d5bc3c3a565c585079798dca"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="5038a7d5d5bc3c3a565c585079798dca"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="ff1768bb6731566603303d106e298bec"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery.fancybox-1.3.1.css" hash="cc35aa3ea29cb379c994b32050f313b6"/><file name="onestepcheckout.css" hash="776267da336ae7dabe485db3189bfb95"/></dir><dir name="images"><file name="01.png" hash="89fcfa0fa3fe73b65ca2420269c26158"/><file name="02.png" hash="dab59c7515b3366465a4dd57d2d9deb2"/><file name="03.png" hash="dcaf4232529a8f9ac304db7553397450"/><file name="04.png" hash="68ae3a414c70c12f340e7c801d854c53"/><file name="05.png" hash="6e8fe636f0593ed3cf00d140e68d2308"/><file name="2_clock.png" hash="bb35645e06d8687f818a583202ad1615"/><file name="ajax-loader-tr.gif" hash="7a46575a4d543082fd6174c593aa762a"/><file name="bkg-giftmessage.png" hash="e0dc9f84c687af088bcc04e3ea200e0b"/><file name="bkg-step-review.png" hash="589914598419e9625c9358df8f68d49c"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="clock.gif" hash="c6d5badd40d31d332470c32a03d2e98c"/><file name="clock.png" hash="73f0648c150bde4ef647db7e9c14ca3e"/><file name="demo-large_03.png" hash="86628bc4358a1c1f655534d4ae15be45"/><file name="demo-large_04.png" hash="0d5f289d2bf808165be000b318a50591"/><file name="demo-large_05.png" hash="5fd1386a147ea4768553c3990d9db804"/><file name="demo-large_051.png" hash="452556661a99a8fb20c6d507ce9506f0"/><file name="demo-large_06.png" hash="247e5412b0e70bf164a428374b15a82d"/><file name="demo-large_07.png" hash="9deac604cfb692b2e17f0f53c3aebbf4"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_overlay.png" hash="7a46575a4d543082fd6174c593aa762a"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="line-gradient.gif" hash="bef9df2d426124dbe3d496407219190b"/><file name="loja_segura.jpg" hash="5e65fd40952db665746dc485d67fdf35"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="1899fb29f3f5bdeeaecd6d16485614e6"/><file name="formulario.css" hash="54920765fd12d894d8db2fbcdb3e62d5"/><file name="prettify.css" hash="a5ec3900f58a1827c96f8f103dc51ee6"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ababoleto.png" hash="f99320f749bda4f07e6bc9b43d4d98ad"/><file name="abacartao.png" hash="b9a2891519c51bb19ac1647dd5640be3"/><file name="abatransf.png" hash="86de71f37be51f0f19838c8952dd34b5"/><file name="ajax-loader.gif" hash="57ca1a2085d82f0574e3ef740b9a5ead"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto.png" hash="fe1b591868a937c40e1a095b1313e3ed"/><file name="codigo-seguranca.png" hash="03f97c4205ab539ba49ef83017e8ec94"/><file name="flatrate_flatrate.gif" hash="a27796835310fe5e57ed11b5792d5530"/><file name="freeshipping_freeshipping.gif" hash="80af8e1da4c9cf03b1856f47bf7e27a4"/><file name="info.png" hash="051e3f3601ab034ba27615e42dd5cfdf"/><file name="logomoip.png" hash="0f09942428d649b8aa6b8999f0c60c0b"/><file name="logomoipck.png" hash="684da020f45d07cbee27cc231920d72a"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="pedroteixeira_correios_40010.gif" hash="3defbbdc7b3d5ca86d76643260182320"/><file name="pedroteixeira_correios_40096.gif" hash="33cd0845f40648cf0584b13fa65c942a"/><file name="pedroteixeira_correios_41068.gif" hash="f317b7dff693b6598c78829c1592b2b7"/><file name="pedroteixeira_correios_41106.gif" hash="f317b7dff693b6598c78829c1592b2b7"/><file name="pedroteixeira_correios_81019.gif" hash="3defbbdc7b3d5ca86d76643260182320"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="O2TI"><dir name="all"><file name="logo.png" hash="c08692c7e53617ad2a6d5f1449d04e96"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="O2TI"><file name="jquery.js" hash="f8e2833ce2f57ec673b178be7eefbd82"/><file name="jquery_noconflict.js" hash="afdd9b4ecb226d898fe655136f849752"/><dir name="moip"><file name="bootstrap-modal.js" hash="3a3af727bfc923a064aad1b02681ffce"/><file name="bootstrap.min.js" hash="5eb1cb055ddcf2f7b2b662f73f56cf1f"/><file name="checkout.js" hash="27c351b3b8b9a88da68bb8b18ea809ee"/></dir><file name="novamascara.js" hash="b9e977ef39649ce38245bb62a855551b"/><dir name="onestepcheckout"><file name="billing.js" hash="9f72ed92f8f51401ebc2fe98395c6af0"/><file name="change-events.js" hash="5f2255559e09fc56f24c72acd80e70b7"/><file name="jquery.fancybox-1.3.1.js" hash="9a060de18420a5bbe26cfa42b8470323"/><file name="shipping.js" hash="d9045d07a8adddeaddf25a757e86cf44"/></dir><file name="validacao.js" hash="73cb3aaf10be38fda611e8cff9abd550"/></dir></dir><dir name="."><file name="MOIP_README.md" hash="4dfe78832a2ea8f2f065cd150c846658"/><file name="MOIP_SQL_MANUAL_INSTALATION.txt" hash="57eca9f3b60792f0e4925ff14b8eba0e"/></dir></target></contents>
|
40 |
<compatible/>
|
41 |
<dependencies><required><php><min>4.0.0</min><max>5.5.5</max></php><extension><name>openssl</name><min>1</min><max>1</max></extension><extension><name>PDO</name><min>1</min><max>1</max></extension><extension><name>mcrypt</name><min>1</min><max>1</max></extension></required></dependencies>
|
42 |
</package>
|