Jump to content

[PrestaTIPS] passer d'un panier à l'autre dans l'admin


Recommended Posts

Bonjour,

Dans l'admin pour passer d'un panier à l'autre une fois le détail d'un panier ouvert voici une petite modif qui évite de revenir à la liste à chaque fois.

fichier à modifier AdminCarts.php dans votre/site/xxxadmin/tabs/

ligne 59 ajouter ceci avant // display cart header

        if ($prevCart = Db::getInstance()->getValue('SELECT id_cart FROM '._DB_PREFIX_.'cart WHERE id_cart < '.(int)$cart->id.' ORDER BY id_cart DESC'))
       $prevCart = '';
       if ($nextCart = Db::getInstance()->getValue('SELECT id_cart FROM '._DB_PREFIX_.'cart WHERE id_cart > '.(int)$cart->id.' ORDER BY id_cart ASC'))
       $nextCart = '';



et ligne 60 apres // display cart header

remplacer

    echo ''.(($customer->id) ? $customer->firstname.' '.$customer->lastname : $this->l('Guest')).' - '.$this->l('Cart #').sprintf('d', $cart->id).' '.$this->l('from').' '.$cart->date_upd.'';



par

echo '

'.$prevCart.'
'.(($customer->id) ? $customer->firstname.' '.$customer->lastname : $this->l('Guest')).' - '.$this->l('Cart #').sprintf('d', $cart->id).' '.$this->l('from').' '.$cart->date_upd.'
'.$nextCart.'
';



et enfin copier les images jointes arrow-left.png et arrow-right.png dans votresite/img/admin/

voir les images avant après pour le résultat

voili voilou

cordialement phil

35930_1JO46YTSHwiskK5ShElm_t

35931_440wVChRR1oFHTestyJN_t

35932_nreeJDDsimjHg4oLTimP_t

35933_ksXn2zPTenJM2h0SDTdv_t

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...