Edit Prestashop current orders view

后端 未结 2 424
我在风中等你
我在风中等你 2021-01-16 16:34

I\'m using Prestashop 1.6.0.9.

I wish to edit the raw HTML for this part.

\"enter

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-16 17:03

    If you would like column with carrier add this (behind: "$this->_join = '"):

        LEFT JOIN '._DB_PREFIX_.'carrier ca ON (ca.id_carrier = a.id_carrier) 
    

    and to field list (behind "$this->fields_list = array(") add this:

    'carrier' => array(
                'title' => $this->l('Carrier'),
                'align' => 'text-center',            
                'filter_key' => 'ca!name'
       ),
    

提交回复
热议问题