Skip to Content
Menu
This question has been flagged
1566 Views

good afternoon,

I am editing the sales order report, and I want to reference the new delivery address created in the res_partner.


but when the report is shown it does not show the values ​​of the new address but others. what should be the fields that I must select. Thanks a lot.


  <div>

                    <strong>Invoicing And Shipping Address</strong>

                        <div t-field="doc.partner_invoice_id"/>

                        <t t-if="doc.partner_invoice_id.street">

                            <t t-esc="doc.partner_invoice_id.street"/>

                        </t><br/>

                        <t t-if="doc.partner_invoice_id.street2">

                            <t t-esc="doc.partner_invoice_id.street2"/>

                        </t><br/>

                        <t t-if="doc.partner_invoice_id.city">

                            <t t-esc="doc.partner_invoice_id.city"/>

                        </t>

                        <t t-if="doc.partner_invoice_id.state_id">

                            <t t-esc="doc.partner_invoice_id.state_id.name"/>

                        </t><br/>

                        <t t-if="doc.partner_invoice_id.country_id">

                        <t t-esc="doc.partner_invoice_id.country_id.name"/>

                        </t><br/>

                        <t t-if="doc.partner_invoice_id.zip">

                            <t t-esc="doc.partner_invoice_id.zip"/>

                        </t><br/>  

                        <div t-field="doc.partner_invoice_id.vat"/>

                </div> 


Avatar
Discard