Prestashop:如何在发票上显示产品折扣

时间:2012-05-11 10:45:23

标签: product prestashop invoice discount

我希望产品和团体折扣显示在我的发票上。我已将发票修改为如下所示:

参考|说明|数量|单价|折扣|总计|

因此,我需要在与产品相同的行中显示与产品相关的产品。有没有办法实现这个目标? 我在谷歌和论坛上搜索过但没有找到答案。

提前致谢。

1 个答案:

答案 0 :(得分:0)

2016年仍然没有答案。我只是用这种方式来捣乱自己,过了一会儿,成功了。我不知道2012年发布了哪个Prestashop但是,我可以提供一些关于今天1.6.1.9(我当前版本)的最新版prestashop的提示。 对于试图在prestashop中修改发票的任何人,您将在文件夹pdf中找到模板文件,文件名是invoice.product-tab.tpl,用于编辑和添加有关产品的字段(价格,税,折扣等)。 ) 您需要知道的是:

$order_detail.product_name -> returns the name of the product
$order_detail.unit_price_tax_excl_before_specific_price -> returns the price of product without tax and before discount
$order_detail.unit_price_tax_excl_including_ecotax -> returns product price without tax and included eco tax (if there is 1)
$order_detail.order_detail_tax_label -> return the tax percentage
$order_detail.product_quantity -> returns the quantity of orderd product
$order_detail.total_price_tax_incl_including_ecotax - > returns the total amout that is product price + tax

使用此代码,您可以计算百分比或现金折扣,您可以在teplate中使用它。 .tpl中还有更多其他代码,但这不是这个问题的一部分。

希望这对任何人都有帮助。