Skip to Content
Menu
This question has been flagged
1 Reply
3094 Views


Hi,


I'm trying to add a product's internal note on report_saleorder_document but i can't find out the name of this field

<t t-foreach="doc.order_line" t-as="line">
    <span t-field="line.internalnotes"/>
</t>

What is the propper name of this field?

Where can I find a list of all the fields for products?



Avatar
Discard
Best Answer

Hi,

The technical name of the field Internal Notes inside the product master is description, to get the technical name of any field, just activate the developer mode and hover your mouse pointer over the corresponding field:




<t t-foreach="doc.order_line" t-as="line">
    <span t-field="line.product_id.description"/>
</t>

Thanks

Avatar
Discard