تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
3332 أدوات العرض

Hello I have a field called ice on the customer form and I want it to appear on the invoice printing report under the customer address thank you

الصورة الرمزية
إهمال
أفضل إجابة

Hello HANT,

For that, You want to inherit existing report and add your own fields.

Try below code :-

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>

<template id="account_invoice_report_add_field" inherit_id="account.report_invoice_document">
    <xpath expr="//span[@t-if='o.partner_id.vat']" position="before">
        Ice : <t t-field="o.partner_id.ice"/>
    </xpath>
</template>

</data>
</odoo>


Hope it will works for you.

Thanks,

الصورة الرمزية
إهمال
أفضل إجابة

Where can I add this 
Which file please?

الصورة الرمزية
إهمال