alltheshop Posted September 13, 2017 Share Posted September 13, 2017 Salve a tutti, avrei necessità di inserire una colonna aggiuntiva nel BO prestashop 1.7.2 , nella lista prodotti e nella lista ordini vorrei far comparire una colonna con il Codice Fornitore, da quello che ho letto la modifica è abbastanza semplice, si tratta solo di modificare il codice dei due files AdminOrdersController.php e AdminProductsController.php o tramite modifica diretta oppure preferibilmente con un file di Override che inserisca solo le modifiche richieste. Il codice per il file di override dovrebbe essere questo : <?php class AdminProductsController extends AdminProductsControllerCore { public function __construct() { parent::__construct(); // Join the table product supplier in order to get product supplier reference ( Only Work for products without combinations ) $this->_join .= ' LEFT JOIN '._DB_PREFIX_.'product_supplier ps ON ( a.id_product = ps.id_product AND ps.id_product_attribute = 0 )'; //Add new field supplier reference in field list $this->fields_list['product_supplier_reference'] = array( 'title' => $this->l('Supplier Reference'), 'align' => 'left', 'filter_key' => 'ps!product_supplier_reference', 'width' => 80 ); } } Purtroppo pero' su prestashop 1.7 non funziona più, qualcuno sa aiutarmi ? Link to comment Share on other sites More sharing options...
bissio Posted November 4, 2018 Share Posted November 4, 2018 ciao, stesso problema. Hai risolto? Link to comment Share on other sites More sharing options...
ietax Posted December 19, 2018 Share Posted December 19, 2018 Ha risolto qualcuno questo problema? grazie 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