Jump to content

Carriers Column in Orders Tab in BO


krizzu

Recommended Posts

Hi

 

I would like to modify Orders Tab in Back Ofiice to have additional columnt with carriers displayed on each order, I got plenty of carriers and its hard to make daily orders without this feature.

 

Any tips how to do that?

 

Best regards Chris.

 

Link to comment
Share on other sites

Create override/controllers/admin/AdminOrdersController.php with the following:

<?php

class AdminOrdersController extends AdminOrdersControllerCore
{
    public function __construct() {
        parent::__construct();
        
        $this->_join .= ' LEFT JOIN `'._DB_PREFIX_.'carrier` ca ON a.`id_carrier` = ca.`id_carrier`';
        $this->_select .= ', ca.`name` as carrier_name';
        
        $this->fields_list['carrier_name'] = array(
            'title' => $this->l('Carrier')
        );
    }
}

Remember to go to Advanced Parameters > Performance tab and click the "Clear cache" button (or manually delete cache/class_index.php) so PrestaShop can find the override.

  • Like 1
Link to comment
Share on other sites

Create override/controllers/admin/AdminOrdersController.php with the following:

<?php

class AdminOrdersController extends AdminOrdersControllerCore
{
    public function __construct() {
        parent::__construct();
        
        $this->_join .= ' LEFT JOIN `'._DB_PREFIX_.'carrier` ca ON a.`id_carrier` = ca.`id_carrier`';
        $this->_select .= ', ca.`name` as carrier_name';
        
        $this->fields_list['carrier_name'] = array(
            'title' => $this->l('Carrier')
        );
    }
}

Remember to go to Advanced Parameters > Performance tab and click the "Clear cache" button (or manually delete cache/class_index.php) so PrestaShop can find the override.

 

Thank you rocky you made my day :)

  • Like 1
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...