Try the Demo

Magento Forum

   
one page checkout issue
 
andreladocruz
Guru
 
Total Posts:  322
Joined:  2008-05-07
Brazil
 

in my store sometimes when you´re trying to buy and are in the checkout process the system send you back to the cart.

customers are having to try two, tree or four times to get the order done.

all cache are desabled.

running 1.2.0.1

 Signature 

André Cruz
BioStore Ecommerce Group
Especialista em E-commerceLoja Virtual 100% Magento

 
Magento Community Magento Community
Magento Community
Magento Community
 
andreladocruz
Guru
 
Total Posts:  322
Joined:  2008-05-07
Brazil
 

sirs,

this is a very urgent issue…

for one of our payment method (Boleto Bancário) the sales are simply nor working.

testing with google chrome it said the the page “stop responding” and did not went back to cart.

with another payment method (Cartão de Crédito), it´s working well.

nothing where changed since the upgrade to 1.2.0.1

 Signature 

André Cruz
BioStore Ecommerce Group
Especialista em E-commerceLoja Virtual 100% Magento

 
Magento Community Magento Community
Magento Community
Magento Community
 
andreladocruz
Guru
 
Total Posts:  322
Joined:  2008-05-07
Brazil
 

Friends,

I just found that the problem was in the app/design/frontend/Farmadelivery/default/template/payment/info/default.phtml

we were testing the method type to put a link to re-print the document that the customer uses to pay.

the code was:

$html $this->htmlEscape($this->getMethod()->getTitle());
$code $this->htmlEscape($this->getMethod()->getCode());

echo 
$html;


if (
$code == "Boleto_standard"){
    $loja_id 
$this->getMethod()->getConfigData('LojaID');
    
$venda $this->getMethod()->getData();
    
$venda $venda['info_instance'];
    
$venda $venda->getOrder()->getData();
    
$venda_id $venda['increment_id'];
    echo 
" <a href='https://www.pagador.com.br/pagador/reenvia.asp?id_loja=$loja_id&VENDAID;=$venda_id' target='_blank'>[Re-emitir boleto]</a>";
}

On line

$venda $this->getMethod()->getData();
a system exception occurs in new orders

any help?

 Signature 

André Cruz
BioStore Ecommerce Group
Especialista em E-commerceLoja Virtual 100% Magento

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top