Initial commit: L10N_Europe packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:52 +02:00
commit 9803722600
2377 changed files with 380711 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_invoice_document" inherit_id="account.report_invoice_document">
<!-- add company id -->
<xpath expr="//div[@id='partner_vat_address_not_same_as_shipping']" position="after">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'ES'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
<xpath expr="//div[@id='partner_vat_address_same_as_shipping']" position="after">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'ES'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
<xpath expr="//div[@id='partner_vat_no_shipping']" position="after">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'ES'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
</template>
</odoo>