Odoo18-Base/addons/l10n_sk/views/report_invoice.xml

39 lines
1.7 KiB
XML
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_invoice_document" inherit_id="account.report_invoice_document">
<!-- add company id to partner details-->
<xpath expr="//div[@id='partner_vat_address_not_same_as_shipping']" position="before">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'SK'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
<xpath expr="//div[@id='partner_vat_address_same_as_shipping']" position="before">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'SK'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
<xpath expr="//div[@id='partner_vat_no_shipping']" position="before">
<div t-if="o.partner_id.company_registry and o.company_id.country_code == 'SK'">
ID: <span t-field="o.partner_id.company_registry"/>
</div>
</xpath>
<!-- add taxable supply -->
<xpath expr="//div[@name='due_date']" position="after">
<div class="col" t-if="o.taxable_supply_date and o.company_id.country_code == 'SK'" name="taxable_supply_date">
<strong>Taxable Supply</strong>
<div t-field="o.taxable_supply_date"/>
</div>
</xpath>
<!-- add trade registry-->
<xpath expr="//div[@name='comment']" position="after">
<p t-if="o.company_id.trade_registry and o.company_id.country_code == 'SK'" name="trade_registry">
<strong>Trade registry: </strong><t t-out="o.company_id.trade_registry"/>
</p>
</xpath>
</template>
</odoo>