Version Notes
Alteração de metodos de json e xml do módulo.
Download this release
Release Info
Developer | O2TI |
Extension | o2ti_moip |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- app/code/local/O2TI/Moip/Block/Standard/Form.php +1 -1
- app/code/local/O2TI/Moip/Block/Standard/Redirect.php +2 -2
- app/code/local/O2TI/Moip/Model/Api.php +26 -24
- app/code/local/O2TI/Moip/controllers/IndexController.php +2 -2
- app/code/local/O2TI/Onestepcheckout/controllers/IndexController.php +7 -8
- app/design/frontend/base/default/layout/o2ti_moip.xml +1 -0
- app/design/frontend/base/default/layout/o2ti_onestepcheckout.xml +1 -0
- app/design/frontend/base/default/template/O2TI/moip/vertical_form.phtml +4 -3
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard.phtml +3 -3
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/billing.phtml +24 -18
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/billing/billing_form.phtml +17 -19
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/review.phtml +33 -18
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/shipping.phtml +16 -15
- app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/shipping/shipping_form.phtml +54 -43
- js/O2TI/moip/checkout.js +1 -0
- js/O2TI/onestepcheckout/change-events.js +8 -2
- package.xml +5 -5
- skin/frontend/base/default/O2TI/moip/css/formulario.css +1 -1
- skin/frontend/base/default/O2TI/moip/css/formulario_horizontal.css +1 -1
- skin/frontend/base/default/O2TI/onestepcheckout/css/hodor_onestepcheckout.css +33 -0
- skin/frontend/base/default/O2TI/onestepcheckout/css/onestepcheckout.css +20 -3
app/code/local/O2TI/Moip/Block/Standard/Form.php
CHANGED
@@ -269,7 +269,7 @@ class O2TI_Moip_Block_Standard_Form extends Mage_Payment_Block_Form {
|
|
269 |
|
270 |
if ($cartTotal > 5) {
|
271 |
$parcelamento = $api->getParcelamento($cartTotal);
|
272 |
-
$parcela_decode =
|
273 |
foreach ($parcela_decode as $key => $value) {
|
274 |
|
275 |
if ($key <= Mage::getSingleton('moip/standard')->getConfigData('nummaxparcelamax')) {
|
269 |
|
270 |
if ($cartTotal > 5) {
|
271 |
$parcelamento = $api->getParcelamento($cartTotal);
|
272 |
+
$parcela_decode = Mage::helper('core')->jsonDecode($parcelamento,true);
|
273 |
foreach ($parcela_decode as $key => $value) {
|
274 |
|
275 |
if ($key <= Mage::getSingleton('moip/standard')->getConfigData('nummaxparcelamax')) {
|
app/code/local/O2TI/Moip/Block/Standard/Redirect.php
CHANGED
@@ -72,7 +72,7 @@ class O2TI_Moip_Block_Standard_Redirect extends Mage_Checkout_Block_Onepage_Succ
|
|
72 |
);
|
73 |
|
74 |
}
|
75 |
-
$json =
|
76 |
return $json;
|
77 |
|
78 |
}
|
@@ -91,7 +91,7 @@ class O2TI_Moip_Block_Standard_Redirect extends Mage_Checkout_Block_Onepage_Succ
|
|
91 |
$dados_ErroCartao['code'] = $value->code;
|
92 |
$dados_ErroCartao['description'] = $value->description;
|
93 |
}
|
94 |
-
$dados_ErroCartao =
|
95 |
return $dados_ErroCartao;
|
96 |
} else{
|
97 |
return false;
|
72 |
);
|
73 |
|
74 |
}
|
75 |
+
$json = Mage::helper('core')->jsonEncode((object)$json);
|
76 |
return $json;
|
77 |
|
78 |
}
|
91 |
$dados_ErroCartao['code'] = $value->code;
|
92 |
$dados_ErroCartao['description'] = $value->description;
|
93 |
}
|
94 |
+
$dados_ErroCartao = Mage::helper('core')->jsonEncode((object)$dados_ErroCartao);
|
95 |
return $dados_ErroCartao;
|
96 |
} else{
|
97 |
return false;
|
app/code/local/O2TI/Moip/Model/Api.php
CHANGED
@@ -54,36 +54,36 @@ class O2TI_Moip_Model_Api {
|
|
54 |
|
55 |
if ($meio == "BoletoBancario"):
|
56 |
if (Mage::getStoreConfig('o2tiall/pagamento_avancado/pagamento_boleto')):
|
57 |
-
|
58 |
-
|
|
|
59 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc') / 100;
|
60 |
-
|
61 |
-
if (
|
62 |
-
|
63 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc2') / 100;
|
64 |
-
|
65 |
-
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3'))
|
66 |
-
$valorcompra = $data['valor'];
|
67 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc3') / 100;
|
68 |
-
|
69 |
endif;
|
70 |
endif;
|
71 |
|
72 |
if ($meio == "DebitoBancario"):
|
73 |
$valorcompra = $data['valor'];
|
74 |
if (Mage::getStoreConfig('o2tiall/pagamento_avancado/transf_desc')):
|
75 |
-
|
76 |
-
|
|
|
77 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc') / 100;
|
78 |
-
|
79 |
-
if (
|
80 |
-
|
81 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc2') / 100;
|
82 |
-
|
83 |
-
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3'))
|
84 |
-
$valorcompra = $data['valor'];
|
85 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc3') / 100;
|
86 |
-
|
87 |
endif;
|
88 |
endif;
|
89 |
|
@@ -92,7 +92,7 @@ class O2TI_Moip_Model_Api {
|
|
92 |
else
|
93 |
$alterapedido = "";
|
94 |
|
95 |
-
$id_proprio = $pgto['conta_moip'].'_'.$data['id_transacao'];
|
96 |
|
97 |
# $xml = $this->generateXml($json);
|
98 |
$xml = new SimpleXMLElement('<?xml version = "1.0" encoding = "UTF-8"?><EnviarInstrucao/>');
|
@@ -244,7 +244,7 @@ class O2TI_Moip_Model_Api {
|
|
244 |
$primeiro++;
|
245 |
}
|
246 |
}
|
247 |
-
$json_parcelas =
|
248 |
return $json_parcelas;
|
249 |
|
250 |
}
|
@@ -286,7 +286,7 @@ class O2TI_Moip_Model_Api {
|
|
286 |
);
|
287 |
}
|
288 |
}
|
289 |
-
$json_parcelas =
|
290 |
return $json_parcelas;
|
291 |
|
292 |
}
|
@@ -311,9 +311,11 @@ class O2TI_Moip_Model_Api {
|
|
311 |
}
|
312 |
|
313 |
public function getJurosComposto($valor, $juros, $parcela) {
|
314 |
-
|
315 |
-
$
|
316 |
-
$
|
|
|
|
|
317 |
return $valParcela;
|
318 |
}
|
319 |
|
54 |
|
55 |
if ($meio == "BoletoBancario"):
|
56 |
if (Mage::getStoreConfig('o2tiall/pagamento_avancado/pagamento_boleto')):
|
57 |
+
$valorcompra = $data['valor'];
|
58 |
+
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor'))
|
59 |
+
{
|
60 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc') / 100;
|
61 |
+
}
|
62 |
+
if ($valorcompra < Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3'))
|
63 |
+
{
|
64 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc2') / 100;
|
65 |
+
}
|
66 |
+
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3')){
|
|
|
67 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc3') / 100;
|
68 |
+
};
|
69 |
endif;
|
70 |
endif;
|
71 |
|
72 |
if ($meio == "DebitoBancario"):
|
73 |
$valorcompra = $data['valor'];
|
74 |
if (Mage::getStoreConfig('o2tiall/pagamento_avancado/transf_desc')):
|
75 |
+
$valorcompra = $data['valor'];
|
76 |
+
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor'))
|
77 |
+
{
|
78 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc') / 100;
|
79 |
+
}
|
80 |
+
if ($valorcompra < Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3'))
|
81 |
+
{
|
82 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc2') / 100;
|
83 |
+
}
|
84 |
+
if ($valorcompra >= Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_valor3')){
|
|
|
85 |
$valorcompra = $valorcompra - $valorcompra * Mage::getStoreConfig('o2tiall/pagamento_avancado/boleto_desc3') / 100;
|
86 |
+
};
|
87 |
endif;
|
88 |
endif;
|
89 |
|
92 |
else
|
93 |
$alterapedido = "";
|
94 |
|
95 |
+
$id_proprio = $alterapedido.$pgto['conta_moip'].'_'.$data['id_transacao'];
|
96 |
|
97 |
# $xml = $this->generateXml($json);
|
98 |
$xml = new SimpleXMLElement('<?xml version = "1.0" encoding = "UTF-8"?><EnviarInstrucao/>');
|
244 |
$primeiro++;
|
245 |
}
|
246 |
}
|
247 |
+
$json_parcelas = Mage::helper('core')->jsonEncode((object)$json_parcelas);
|
248 |
return $json_parcelas;
|
249 |
|
250 |
}
|
286 |
);
|
287 |
}
|
288 |
}
|
289 |
+
$json_parcelas = Mage::helper('core')->jsonEncode((object)$json_parcelas);
|
290 |
return $json_parcelas;
|
291 |
|
292 |
}
|
311 |
}
|
312 |
|
313 |
public function getJurosComposto($valor, $juros, $parcela) {
|
314 |
+
|
315 |
+
$principal = $valor;
|
316 |
+
$taxa = $juros/100;
|
317 |
+
$valParcela = ($principal * $taxa)/(1 - (pow(1/(1+$taxa), $parcela)));
|
318 |
+
|
319 |
return $valParcela;
|
320 |
}
|
321 |
|
app/code/local/O2TI/Moip/controllers/IndexController.php
CHANGED
@@ -74,7 +74,7 @@ class O2TI_Moip_IndexController extends Mage_Core_Controller_Front_Action
|
|
74 |
),
|
75 |
);
|
76 |
}
|
77 |
-
echo
|
78 |
}
|
79 |
}
|
80 |
public function RepagAction() {
|
@@ -99,7 +99,7 @@ class O2TI_Moip_IndexController extends Mage_Core_Controller_Front_Action
|
|
99 |
),
|
100 |
);
|
101 |
}
|
102 |
-
echo
|
103 |
var_dump($json);
|
104 |
return true;
|
105 |
}
|
74 |
),
|
75 |
);
|
76 |
}
|
77 |
+
echo Mage::helper('core')->jsonEncode((object)$json);
|
78 |
}
|
79 |
}
|
80 |
public function RepagAction() {
|
99 |
),
|
100 |
);
|
101 |
}
|
102 |
+
echo Mage::helper('core')->jsonEncode((object)$json);
|
103 |
var_dump($json);
|
104 |
return true;
|
105 |
}
|
app/code/local/O2TI/Onestepcheckout/controllers/IndexController.php
CHANGED
@@ -697,7 +697,7 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
697 |
$data_save_shipping['same_as_billing']=1;
|
698 |
}
|
699 |
$customeraddressid = $this->getrequest()->getpost($ship.'_address_id', false);
|
700 |
-
if ($isclick || ($this->getRequest()->getPost('shipping_address_id') != ""
|
701 |
$customeraddressid = "";
|
702 |
}
|
703 |
|
@@ -1038,8 +1038,9 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
1038 |
}
|
1039 |
public function saveAddress($type,$data)
|
1040 |
{
|
1041 |
-
|
1042 |
-
$save_in_address_book = $data['save_in_address_book'];
|
|
|
1043 |
$addressId = $this->getRequest()->getPost($type.'_address_id');
|
1044 |
|
1045 |
|
@@ -1048,7 +1049,7 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
1048 |
|
1049 |
if($save_in_address_book && $addressId != "")
|
1050 |
{
|
1051 |
-
|
1052 |
// Save data
|
1053 |
|
1054 |
|
@@ -1073,7 +1074,7 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
1073 |
$addressForm->compactData($addressData);
|
1074 |
$address->setCustomerId($customer->getId())
|
1075 |
->setIsDefaultBilling($this->getRequest()->getParam('default_billing', false))
|
1076 |
-
->setIsDefaultShipping($this->getRequest()->getParam('default_shipping', false))
|
1077 |
|
1078 |
$addressErrors = $address->validate();
|
1079 |
|
@@ -1095,7 +1096,7 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
1095 |
}
|
1096 |
|
1097 |
|
1098 |
-
if(Mage::getSingleton('customer/session')->getCustomer()->
|
1099 |
|
1100 |
|
1101 |
$customer = Mage::getSingleton('customer/session')->getCustomer();
|
@@ -1115,6 +1116,4 @@ class O2TI_Onestepcheckout_IndexController extends Mage_Checkout_OnepageControll
|
|
1115 |
|
1116 |
}
|
1117 |
}
|
1118 |
-
|
1119 |
-
|
1120 |
}
|
697 |
$data_save_shipping['same_as_billing']=1;
|
698 |
}
|
699 |
$customeraddressid = $this->getrequest()->getpost($ship.'_address_id', false);
|
700 |
+
if ($isclick || ($this->getRequest()->getPost('shipping_address_id') != "")) {
|
701 |
$customeraddressid = "";
|
702 |
}
|
703 |
|
1038 |
}
|
1039 |
public function saveAddress($type,$data)
|
1040 |
{
|
1041 |
+
$save_in_address_book = '';
|
1042 |
+
$save_in_address_book = $data['save_in_address_book'];
|
1043 |
+
|
1044 |
$addressId = $this->getRequest()->getPost($type.'_address_id');
|
1045 |
|
1046 |
|
1049 |
|
1050 |
if($save_in_address_book && $addressId != "")
|
1051 |
{
|
1052 |
+
|
1053 |
// Save data
|
1054 |
|
1055 |
|
1074 |
$addressForm->compactData($addressData);
|
1075 |
$address->setCustomerId($customer->getId())
|
1076 |
->setIsDefaultBilling($this->getRequest()->getParam('default_billing', false))
|
1077 |
+
->setIsDefaultShipping($this->getRequest()->getParam('default_shipping', false))->setSaveInAddressBook('1');
|
1078 |
|
1079 |
$addressErrors = $address->validate();
|
1080 |
|
1096 |
}
|
1097 |
|
1098 |
|
1099 |
+
if(Mage::getSingleton('customer/session')->getCustomer()->getDefaultShipping() && $save_in_address_book != '0') {
|
1100 |
|
1101 |
|
1102 |
$customer = Mage::getSingleton('customer/session')->getCustomer();
|
1116 |
|
1117 |
}
|
1118 |
}
|
|
|
|
|
1119 |
}
|
app/design/frontend/base/default/layout/o2ti_moip.xml
CHANGED
@@ -25,6 +25,7 @@
|
|
25 |
|
26 |
<reference name="head">
|
27 |
<action method="setTitle"><params><![CDATA[Pagamento via MoIP S/A]]></params></action>
|
|
|
28 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
29 |
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
30 |
<action method="addJs"><script>O2TI/moip/bootstrap.min.js</script></action>
|
25 |
|
26 |
<reference name="head">
|
27 |
<action method="setTitle"><params><![CDATA[Pagamento via MoIP S/A]]></params></action>
|
28 |
+
<action method="removeItem"><type>skin_js</type><name>js/lib/jquery-1.10.2.min.js</name></action>
|
29 |
<action method="addJs"><script>O2TI/jquery.js</script></action>
|
30 |
<action method="addJs"><script>O2TI/jquery_noconflict.js</script></action>
|
31 |
<action method="addJs"><script>O2TI/moip/bootstrap.min.js</script></action>
|
app/design/frontend/base/default/layout/o2ti_onestepcheckout.xml
CHANGED
@@ -4,6 +4,7 @@
|
|
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>
|
4 |
|
5 |
<checkout_onepage_index>
|
6 |
<reference name="head">
|
7 |
+
<action method="removeItem"><type>skin_js</type><name>js/lib/jquery-1.10.2.min.js</name></action>
|
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/onestepcheckout/jquery.fancybox-1.3.1.js</script></action>
|
app/design/frontend/base/default/template/O2TI/moip/vertical_form.phtml
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
$dn = "";
|
8 |
?>
|
9 |
<script type="text/javascript">
|
10 |
-
|
11 |
jQuery(document).ready(function() {
|
12 |
jQuery('.input-switcher > li').bind({
|
13 |
click: function() {
|
@@ -32,6 +32,7 @@ jQuery(document).ready(function() {
|
|
32 |
jQuery("#moip-cartao").css({'display':'none'});
|
33 |
}
|
34 |
});
|
|
|
35 |
</script>
|
36 |
|
37 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->getSkinUrl('O2TI/moip/css/formulario.css'); ?>"media="all">
|
@@ -90,13 +91,13 @@ jQuery(document).ready(function() {
|
|
90 |
<div class="cc">
|
91 |
<label class="required" for="credito_numero">Número<em>*</em></label>
|
92 |
<div class="input-box">
|
93 |
-
<input type="text" name="payment[credito_numero]" id="credito_numero" class="input-text required-entry validate-cc-number validate-cc-type">
|
94 |
</div>
|
95 |
</div>
|
96 |
<div class="cvv tooltip-moip-handler">
|
97 |
<label class="required" for="cvv">CVV <i class="icon-question-sign"></i><em>*</em></label>
|
98 |
<div class="input-box">
|
99 |
-
<input type="text" name="payment[credito_codigo_seguranca]" onkeyup="countChar(this)" class="input-text required-entry ccv validate-cc-cvn" minlength="3" maxlength="4" id="credito_codigo_seguranca" >
|
100 |
<span class="tooltip-moip">
|
101 |
<span class="custom help" style=" width:260px;"><em>Código de segurança:</em></br>Veja no verso do seu cartão.<img src="<?php echo $this->getSkinUrl('O2TI/moip/imagem/codigo-seguranca.png'); ?>" id="imageseguramoip" border="0"></span>
|
102 |
</span>
|
7 |
$dn = "";
|
8 |
?>
|
9 |
<script type="text/javascript">
|
10 |
+
//<![CDATA[
|
11 |
jQuery(document).ready(function() {
|
12 |
jQuery('.input-switcher > li').bind({
|
13 |
click: function() {
|
32 |
jQuery("#moip-cartao").css({'display':'none'});
|
33 |
}
|
34 |
});
|
35 |
+
//]]>
|
36 |
</script>
|
37 |
|
38 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->getSkinUrl('O2TI/moip/css/formulario.css'); ?>"media="all">
|
91 |
<div class="cc">
|
92 |
<label class="required" for="credito_numero">Número<em>*</em></label>
|
93 |
<div class="input-box">
|
94 |
+
<input type="text" name="payment[credito_numero]" id="credito_numero" onkeypress="return txtBoxFormat(this, '9', event);" class="input-text required-entry validate-cc-number validate-cc-type">
|
95 |
</div>
|
96 |
</div>
|
97 |
<div class="cvv tooltip-moip-handler">
|
98 |
<label class="required" for="cvv">CVV <i class="icon-question-sign"></i><em>*</em></label>
|
99 |
<div class="input-box">
|
100 |
+
<input type="text" name="payment[credito_codigo_seguranca]" onkeyup="countChar(this)" onkeypress="return txtBoxFormat(this, '9', event);" class="input-text required-entry ccv validate-cc-cvn" minlength="3" maxlength="4" id="credito_codigo_seguranca" >
|
101 |
<span class="tooltip-moip">
|
102 |
<span class="custom help" style=" width:260px;"><em>Código de segurança:</em></br>Veja no verso do seu cartão.<img src="<?php echo $this->getSkinUrl('O2TI/moip/imagem/codigo-seguranca.png'); ?>" id="imageseguramoip" border="0"></span>
|
103 |
</span>
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard.phtml
CHANGED
@@ -517,8 +517,8 @@ function updateEmailmsg(val){
|
|
517 |
div.o2ti-osc-block-title{border-bottom:4px solid <?php echo $color;?>;}
|
518 |
.onestepcheckout-numbers{background:<?php echo $color;?>;}
|
519 |
p.o2ti-osc-block-title{color:<?php echo $color;?>;}
|
520 |
-
.o2ti-osc-threecolumns button.button span{background:<?php echo $botao_color?>; border: 1px solid <?php echo $botao_color;?>;}
|
521 |
-
.onestepcheckout-numbers { border-radius: 6px 6px 0 0;background-repeat:no-repeat;float: left;height:
|
522 |
.onestepcheckout-numbers-1{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/01.png') ?>");}
|
523 |
.onestepcheckout-numbers-2{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/02.png') ?>");}
|
524 |
.onestepcheckout-numbers-3{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/03.png') ?>");}
|
@@ -529,7 +529,7 @@ function updateEmailmsg(val){
|
|
529 |
.o2ti-osc-title-login{background: <?php echo $color;?>;}
|
530 |
div#fancybox-wrap .col2-set .col-2 #login-form fieldset .col-2 .buttons-set button span,
|
531 |
div#fancybox-wrap #form-validate div.buttons-set #btforgotpass span{background:<?php echo $color;?>; border: 1px solid <?php echo $color;?>;}
|
532 |
-
.o2ti-osc-fancybox-wrap button.button span{background:<?php echo $color;?>; border: 1px solid <?php echo $color;?>;}
|
533 |
</style>
|
534 |
<?php endif;?>
|
535 |
<h1 class="o2ti-osc-page-tittle"><?php echo $this->__(Mage::getStoreConfig('onestepcheckout/layout/page_titulo'))?></h1>
|
517 |
div.o2ti-osc-block-title{border-bottom:4px solid <?php echo $color;?>;}
|
518 |
.onestepcheckout-numbers{background:<?php echo $color;?>;}
|
519 |
p.o2ti-osc-block-title{color:<?php echo $color;?>;}
|
520 |
+
.o2ti-osc-threecolumns button.button span, .o2ti-osc-threecolumns button.button span span, button.button.btn-checkout, .cart .buttons-set .button{background:<?php echo $botao_color?>; border: 1px solid <?php echo $botao_color;?>;}
|
521 |
+
.onestepcheckout-numbers { border-radius: 6px 6px 0 0;background-repeat:no-repeat;float: left;height: 35px;margin-right: 4px;width: 40px;background-position: 14px 6px;font-weight:normal; padding-left:10px; padding-top:3px;}
|
522 |
.onestepcheckout-numbers-1{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/01.png') ?>");}
|
523 |
.onestepcheckout-numbers-2{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/02.png') ?>");}
|
524 |
.onestepcheckout-numbers-3{background-image:url("<?php echo $this->getSkinUrl('O2TI/onestepcheckout/images/03.png') ?>");}
|
529 |
.o2ti-osc-title-login{background: <?php echo $color;?>;}
|
530 |
div#fancybox-wrap .col2-set .col-2 #login-form fieldset .col-2 .buttons-set button span,
|
531 |
div#fancybox-wrap #form-validate div.buttons-set #btforgotpass span{background:<?php echo $color;?>; border: 1px solid <?php echo $color;?>;}
|
532 |
+
.o2ti-osc-fancybox-wrap button.button span, .o2ti-osc-fancybox-wrap button.button span span{background:<?php echo $color;?>; border: 1px solid <?php echo $color;?>;}
|
533 |
</style>
|
534 |
<?php endif;?>
|
535 |
<h1 class="o2ti-osc-page-tittle"><?php echo $this->__(Mage::getStoreConfig('onestepcheckout/layout/page_titulo'))?></h1>
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/billing.phtml
CHANGED
@@ -14,35 +14,41 @@
|
|
14 |
<fieldset>
|
15 |
<input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="billing:address_id" />
|
16 |
<ul id="o2ti_onstepcheckout_billing_form">
|
17 |
-
|
18 |
<?php echo $this->getChildHtml('billing_form');?>
|
19 |
</ul>
|
20 |
-
<ul>
|
21 |
|
22 |
<?php if ($this->isCustomerLoggedIn() && Mage::helper('onestepcheckout')->showAddressBook()):?>
|
23 |
<li class="control">
|
24 |
-
|
25 |
-
|
|
|
|
|
26 |
</li>
|
27 |
<?php elseif ($this->isCustomerLoggedIn() && !Mage::helper('onestepcheckout')->showAddressBook()):?>
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
</ul>
|
33 |
</fieldset>
|
34 |
</li>
|
35 |
-
|
36 |
-
<?php if(Mage::getStoreConfig('onestepcheckout/config/allowshippingotheraddress')):?>
|
37 |
-
<?php if(!Mage::helper('onestepcheckout')->onlyProductDownloadable()):?>
|
38 |
-
<input type="checkbox" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>" id="ship_to_same_address" class="checkbox" checked="checked"> <label for="ship_to_same_address" style="float:none;"><?php echo $this->__('Ship to same address') ?></label>
|
39 |
-
<?php else:?>
|
40 |
-
<input type="hidden" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>">
|
41 |
-
<?php endif; ?>
|
42 |
-
<?php else:?>
|
43 |
-
<input type="hidden" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>">
|
44 |
-
<?php endif; ?>
|
45 |
-
</li>
|
46 |
</ul>
|
47 |
</fieldset>
|
48 |
</div>
|
14 |
<fieldset>
|
15 |
<input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="billing:address_id" />
|
16 |
<ul id="o2ti_onstepcheckout_billing_form">
|
|
|
17 |
<?php echo $this->getChildHtml('billing_form');?>
|
18 |
</ul>
|
19 |
+
<ul class="form-list">
|
20 |
|
21 |
<?php if ($this->isCustomerLoggedIn() && Mage::helper('onestepcheckout')->showAddressBook()):?>
|
22 |
<li class="control">
|
23 |
+
|
24 |
+
<input type="checkbox" name="billing[save_in_address_book]" <?php if (!Mage::getSingleton('customer/session')->getCustomer()->getDefaultShipping()):?> value="1" <?php else: ?> value='0' <?php endif; ?>onchange="if(window.shipping) shipping.setSameAsBilling(false);"<?php if (!Mage::getSingleton('customer/session')->getCustomer()->getDefaultShipping()):?> checked="checked"<?php endif;?> title="<?php echo $this->__('Save in address book') ?>" id="billing:save_in_address_book" class="checkbox" />
|
25 |
+
<label for="billing:save_in_address_book" ><?php echo $this->__('Salvar como novo endereço') ?></label>
|
26 |
+
|
27 |
</li>
|
28 |
<?php elseif ($this->isCustomerLoggedIn() && !Mage::helper('onestepcheckout')->showAddressBook()):?>
|
29 |
+
<li class="control">
|
30 |
+
<li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="0" /></li>
|
31 |
+
</li>
|
32 |
+
<?php else :?>
|
33 |
+
<li class="control">
|
34 |
+
<li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1" /></li>
|
35 |
+
</li>
|
36 |
<?php endif; ?>
|
37 |
+
<li class="control">
|
38 |
+
<?php if(Mage::getStoreConfig('onestepcheckout/config/allowshippingotheraddress')):?>
|
39 |
+
<?php if(!Mage::helper('onestepcheckout')->onlyProductDownloadable()):?>
|
40 |
+
<input type="checkbox" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>" id="ship_to_same_address" class="checkbox" checked="checked" oncharge="jQuery('#billing\\:save_in_address_book').val('1');" > <label for="ship_to_same_address" ><?php echo $this->__('Ship to same address') ?></label>
|
41 |
+
<?php else:?>
|
42 |
+
<input type="hidden" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>">
|
43 |
+
<?php endif; ?>
|
44 |
+
<?php else:?>
|
45 |
+
<input type="hidden" name="ship_to_same_address" value="1" title="<?php echo $this->__('ship to same address') ?>">
|
46 |
+
<?php endif; ?>
|
47 |
+
</li>
|
48 |
</ul>
|
49 |
</fieldset>
|
50 |
</li>
|
51 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</ul>
|
53 |
</fieldset>
|
54 |
</div>
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/billing/billing_form.phtml
CHANGED
@@ -70,20 +70,16 @@ if (Mage::getSingleton('customer/session')->isLoggedIn()) {
|
|
70 |
<?php if(Mage::getStoreConfig('onestepcheckout/config/enable_pj')):?>
|
71 |
|
72 |
<li class="wide pj-pf">
|
73 |
-
<
|
74 |
</li>
|
75 |
<li class="wide pj-pf">
|
76 |
<div class="field">
|
77 |
-
<
|
78 |
-
<
|
79 |
-
<input type="radio" name="billing[tipopessoa]" value="1" onclick="getval(this);" checked>
|
80 |
-
</div>
|
81 |
</div>
|
82 |
<div class="field">
|
83 |
-
<
|
84 |
-
<
|
85 |
-
<input type="radio" name="billing[tipopessoa]" value="2" onclick="getval(this);">
|
86 |
-
</div>
|
87 |
</div>
|
88 |
</li>
|
89 |
<li class="field dados-pj">
|
@@ -149,16 +145,18 @@ if (Mage::getSingleton('customer/session')->isLoggedIn()) {
|
|
149 |
</li>
|
150 |
<?php endif ?>
|
151 |
<li class="wide"><h2 class="endereco_title">Endereço</h2></li>
|
152 |
-
<li class="
|
153 |
-
<
|
154 |
-
|
155 |
-
<
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
<
|
160 |
-
|
161 |
-
|
|
|
|
|
162 |
</li>
|
163 |
<li class="wide">
|
164 |
<label for="billing:street1" class="required"><em>*</em>Endereço</label>
|
70 |
<?php if(Mage::getStoreConfig('onestepcheckout/config/enable_pj')):?>
|
71 |
|
72 |
<li class="wide pj-pf">
|
73 |
+
<li class="wide"><h3 class="como_comprar_title">Comprar Como:</h3></li>
|
74 |
</li>
|
75 |
<li class="wide pj-pf">
|
76 |
<div class="field">
|
77 |
+
<input type="radio" class="radio_pf_pj" name="billing[tipopessoa]" value="1" onclick="getval(this);" checked>
|
78 |
+
<label class="label_pf_pj">Pessoa Física: </label>
|
|
|
|
|
79 |
</div>
|
80 |
<div class="field">
|
81 |
+
<input type="radio" class="radio_pf_pj" name="billing[tipopessoa]" value="2" onclick="getval(this);">
|
82 |
+
<label class="label_pf_pj">Pessoa Jurídica: </label>
|
|
|
|
|
83 |
</div>
|
84 |
</li>
|
85 |
<li class="field dados-pj">
|
145 |
</li>
|
146 |
<?php endif ?>
|
147 |
<li class="wide"><h2 class="endereco_title">Endereço</h2></li>
|
148 |
+
<li class="wide">
|
149 |
+
<li class="field">
|
150 |
+
<label for="billing:postcode" class="required"><em>*</em>CEP</label>
|
151 |
+
<div class="input-box">
|
152 |
+
<input type="text" title="CEP" name="billing[postcode]" id="billing:postcode" value="<?php echo $this->htmlEscape($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international required-entry o2tizip" placeholder="99999-999" onchange="javascript: buscarEndereco('billing');" onkeypress="return txtBoxFormat(this, '99999-999', event);" maxlength="9" autocomplete="off" style="width: 100px;">
|
153 |
+
</div>
|
154 |
+
</li>
|
155 |
+
<li class="field">
|
156 |
+
<div class="input-box" style="margin-top: 20px;margin-bottom: 8px;">
|
157 |
+
<a id="correio" href="#inlinecorreio" title="">Não sabe o CEP?</a>
|
158 |
+
</div>
|
159 |
+
</li>
|
160 |
</li>
|
161 |
<li class="wide">
|
162 |
<label for="billing:street1" class="required"><em>*</em>Endereço</label>
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/review.phtml
CHANGED
@@ -1,38 +1,53 @@
|
|
1 |
<div id="checkout-review-load">
|
2 |
<?php echo $this->getChildHtml('info') ?>
|
3 |
</div>
|
4 |
-
<div class="
|
5 |
<div id="checkout-review-options">
|
6 |
<?php echo $this->getChildHtml('options') ?>
|
7 |
</div>
|
8 |
-
</div>
|
9 |
-
<?php echo $this->getChildHtml('agreements') ?>
|
10 |
-
<div class="o2ti-osc-column o2ti-osc-column-right span6 grid12-6">
|
11 |
-
<div id="checkout-review-terms">
|
12 |
-
<?php if(Mage::getStoreConfig('onestepcheckout/termcondition/allow_options')):?>
|
13 |
-
<div class="onestepcheckout-enable-terms" style="postion:relative;">
|
14 |
-
<input class="required-entry" type="checkbox" id="id_accept_terms" name="accept_terms" value="1" />
|
15 |
-
<label for="id_accept_terms"><?php echo $this->__('Eu aceito o');?> <a id="onestepcheckout-toc-link" target="_blank" href="#inline2"><?php echo $this->__('Contrato de compra e os Termos de uso do site.');?></a></label>
|
16 |
-
</div>
|
17 |
-
<?php endif ?>
|
18 |
-
</div>
|
19 |
<div id="checkout-review-submit">
|
20 |
<div class="news_subscribe">
|
21 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/allowsubscribenewsletter')==1):?>
|
22 |
<?php if(Mage::helper('onestepcheckout')->issubscribed()):?>
|
23 |
-
<
|
|
|
|
|
|
|
|
|
24 |
<?php endif?>
|
25 |
<?php endif ?>
|
26 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/allowsubscribenewsletter')==2):?>
|
27 |
<?php if(Mage::helper('onestepcheckout')->issubscribed()):?>
|
28 |
-
|
29 |
-
<
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
<?php endif?>
|
32 |
<?php endif?>
|
33 |
</div>
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
</div>
|
37 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/use_secure')){ ?>
|
38 |
<div>
|
1 |
<div id="checkout-review-load">
|
2 |
<?php echo $this->getChildHtml('info') ?>
|
3 |
</div>
|
4 |
+
<div class="coluna_1_checkout span4 grid12-4">
|
5 |
<div id="checkout-review-options">
|
6 |
<?php echo $this->getChildHtml('options') ?>
|
7 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
<div id="checkout-review-submit">
|
9 |
<div class="news_subscribe">
|
10 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/allowsubscribenewsletter')==1):?>
|
11 |
<?php if(Mage::helper('onestepcheckout')->issubscribed()):?>
|
12 |
+
<ul class="form-list">
|
13 |
+
<li class="control">
|
14 |
+
<input type="checkbox" name="subscribe_newsletter" value="0" title="<?php echo $this->__('Receber novidades') ?>" id="subscribe_newsletter" class="checkbox"> <label for="subscribe_newsletter"><?php echo $this->__('Receber novidades') ?></label>
|
15 |
+
</li>
|
16 |
+
</ul>
|
17 |
<?php endif?>
|
18 |
<?php endif ?>
|
19 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/allowsubscribenewsletter')==2):?>
|
20 |
<?php if(Mage::helper('onestepcheckout')->issubscribed()):?>
|
21 |
+
|
22 |
+
<ul class="form-list">
|
23 |
+
<li class="control">
|
24 |
+
<input type="checkbox" name="subscribe_newsletter" value="1" checked="checked" title="<?php echo $this->__('Receber novidades') ?>" id="subscribe_newsletter" class="checkbox"> <label for="subscribe_newsletter" style="float:none;"><?php echo $this->__('Receber novidades') ?></label>
|
25 |
+
</li>
|
26 |
+
</ul>
|
27 |
+
|
28 |
<?php endif?>
|
29 |
<?php endif?>
|
30 |
</div>
|
31 |
+
</div>
|
32 |
+
</div>
|
33 |
+
|
34 |
+
<div class="coluna_2_checkout span8 grid12-8">
|
35 |
+
<div id="checkout-review-terms">
|
36 |
+
<?php if(Mage::getStoreConfig('onestepcheckout/termcondition/allow_options')):?>
|
37 |
+
<div class="onestepcheckout-enable-terms" style="postion:relative;">
|
38 |
+
<ul class="form-list">
|
39 |
+
<li class="control">
|
40 |
+
<input class="required-entry checkbox" type="checkbox" id="id_accept_terms" name="accept_terms" value="1" checked="checked" s />
|
41 |
+
<label for="termos"><?php echo $this->__('Eu aceito o');?> <a id="onestepcheckout-toc-link" target="_blank" href="#inline2"><?php echo $this->__('Contrato de compra e os Termos de uso do site.');?></a></label>
|
42 |
+
</li>
|
43 |
+
</ul>
|
44 |
+
</div>
|
45 |
+
<?php endif ?>
|
46 |
+
</div>
|
47 |
+
|
48 |
+
<div style="float: right;" id="onestepcheckout_place_order_button">
|
49 |
+
<button type="button" title="<?php echo $this->__('Place Order') ?>" class="button btn-checkout" >
|
50 |
+
<span><span><?php echo $this->__('Place Order') ?></span></span></button>
|
51 |
</div>
|
52 |
<?php if(Mage::getStoreConfig('onestepcheckout/layout/use_secure')){ ?>
|
53 |
<div>
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/shipping.phtml
CHANGED
@@ -49,23 +49,24 @@
|
|
49 |
</div>
|
50 |
</li>
|
51 |
<?php echo $this->getChildHtml('shipping_form');?>
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
<li class="control">
|
55 |
-
<input type="checkbox"
|
56 |
-
</li>
|
57 |
-
<?php elseif ($this->isCustomerLoggedIn() && $this->customerHasAddresses() && !Mage::helper('onestepcheckout')->showAddressBook()):?>
|
58 |
-
<li class="no-display">
|
59 |
-
<input type="hidden" name="shipping[save_in_address_book]" value="0" />
|
60 |
-
</li>
|
61 |
-
<?php else:?>
|
62 |
-
<li class="no-display">
|
63 |
-
<input type="hidden" name="shipping[save_in_address_book]" value="1" />
|
64 |
</li>
|
65 |
-
|
66 |
-
<li class="control samebilling" >
|
67 |
-
<input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked);" class="checkbox" /><label for="shipping:same_as_billing" style="float:none;"><?php echo $this->__('Use Billing Address') ?></label>
|
68 |
-
</li>
|
69 |
</ul>
|
70 |
</div>
|
71 |
|
49 |
</div>
|
50 |
</li>
|
51 |
<?php echo $this->getChildHtml('shipping_form');?>
|
52 |
+
<ul class="form-list">
|
53 |
+
<?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses() && Mage::helper('onestepcheckout')->showAddressBook()):?>
|
54 |
+
<li class="control">
|
55 |
+
<input type="checkbox" style="_float:left;" name="shipping[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="shipping:save_in_address_book" onchange="shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="shipping:save_in_address_book" style="_width:150px;"><?php echo $this->__('Save in address book') ?></label>
|
56 |
+
</li>
|
57 |
+
<?php elseif ($this->isCustomerLoggedIn() && $this->customerHasAddresses() && !Mage::helper('onestepcheckout')->showAddressBook()):?>
|
58 |
+
<li class="no-display">
|
59 |
+
<input type="hidden" name="shipping[save_in_address_book]" value="0" />
|
60 |
+
</li>
|
61 |
+
<?php else:?>
|
62 |
+
<li class="no-display">
|
63 |
+
<input type="hidden" name="shipping[save_in_address_book]" value="1" />
|
64 |
+
</li>
|
65 |
+
<?php endif;?>
|
66 |
<li class="control">
|
67 |
+
<input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked);" class="checkbox" /><label for="shipping:same_as_billing" style="float:none;"><?php echo $this->__('Use Billing Address') ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
</li>
|
69 |
+
</ul>
|
|
|
|
|
|
|
70 |
</ul>
|
71 |
</div>
|
72 |
|
app/design/frontend/base/default/template/O2TI/onestepcheckout/daskboard/onepage/shipping/shipping_form.phtml
CHANGED
@@ -37,28 +37,34 @@
|
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
48 |
</li>
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
<label for="shipping:postcode" class="required"><em>*</em>CEP</label>
|
54 |
-
<div class="input-box">
|
55 |
-
<input type="text" title="CEP" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->htmlEscape($this->getAddress()->getPostcode()) ?>" class="input-text inputtext validate-zip-international required-entry o2tizip" placeholder="99999-999" onchange="javascript: buscarEndereco('shipping');" onkeypress="return txtBoxFormat(this, '99999-999', event);" maxlength="9" autocomplete="off" style="width: 100px;">
|
56 |
-
</div>
|
57 |
</li>
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</li>
|
63 |
<li class="wide">
|
64 |
<label for="shipping:street1" class="required"><em>*</em>Endereço</label>
|
@@ -66,30 +72,35 @@
|
|
66 |
<input type="text" title="Endereço da rua" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(1)) ?>" class="input-text inputtext required-entry" autocomplete="off">
|
67 |
</div>
|
68 |
</li>
|
69 |
-
<li class="
|
70 |
-
|
71 |
-
|
72 |
-
<
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
<
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
<label for="shipping:street4" class="required"><em>*</em>Bairro</label>
|
83 |
-
<div class="input-box">
|
84 |
-
<input type="text" title="Bairro" name="shipping[street][]" id="shipping:street4" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(4)) ?>" class="input-text inputtext required-entry" autocomplete="off">
|
85 |
-
</div>
|
86 |
</li>
|
87 |
-
<li class="
|
88 |
-
|
89 |
-
|
90 |
-
<
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
</li>
|
|
|
93 |
<li class="field">
|
94 |
<label for="shipping:region_id" class=""><em style="display: none;">*</em>Estado</label>
|
95 |
<div class="input-box">
|
@@ -106,6 +117,6 @@
|
|
106 |
<?php echo $this->getCountryHtmlSelect('shipping') ?>
|
107 |
</div>
|
108 |
</li>
|
109 |
-
|
110 |
|
111 |
</div>
|
37 |
</div>
|
38 |
</div>
|
39 |
</div>
|
40 |
+
<li class="wide">
|
41 |
+
<li class="field">
|
42 |
+
|
43 |
+
<label for="shipping:telephone" class="required"><?php echo $this->__('Telephone') ?></label>
|
44 |
+
<div class="input-box">
|
45 |
+
<input type="text" name="shipping[telephone]" value="<?php echo $this->htmlEscape($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text required-entry inputtext" placeholder="(99)9999-9999" onkeypress="return txtBoxFormat(this, '(99)9999-9999', event);" maxlength="14" autocomplete="off" id="shipping:telephone" onchange="shipping.setSameAsshipping(false);" />
|
46 |
+
</div>
|
47 |
+
|
48 |
+
</li>
|
49 |
</li>
|
50 |
+
<li class="wide">
|
51 |
+
<li class="fields">
|
52 |
+
<h2>Endereço</h2>
|
53 |
+
</li>
|
|
|
|
|
|
|
|
|
54 |
</li>
|
55 |
+
|
56 |
+
<li class="wide">
|
57 |
+
<li class="field">
|
58 |
+
<label for="shipping:postcode" class="required"><em>*</em>CEP</label>
|
59 |
+
<div class="input-box">
|
60 |
+
<input type="text" title="CEP" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->htmlEscape($this->getAddress()->getPostcode()) ?>" class="input-text inputtext validate-zip-international required-entry o2tizip" placeholder="99999-999" onchange="javascript: buscarEndereco('shipping');" onkeypress="return txtBoxFormat(this, '99999-999', event);" maxlength="9" autocomplete="off" style="width: 100px;">
|
61 |
+
</div>
|
62 |
+
</li>
|
63 |
+
<li class="field">
|
64 |
+
<div class="input-box" style="margin-top: 20px;margin-bottom: 8px;">
|
65 |
+
<a id="correio" href="#inlinecorreio" title="">Não sabe o CEP?</a>
|
66 |
+
</div>
|
67 |
+
</li>
|
68 |
</li>
|
69 |
<li class="wide">
|
70 |
<label for="shipping:street1" class="required"><em>*</em>Endereço</label>
|
72 |
<input type="text" title="Endereço da rua" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(1)) ?>" class="input-text inputtext required-entry" autocomplete="off">
|
73 |
</div>
|
74 |
</li>
|
75 |
+
<li class="wide">
|
76 |
+
<li class="field">
|
77 |
+
<label for="shipping:street2" class="required"><em>*</em>Número</label>
|
78 |
+
<div class="input-box">
|
79 |
+
<input type="text" title="Street Address 2" name="shipping[street][]" id="shipping:street2" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(2)) ?>" class="input-text inputtext required-entry" autocomplete="off">
|
80 |
+
</div>
|
81 |
+
</li>
|
82 |
+
<li class="field">
|
83 |
+
<label for="shipping:street3" class="required">Complemento</label>
|
84 |
+
<div class="input-box">
|
85 |
+
<input type="text" title="Complemento" name="shipping[street][]" id="shipping:street3" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(3)) ?>" class="input-text inputtext" autocomplete="off">
|
86 |
+
</div>
|
87 |
+
</li>
|
|
|
|
|
|
|
|
|
88 |
</li>
|
89 |
+
<li class="wide">
|
90 |
+
<li class="field">
|
91 |
+
<label for="shipping:street4" class="required"><em>*</em>Bairro</label>
|
92 |
+
<div class="input-box">
|
93 |
+
<input type="text" title="Bairro" name="shipping[street][]" id="shipping:street4" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(4)) ?>" class="input-text inputtext required-entry" autocomplete="off">
|
94 |
+
</div>
|
95 |
+
</li>
|
96 |
+
<li class="field">
|
97 |
+
<label for="shipping:city" class="required"><em>*</em>Cidade</label>
|
98 |
+
<div class="input-box">
|
99 |
+
<input type="text" title="Cidade" name="shipping[city]" value="<?php echo $this->htmlEscape($this->getAddress()->getCity()) ?>"class="input-text inputtext required-entry" id="shipping:city" autocomplete="off">
|
100 |
+
</div>
|
101 |
+
</li>
|
102 |
</li>
|
103 |
+
<li class="wide">
|
104 |
<li class="field">
|
105 |
<label for="shipping:region_id" class=""><em style="display: none;">*</em>Estado</label>
|
106 |
<div class="input-box">
|
117 |
<?php echo $this->getCountryHtmlSelect('shipping') ?>
|
118 |
</div>
|
119 |
</li>
|
120 |
+
</li>
|
121 |
|
122 |
</div>
|
js/O2TI/moip/checkout.js
CHANGED
@@ -16,6 +16,7 @@ if(Validation) {
|
|
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;
|
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 |
}
|
21 |
function countChar(val) {
|
22 |
var cvv = val.value.length;
|
js/O2TI/onestepcheckout/change-events.js
CHANGED
@@ -45,12 +45,13 @@ jQuery(function() {
|
|
45 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
46 |
jQuery("#o2ti-osc-p4").removeClass('onestepcheckout-numbers onestepcheckout-numbers-5').addClass('onestepcheckout-numbers onestepcheckout-numbers-4');
|
47 |
flag = 1;
|
48 |
-
|
|
|
49 |
jQuery('#ship_to_same_address').attr('checked','checked');
|
50 |
jQuery('#shipping\\:same_as_billing').attr('checked', false);
|
51 |
address_id = jQuery("#shipping-address-select").val();
|
52 |
updateShippingForm(address_id) ;
|
53 |
-
|
54 |
jQuery("#ship_to_same_address").val(1);
|
55 |
updateShippingType();
|
56 |
});
|
@@ -59,18 +60,23 @@ jQuery(function() {
|
|
59 |
val_address = jQuery("#ship_to_same_address").val();
|
60 |
shipaddselect = jQuery("#shipping-address-select");
|
61 |
billaddselect = jQuery("#billing-address-select");
|
|
|
62 |
if (val_address == 1) {
|
|
|
63 |
jQuery("#o2ti-osc-p2").removeClass('onestepcheckout-numbers onestepcheckout-numbers-2').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
64 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-3').addClass('onestepcheckout-numbers onestepcheckout-numbers-4');
|
65 |
jQuery("#o2ti-osc-p4").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-5');
|
66 |
flag = 0;
|
|
|
67 |
jQuery('#ship_to_same_address').attr('checked', false);
|
|
|
68 |
jQuery("#shipping_show").show();
|
69 |
jQuery("#ship_to_same_address").val(0);
|
70 |
updateShippingType();
|
71 |
} else {
|
72 |
address_id = jQuery("#shipping-address-select").val();
|
73 |
updateShippingForm(address_id) ;
|
|
|
74 |
jQuery('#shipping_show').hide();
|
75 |
jQuery("#o2ti-osc-p2").removeClass('onestepcheckout-numbers onestepcheckout-numbers-3').addClass('onestepcheckout-numbers onestepcheckout-numbers-2');
|
76 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
45 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
46 |
jQuery("#o2ti-osc-p4").removeClass('onestepcheckout-numbers onestepcheckout-numbers-5').addClass('onestepcheckout-numbers onestepcheckout-numbers-4');
|
47 |
flag = 1;
|
48 |
+
jQuery("#billing\\:save_in_address_book").val('0');
|
49 |
+
|
50 |
jQuery('#ship_to_same_address').attr('checked','checked');
|
51 |
jQuery('#shipping\\:same_as_billing').attr('checked', false);
|
52 |
address_id = jQuery("#shipping-address-select").val();
|
53 |
updateShippingForm(address_id) ;
|
54 |
+
|
55 |
jQuery("#ship_to_same_address").val(1);
|
56 |
updateShippingType();
|
57 |
});
|
60 |
val_address = jQuery("#ship_to_same_address").val();
|
61 |
shipaddselect = jQuery("#shipping-address-select");
|
62 |
billaddselect = jQuery("#billing-address-select");
|
63 |
+
|
64 |
if (val_address == 1) {
|
65 |
+
|
66 |
jQuery("#o2ti-osc-p2").removeClass('onestepcheckout-numbers onestepcheckout-numbers-2').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
67 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-3').addClass('onestepcheckout-numbers onestepcheckout-numbers-4');
|
68 |
jQuery("#o2ti-osc-p4").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-5');
|
69 |
flag = 0;
|
70 |
+
|
71 |
jQuery('#ship_to_same_address').attr('checked', false);
|
72 |
+
jQuery("#billing\\:save_in_address_book").val('1');
|
73 |
jQuery("#shipping_show").show();
|
74 |
jQuery("#ship_to_same_address").val(0);
|
75 |
updateShippingType();
|
76 |
} else {
|
77 |
address_id = jQuery("#shipping-address-select").val();
|
78 |
updateShippingForm(address_id) ;
|
79 |
+
jQuery("#billing\\:save_in_address_book").val('0');
|
80 |
jQuery('#shipping_show').hide();
|
81 |
jQuery("#o2ti-osc-p2").removeClass('onestepcheckout-numbers onestepcheckout-numbers-3').addClass('onestepcheckout-numbers onestepcheckout-numbers-2');
|
82 |
jQuery("#o2ti-osc-p3").removeClass('onestepcheckout-numbers onestepcheckout-numbers-4').addClass('onestepcheckout-numbers onestepcheckout-numbers-3');
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>o2ti_moip</name>
|
4 |
-
<version>1.2.
|
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,11 +31,11 @@ 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 |
<authors><author><name>O2TI</name><user>o2ti</user><email>contato@o2ti.com</email></author></authors>
|
36 |
-
<date>2014-06-
|
37 |
-
<time>
|
38 |
-
<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="d84423f0698fb9e0185c78fd85817615"/><dir name="Standard"><file name="Form.php" hash="e08b37acc7955f8a394ffa22fc409bf5"/><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="887389f534ec8720cafef90594bde40f"/><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="1622c290f55763f87910af733bc93363"/><file name="Write.php" hash="ac1d3e9ff033480cab6ea20af271fa91"/><file name=".ftpquota" hash="bd9db78914b33cca442f35848cc680b5"/></dir><dir name="controllers"><file name="IndexController.php" hash="b3330dd15ef7bfadc48e42b36e3d79b3"/><file name="StandardController.php" hash="e167519d1d9327627c5c510ac6641592"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75bde86c187ceb24042233abde0f88b0"/><file name="config.xml" hash="7a272a9db5fdf8259d64658afb3e2ce5"/><file name="system.xml" hash="368f88872fabe9ea7194a0e46031b65a"/></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="5884870992a8ca883279bfaa8c8ec935"/><file name="mysql4-upgrade-0.1.0-0.2.1.php" hash="fce0926f7db51fe6e85d88e0efde968e"/><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="fce0926f7db51fe6e85d88e0efde968e"/><file name="mysql4-upgrade-0.2.1-0.2.4.php" hash="ce34fa0e39beb82eb44983507360c884"/></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="9a63f0a96f6b0e5a7836b68a52b39efe"/><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="d93546b8fddf941d7d94df34f5899642"/></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="985db6a5bc906f6edf8add1a64daf22f"/><file name="TestController.php" hash="0d26f4e317fcab7a9f00ec95eada45b4"/></dir><dir name="etc"><file name="config.xml" hash="d90a7d8420ec40b5440b7e011899a21f"/><file name="system.xml" hash="6819d39789d5c6d05c505b65dc0b0408"/></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><file name=".DS_Store" hash="15bd3b937c85e0f1c2cc079dcd2daa34"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="o2ti_moip.xml" hash="804727ff150522627ce626659b4eb8f6"/><file name="o2ti_onestepcheckout.xml" hash="634264305fd55ccdccbb6f47dde7209e"/></dir><dir name="template"><dir name="O2TI"><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir><dir name="moip"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="boleto.phtml" hash="9ecd92654e0fda226a265dae40b1bd7f"/><file name="cartao.phtml" hash="22c6e3b63ea6b3fd2e606d324efbca18"/><file name="emptyupdate.phtml" hash="8625e958f0e2dd1138721b8518c8069a"/><file name="form.phtml" hash="97159f0fb40753ded7c032dfba582762"/><file name="horizontal_form.phtml" hash="b8591aa3c2448665afab4e8b2db53c15"/><file name="info.phtml" hash="c965f1f7589c0d1160c30d1427f59331"/><file name="layout_boleto.phtml" hash="6a609b4bc4bbbb610f151266983c06e1"/><file name="redirect.phtml" hash="4a778e5e9f9b391182cca210239cb18a"/><file name="refaz.phtml" hash="d81b71e6cc5ac3a96bce04f60cc8d917"/><file name="transferencia.phtml" hash="640c5c690474f70d70082446303eb63a"/><file name="vertical_form.phtml" hash="1575ac512a92646d429775e17b04d04c"/></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="774fff3f544dbf409a78912fc0a92fb1"/></dir><file name="billing.phtml" hash="9bb115ef2d82f993d17bca494715978a"/><file name="correio.phtml" hash="461b88fcbf6adffc4f23c5905932bafa"/><file name="coupon.phtml" hash="bc05962850ba33929ea44f5d90e3b179"/><file name="forgotpassword.phtml" hash="314947b27b30957a9e55f36ac456399e"/><file name="local.xml" hash="08c7ce351c502056fb9ee3a14a9b065a"/><file name="login.phtml" hash="6070e9f318fc3baf4abe273b44c29cec"/><dir name="payment"><file name="methods.phtml" hash="b3d73a82dd363b403ef3a87cbddc7141"/></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="25f02e1cf5fa04dfd59ac385c7bd6649"/><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="230aa342f398e1c2492138d3c6620e47"/></dir><file name="shipping.phtml" hash="025f8cf77f57fa9c0a753bd125ce1a78"/><dir name="shipping_method"><file name="available.phtml" hash="c8f60e3c2dbe58cce077863141f6de49"/></dir><file name="shipping_method.phtml" hash="58c56da9e30df17c997e08e20e32a8ee"/></dir></dir><file name="daskboard.phtml" hash="ed2a3a7050d23145d69aa549051526b1"/><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></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></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="741e3ead95eeb64d9a3545b30ddff304"/><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="base"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="db05bd81fafa80734eb7a0ffc98a884f"/><file name="formulario.css" hash="cfd9fefe3e825e38bf55856e99fb11f1"/><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="e751ac2b1b269faf77f8cea58848151e"/></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="39f61bb34cd4c8ae95a771d2593ccfc3"/><file name="formulario.css" hash="cfd9fefe3e825e38bf55856e99fb11f1"/><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="5b6f1f4b87e5f306a9937a470c0e4da2"/></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></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="22083858d5c72381bac98513bb401e9a"/><file name="change-events.js" hash="eacf87693bd383d54b1a542ad1444e6e"/><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="26db92ec784ba3d6ba4d48ba5774dd58"/><file name="MOIP_SQL_MANUAL_INSTALATION.txt" hash="13eae7f8c8c9f6acb5011bb6afd2e514"/></dir></target></contents>
|
39 |
<compatible/>
|
40 |
<dependencies><required><php><min>4.0.0</min><max>15.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>
|
41 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>o2ti_moip</name>
|
4 |
+
<version>1.2.5</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 de metodos de json e xml do módulo.</notes>
|
35 |
<authors><author><name>O2TI</name><user>o2ti</user><email>contato@o2ti.com</email></author></authors>
|
36 |
+
<date>2014-06-17</date>
|
37 |
+
<time>12:08:32</time>
|
38 |
+
<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="d84423f0698fb9e0185c78fd85817615"/><dir name="Standard"><file name="Form.php" hash="7eccfd6ace8793b829cfdf33332562b5"/><file name="Info.php" hash="a1826c09d72b4310573cae391b8a0f06"/><file name="Novaforma.php" hash="9dfbce5025124bd7e80f7ac23386aa1a"/><file name="Redirect.php" hash="57cd69d9463f9761aac1e605c075e4fc"/></dir></dir><dir name="Helper"><file name="Data.php" hash="36af3c64c424820d5e6124528959d296"/></dir><dir name="Model"><file name="Api.php" hash="a987a83d674000a09b0df48ee97f6c98"/><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="1622c290f55763f87910af733bc93363"/><file name="Write.php" hash="ac1d3e9ff033480cab6ea20af271fa91"/><file name=".ftpquota" hash="bd9db78914b33cca442f35848cc680b5"/></dir><dir name="controllers"><file name="IndexController.php" hash="0f770f795a69e425bf9dd5bf52ed0e6b"/><file name="StandardController.php" hash="e167519d1d9327627c5c510ac6641592"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75bde86c187ceb24042233abde0f88b0"/><file name="config.xml" hash="7a272a9db5fdf8259d64658afb3e2ce5"/><file name="system.xml" hash="368f88872fabe9ea7194a0e46031b65a"/></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="5884870992a8ca883279bfaa8c8ec935"/><file name="mysql4-upgrade-0.1.0-0.2.1.php" hash="fce0926f7db51fe6e85d88e0efde968e"/><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="fce0926f7db51fe6e85d88e0efde968e"/><file name="mysql4-upgrade-0.2.1-0.2.4.php" hash="ce34fa0e39beb82eb44983507360c884"/></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="9a63f0a96f6b0e5a7836b68a52b39efe"/><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="d93546b8fddf941d7d94df34f5899642"/></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="54373084da022ab3671982d6d2a51e8f"/><file name="TestController.php" hash="0d26f4e317fcab7a9f00ec95eada45b4"/></dir><dir name="etc"><file name="config.xml" hash="d90a7d8420ec40b5440b7e011899a21f"/><file name="system.xml" hash="6819d39789d5c6d05c505b65dc0b0408"/></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><file name=".DS_Store" hash="15bd3b937c85e0f1c2cc079dcd2daa34"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="o2ti_moip.xml" hash="e6cf5ef53a911954cfead51c711bc032"/><file name="o2ti_onestepcheckout.xml" hash="0520c4f35471b2cbb129ca75c7634ef3"/></dir><dir name="template"><dir name="O2TI"><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir><dir name="moip"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="boleto.phtml" hash="9ecd92654e0fda226a265dae40b1bd7f"/><file name="cartao.phtml" hash="22c6e3b63ea6b3fd2e606d324efbca18"/><file name="emptyupdate.phtml" hash="8625e958f0e2dd1138721b8518c8069a"/><file name="form.phtml" hash="97159f0fb40753ded7c032dfba582762"/><file name="horizontal_form.phtml" hash="b8591aa3c2448665afab4e8b2db53c15"/><file name="info.phtml" hash="c965f1f7589c0d1160c30d1427f59331"/><file name="layout_boleto.phtml" hash="6a609b4bc4bbbb610f151266983c06e1"/><file name="redirect.phtml" hash="4a778e5e9f9b391182cca210239cb18a"/><file name="refaz.phtml" hash="d81b71e6cc5ac3a96bce04f60cc8d917"/><file name="transferencia.phtml" hash="640c5c690474f70d70082446303eb63a"/><file name="vertical_form.phtml" hash="15cc92da37c442be254d7d702dd95e55"/></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="0d1ea39e631b8e0f305b67397f5b6b67"/></dir><file name="billing.phtml" hash="e8ba4434c06b32c7612d5bde80ab01d2"/><file name="correio.phtml" hash="461b88fcbf6adffc4f23c5905932bafa"/><file name="coupon.phtml" hash="bc05962850ba33929ea44f5d90e3b179"/><file name="forgotpassword.phtml" hash="314947b27b30957a9e55f36ac456399e"/><file name="local.xml" hash="08c7ce351c502056fb9ee3a14a9b065a"/><file name="login.phtml" hash="6070e9f318fc3baf4abe273b44c29cec"/><dir name="payment"><file name="methods.phtml" hash="b3d73a82dd363b403ef3a87cbddc7141"/></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="25f02e1cf5fa04dfd59ac385c7bd6649"/><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="288ce93953ad6393c9261459893df304"/><dir name="shipping"><file name="shipping_form.phtml" hash="79058df6163d35fa401ee859b5024457"/></dir><file name="shipping.phtml" hash="24fbfbe41cd2a8f2bb7bedf964d5aac8"/><dir name="shipping_method"><file name="available.phtml" hash="c8f60e3c2dbe58cce077863141f6de49"/></dir><file name="shipping_method.phtml" hash="58c56da9e30df17c997e08e20e32a8ee"/></dir></dir><file name="daskboard.phtml" hash="d4e4648337e492651b43363634fa60bf"/><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></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="customer"><dir name="widget"><file name="dob.phtml" hash="7ac1cc016c90251d0c423d7347e9d715"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></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="741e3ead95eeb64d9a3545b30ddff304"/><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="base"><dir name="default"><dir name="O2TI"><dir name="moip"><dir name="css"><file name="bootstrap.css" hash="db05bd81fafa80734eb7a0ffc98a884f"/><file name="formulario.css" hash="340450e2b6647a33e50efa5999ef130c"/><file name="formulario_horizontal.css" hash="9eeeae1f0a700f4d7f3f8a86bd73e24f"/><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"/><file name="hodor_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="2e97028c3cf4c74bbc25a533ef55fdd7"/></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="39f61bb34cd4c8ae95a771d2593ccfc3"/><file name="formulario.css" hash="cfd9fefe3e825e38bf55856e99fb11f1"/><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="5b6f1f4b87e5f306a9937a470c0e4da2"/></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></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="4b1fa802580330a77296d1e30b67f8df"/></dir><file name="novamascara.js" hash="b9e977ef39649ce38245bb62a855551b"/><dir name="onestepcheckout"><file name="billing.js" hash="22083858d5c72381bac98513bb401e9a"/><file name="change-events.js" hash="c3793215150d62694c182451dd49e15d"/><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="26db92ec784ba3d6ba4d48ba5774dd58"/><file name="MOIP_SQL_MANUAL_INSTALATION.txt" hash="13eae7f8c8c9f6acb5011bb6afd2e514"/></dir></target></contents>
|
39 |
<compatible/>
|
40 |
<dependencies><required><php><min>4.0.0</min><max>15.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>
|
41 |
</package>
|
skin/frontend/base/default/O2TI/moip/css/formulario.css
CHANGED
@@ -3,7 +3,7 @@ ul.form-list .wide > div.input-box > select{width: 100% !important;}
|
|
3 |
ul.form-list .wide.cc-cvv > div{display: block;float: left;}
|
4 |
ul.form-list .wide.cc-cvv > div.cc{width: 60% !important;}
|
5 |
ul.form-list .wide.cc-cvv > div.cvv{width: 20% !important;margin-left: 10% !important;}
|
6 |
-
ul.form-list .wide.cc-validade > div > select{width: 35% !important;margin-left: 5% !important;float: left;}
|
7 |
ul.form-list .wide.cc-validade > div > select#credito_expiracao_mes{margin: 0 !important;}
|
8 |
|
9 |
ul.form-list.dados-titular > li > label{clear: none !important; width: 105px;float: left !important;padding-top: 5px;}
|
3 |
ul.form-list .wide.cc-cvv > div{display: block;float: left;}
|
4 |
ul.form-list .wide.cc-cvv > div.cc{width: 60% !important;}
|
5 |
ul.form-list .wide.cc-cvv > div.cvv{width: 20% !important;margin-left: 10% !important;}
|
6 |
+
ul.form-list .wide.cc-validade > div > select{ margin: 0 !important;width: 35% !important;margin-left: 5% !important;float: left;}
|
7 |
ul.form-list .wide.cc-validade > div > select#credito_expiracao_mes{margin: 0 !important;}
|
8 |
|
9 |
ul.form-list.dados-titular > li > label{clear: none !important; width: 105px;float: left !important;padding-top: 5px;}
|
skin/frontend/base/default/O2TI/moip/css/formulario_horizontal.css
CHANGED
@@ -3,7 +3,7 @@ ul.form-list .wide > div.input-box > select{width: 100% !important;}
|
|
3 |
ul.form-list .wide.cc-cvv > div{display: block;float: left;}
|
4 |
ul.form-list .wide.cc-cvv > div.cc{width: 60% !important;}
|
5 |
ul.form-list .wide.cc-cvv > div.cvv{width: 20% !important;margin-left: 10% !important;}
|
6 |
-
ul.form-list .wide.cc-validade > div > select{width: 35% !important;margin-left: 5% !important;float: left;}
|
7 |
ul.form-list .wide.cc-validade > div > select#credito_expiracao_mes{margin: 0 !important;}
|
8 |
|
9 |
ul.form-list.dados-titular > li > label{clear: none !important; width: 105px;float: left !important;padding-top: 5px;}
|
3 |
ul.form-list .wide.cc-cvv > div{display: block;float: left;}
|
4 |
ul.form-list .wide.cc-cvv > div.cc{width: 60% !important;}
|
5 |
ul.form-list .wide.cc-cvv > div.cvv{width: 20% !important;margin-left: 10% !important;}
|
6 |
+
ul.form-list .wide.cc-validade > div > select{ margin: 0 !important;width: 35% !important;margin-left: 5% !important;float: left;}
|
7 |
ul.form-list .wide.cc-validade > div > select#credito_expiracao_mes{margin: 0 !important;}
|
8 |
|
9 |
ul.form-list.dados-titular > li > label{clear: none !important; width: 105px;float: left !important;padding-top: 5px;}
|
skin/frontend/base/default/O2TI/onestepcheckout/css/hodor_onestepcheckout.css
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.o2ti-osc-block-content{padding:12px;border: 1px solid #ccc;border-radius: 0 0 5px 5px}
|
2 |
+
.o2ti-osc-block-contentb{border: 1px solid #ccc;border-radius: 0 0 5px 5px}
|
3 |
+
.form-list .field{width: 43% !important;float:left;margin-right: 7%;}
|
4 |
+
.form-list .wide{width: 93%;clear:both;}
|
5 |
+
.form-list .input-box{width: 100% !important;}
|
6 |
+
.form-list .field .input-box{width: 100% !important;padding-right: 40px;}
|
7 |
+
.field.dob .field{width:100%;}
|
8 |
+
input[type="checkbox"]{float: left; cleaR: none;margin-right: 10px;margin-top:2px}
|
9 |
+
.form-list input[type="text"],.form-list input[type="password"] , .form-list select{width: 100% !important;}
|
10 |
+
.sp-methods dt, .sp-methods dd{width: 100%; clear: both;}
|
11 |
+
.sp-methods dt input[type="radio"]{floaT:left;}
|
12 |
+
.sp-methods dt label{margin-top: 0px;display: block;float: left;margin-left:10px}
|
13 |
+
.input-text.qty{text-align:center;border-radius: 5px}
|
14 |
+
#loginbox{float: left;margin-bottom: 10px;}
|
15 |
+
#loading-mask{position: fixed;top: 0; left: 0;width: 100%; height: 100%; display: none;}
|
16 |
+
#loading-mask > p{box-shadow: 0 0 10px #666666;border:1px solid blue;background: #fff; width: 290px; text-align: center; padding: 20px;border-radius: 10px;position:absolute; left: 50%;top: 10%;margin-left: -165px;}
|
17 |
+
.o2ti-osc-block-title > h3 {padding-top: 5px;}
|
18 |
+
textarea {max-width: 280px;min-width: 280px;overflow: auto;}
|
19 |
+
.sp-methods .form-list {padding-left: 0px;}
|
20 |
+
tr {border-top: 1px solid #CCCCCC;}
|
21 |
+
#none {float:left}
|
22 |
+
.main {
|
23 |
+
padding: 0;
|
24 |
+
min-height: 370px;
|
25 |
+
}
|
26 |
+
#checkout-review-table-wrapper {
|
27 |
+
overflow-x: visible !important;
|
28 |
+
}
|
29 |
+
#co-billing-form{clear:both;}
|
30 |
+
.update_shipping, .update_payment {width: 150px; margin: 0 auto; text-align: center; font-size: 14px; min-height: 115px; padding-top: 50px;}
|
31 |
+
#co-payment-form {min-height: 150px !important;}
|
32 |
+
#advice-required-entry-id_accept_terms{position:relative !important;}
|
33 |
+
.sp-methods .form-list {padding-left: 0px !important;}
|
skin/frontend/base/default/O2TI/onestepcheckout/css/onestepcheckout.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 { display: block; width: 65%; margin-left: 2%; float: left; }
|
5 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .o2ti-osc-column-middle { display: block; width: 47%; float: left; min-width: 290px !important; }
|
6 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .o2ti-osc-column-right { display: block; width: 48%; float: left; margin-left: 2%; min-width: 283px !important; }
|
7 |
-
.o2ti-osc-checkoutcontainer .o2ti-osc-block-title h3 { margin: 0; padding: 5px; }
|
8 |
.o2ti-osc-checkoutcontainer .o2ti-osc-block-content { border: 1px solid #ccc; border-radius: 0 0 5px 5px; padding: 15px; }
|
9 |
.o2ti-osc-checkoutcontainer .review { float: left; width: 97%; clear: both; margin-top: 20px; }
|
10 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .shipping-payment { width: 45%; float: left; min-width: 290px !important; }
|
@@ -13,12 +13,21 @@
|
|
13 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-middle { width: 100%; clear: both; margin: 0; }
|
14 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-middle #id_comments { width: 100%; border-radius: 5px; clear: both; margin: 0; }
|
15 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-right { width: 100%; clear: both; margin: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
/* form list */
|
17 |
.form-list .field { float: left !important; width: 47.5% !important; }
|
18 |
.form-list .field.odd { margin-left: 5%; }
|
19 |
.form-list .wide,
|
20 |
.form-list .fields { width: 100%; clear: both; }
|
21 |
-
.form-list label {
|
22 |
.form-list label em { position: absolute; top: 0; right: 0; color: red; }
|
23 |
.form-list .input-box { width: 100% !important; }
|
24 |
.form-list .input-box input,
|
@@ -41,4 +50,12 @@
|
|
41 |
.o2ti-osc-block { min-width: 290px !important; }
|
42 |
#shipping_show {
|
43 |
margin-top: 10px !important;
|
44 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 { display: block; width: 65%; margin-left: 2%; float: left; }
|
5 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .o2ti-osc-column-middle { display: block; width: 47%; float: left; min-width: 290px !important; }
|
6 |
.o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .o2ti-osc-column-right { display: block; width: 48%; float: left; margin-left: 2%; min-width: 283px !important; }
|
7 |
+
.o2ti-osc-checkoutcontainer .o2ti-osc-block-title h3 { margin: 0; padding: 5px; line-height: 1.50; }
|
8 |
.o2ti-osc-checkoutcontainer .o2ti-osc-block-content { border: 1px solid #ccc; border-radius: 0 0 5px 5px; padding: 15px; }
|
9 |
.o2ti-osc-checkoutcontainer .review { float: left; width: 97%; clear: both; margin-top: 20px; }
|
10 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .shipping-payment { width: 45%; float: left; min-width: 290px !important; }
|
13 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-middle { width: 100%; clear: both; margin: 0; }
|
14 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-middle #id_comments { width: 100%; border-radius: 5px; clear: both; margin: 0; }
|
15 |
.o2ti-opc-2columns .o2ti-osc-checkoutcontainer .o2ti-osc-column-2 .review .o2ti-osc-column-right { width: 100%; clear: both; margin: 0; }
|
16 |
+
.coluna_1_checkout.span4.grid12-4 {
|
17 |
+
float: left;
|
18 |
+
width: 35%;
|
19 |
+
}
|
20 |
+
.checkbox {z-index: 9;}
|
21 |
+
.coluna_2_checkout.span8.grid12-8 {
|
22 |
+
float: left;
|
23 |
+
width: 65%;
|
24 |
+
}
|
25 |
/* form list */
|
26 |
.form-list .field { float: left !important; width: 47.5% !important; }
|
27 |
.form-list .field.odd { margin-left: 5%; }
|
28 |
.form-list .wide,
|
29 |
.form-list .fields { width: 100%; clear: both; }
|
30 |
+
.form-list label { position: relative; clear: both; }
|
31 |
.form-list label em { position: absolute; top: 0; right: 0; color: red; }
|
32 |
.form-list .input-box { width: 100% !important; }
|
33 |
.form-list .input-box input,
|
50 |
.o2ti-osc-block { min-width: 290px !important; }
|
51 |
#shipping_show {
|
52 |
margin-top: 10px !important;
|
53 |
+
}
|
54 |
+
.checkout-onepage-index .col-main {
|
55 |
+
width: 100% !important;
|
56 |
+
}
|
57 |
+
label.label_pf_pj {
|
58 |
+
float: none;
|
59 |
+
}
|
60 |
+
h2{line-height: 1.50;}
|
61 |
+
.onestepcheckout-numbers{background-position: 14px 6px !important;}
|