有人做过这种改变吗?
今天BO产品列表显示最终客户价格不含税和包含增值税。 如果可能的话,我想要显示我们的批发价格和最终客户价格,而不是。这可能是AdminProductController的一个变化,但我不知道如何。我运行PS 1.6.1.6
此致
Anders Yuran
答案 0 :(得分:0)
从PrestaShop根目录和__construct()函数中打开/controllers/admin/AdminProductsController.php,您将看到以下代码:
$this->fields_list['price'] = array(
'title' => $this->l('Base price'),
'type' => 'price',
'align' => 'text-right',
'filter_key' => 'a!price'
);
此代码负责显示产品列表中的价格,尝试使用以下代码替换代码:
$this->fields_list['price'] = array(
'title' => $this->l('WholeSale price'),
'type' => 'price',
'align' => 'text-right',
'filter_key' => 'a!wholesale_price'
);
希望它有所帮助。