Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
4493 Переглядів

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!!! :)

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
груд. 24
2170
0
серп. 24
1765
1
серп. 24
2797
0
лип. 24
1404
0
трав. 23
2295