在我的prestashop应用程序中,我通过管理员面板为特殊产品添加了折扣
Catalog->discount->Cart rules
物品在结账时显示此折扣。
但我想在item.how上显示折扣。我可以查看“产品有特殊折扣”并显示折扣百分比或金额如下图所示吗?
我在tpl文件中试过这个
{if $product.has_discount}
{if $product.discount_type === 'amount'}
<span class="p_deduction">- {$product.discount_amount}</span>
{/if}
{/if}
但是当我为所有产品添加折扣时,此代码可以正常工作。