2012-05-11 18 views
1

請求書に商品やグループ割引が表示されます。私は以下のように請求書を変更しました:Prestashop:請求書に製品ディスカウントを表示する方法

説明|数量|単価| |割引合計|

私は製品と同じ行に製品関連の数字を表示する必要があります。これを達成する方法はありますか? Googleとフォーラムで検索しましたが、回答が見つかりませんでした。

ありがとうございます。

答えて

0

2016年にまだ答えがありません。私はちょうどこれで私の自己をstruglingしたしばらくして、成功した。私はPrestashopが2012年にリリースされたのは知りませんが、今日のバージョン1.6.1.9(私の現在のバージョン)にある最新のprestashopバージョンのヒントをいくつか与えることができます。 プリストショットでインボイスを変更しようとしている人は、pdfフォルダにテンプレートファイルがあり、ファイル名(invoice.product-tab.tpl)は製品に関するフィールド(価格、税金、割引など)あなたがPRECENTAGEまたは現金での割引を計算することができますし、teplateでそれを使用することができます。このコードで

$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 

: あなたが知っておく必要があるのはこれです。 .tplには他にもいくつかのコードがありますが、この質問の一部ではありません。

これは誰にも役立ちます。

関連する問題