Jump to content

Where is this code?


Recommended Posts

Might not be as easy as it seems.

That code comes from the helper tpl file, so it's shared among many different parts of the back office.

THis is the file: admin\themes\default\template\helpers\list/list_header.tpl. The point is, to edit one directly you should better use an override.

 

Try copying this file to override\controllers\admin\templates\orders\helpers\list

 

Create the path if doesn't exist, if that's the order list of course. As far as I could understand, it is. Then, modify it directly by changing around line 140 (1.5.6.2)

Link to comment
Share on other sites

  • 2 months later...

class:

AdminSupplyOrdersControllerCore

 

in method:

 

public function initUpdateReceiptContent()

 

find code:

 

$this->table = 'supply_order_detail';
$this->identifier = 'id_supply_order_detail';
$this->className = 'SupplyOrderDetail';
 
and replace:
 
$this->table = 'supply_order_detail';
//lutek - fix for checkbox
$this->list_id = 'supply_order_detail';
$this->identifier = 'id_supply_order_detail';
$this->className = 'SupplyOrderDetail';
 

 

Link to comment
Share on other sites

×
×
  • Create New...