跳至內容
選單
此問題已被標幟
2 回覆
4511 瀏覽次數

Hi,

How we can add another field of product on POS receipt print out? Actually need to add a field on product with translated value of product name and need to show that under product name on receipt report.

thanks

頭像
捨棄
最佳答案

Hi shyam,

Sorry i am new to odoo might need more details like js load etc. Thanls

頭像
捨棄
最佳答案

For this you need to inherit the PosTicket template and place your code inside the order line. Here is the example how you can do it.

Suppose the field name is  'new_field_name', then 

<t t-extend="PosTicket" >

    <t t-jquery=".receipt-orderlines tr td:nth-child(1)" t-operation="append"> 

       <t t-esc="orderline.get_product().new_field_name"/> 

    </t>

</t>

Make sure you load the new filed in your js file. Hope this helps you!!! :)

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
12月 24
2178
0
8月 24
1775
1
8月 24
2819
0
7月 24
1419
0
5月 23
2305