zimmer-media Posted February 1, 2018 Posted February 1, 2018 If you want to see the customer group on orders list (from ps forum) change / httpdocs / controllers / admin / AdminOrdersController.php or create override find this CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`) AS `customer`, and change to CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`, \' (\', gr.`name`, \')\') AS `customer`, after LEFT JOIN `'._DB_PREFIX_.'customer` c ON (c.`id_customer` = a.`id_customer`) add LEFT JOIN `'._DB_PREFIX_.'group_lang` gr ON (gr.`id_group` = c.`id_default_group` AND gr.`id_lang`= '.(int)$this->context->language->id.') before after
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