Jump to content

Prestashop 1.6.1.4. Liste des commandes : la colonne "nouveau client" affiche 0 ou 1


Recommended Posts

Bonjour,

Dans la liste des commandes, le tableau qui liste les commandes passées a une colonne "nouveau client". Cette colonne affichait les valeurs Oui/Non. J'ai maintenant 0 ou 1 ce qui est moins lisible.

Comment retrouver le comportement antérieur ?

Merci

Link to comment
Share on other sites

Remettre l'adminOrderController d'origine^^

        $this->fields_list = array(
            'id_order' => array(
                'title' => $this->l('ID'),
                'align' => 'text-center',
                'class' => 'fixed-width-xs'
            ),
            'reference' => array(
                'title' => $this->l('Reference')
            ),
            'new' => array(
                'title' => $this->l('New client'),
                'align' => 'text-center',
                'type' => 'bool',
                'tmpTableFilter' => true,
                'orderby' => false,
                'callback' => 'printNewCustomer'
            ),
            'customer' => array(
                'title' => $this->l('Customer'),
                'havingFilter' => true,
            ),
        );
    public function printNewCustomer($id_order, $tr)
    {
        return ($tr['new'] ? $this->l('Yes') : $this->l('No'));
    }

 

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...