1

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

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

所以我需要在与产品相同的行中显示与产品相关的折扣。有什么办法可以做到这一点?我在谷歌和论坛上搜索过,但没有找到答案。

提前致谢。

4

1 回答 1

1

而在 2016 年仍然没有答案。我只是在为此苦苦挣扎,过了一段时间,成功了。我不知道哪个 Prestashop 是在 2012 年发布的,但是我可以提供一些关于今天 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 中几乎没有其他代码,但这不是这个问题的一部分。

希望这会帮助任何人。

于 2016-11-29T20:03:59.897 回答