Bllidz Posted February 24, 2021 Share Posted February 24, 2021 (edited) Bonjour, Je souhaiterai ajouter le nom du client dans avoirs comme sur le screen ci-dessous. Sachant que c'est dans le fichier AdminSlipController.php, j'y ai ajouté mon field et fait une jointure à la requête et ajouter le lastname dans le select. Quand je test ma requête sur phpmyadmin elle fonctionne bien. public function __construct() { $this->bootstrap = true; $this->table = 'order_slip'; $this->className = 'OrderSlip'; $this->_select = ' o.`id_shop`,c.`lastname` AS lastname' ; $this->_join .= ' LEFT JOIN ' . _DB_PREFIX_ . 'orders o ON (o.`id_order` = a.`id_order`) LEFT JOIN ' . _DB_PREFIX_ . 'customer c ON (c.`id_customer` = o.`id_customer`)'; //Jointure $this->_group = ' GROUP BY a.`id_order_slip`'; Le code pour le nom du client dans le champ //Nom Du client 'lastname' => array( 'title' => $this->trans('Nom du Client', array(), 'Admin.Global'), 'align' => 'left', 'havingFilter' => true, ), Quelqu'un aurait-il une idée ? Merci Version PS: 1.7.6.9 Edited February 24, 2021 by Bllidz Version PS (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now