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

67 lines
3.0 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="vat_registry_tax_id_external_layout">
<li t-if="company.company_registry and company.account_fiscal_country_id.code == 'SK'">
ID: <span t-field="company.company_registry"/>
</li>
<li t-if="company.income_tax_id and company.account_fiscal_country_id.code == 'SK'">
Tax ID: <span t-field="company.income_tax_id"/>
</li>
<li t-if="company.vat and company.account_fiscal_country_id.code == 'SK'">
<t t-out="company.country_id.vat_label or 'Tax ID'"/>:
<span t-out="company.vat"/>
</li>
</template>
<template id="l10n_sk_external_layout_standard" inherit_id="web.external_layout_standard">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_bold" inherit_id="web.external_layout_bold">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_boxed" inherit_id="web.external_layout_boxed">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_striped" inherit_id="web.external_layout_striped">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_bubble" inherit_id="web.external_layout_bubble">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_wave" inherit_id="web.external_layout_wave">
<xpath expr="//ul[@name='company_address_list']" position="inside">
<t t-call="l10n_sk.vat_registry_tax_id_external_layout"/>
</xpath>
</template>
<template id="l10n_sk_external_layout_folder" inherit_id="web.external_layout_folder">
<xpath expr="//div[hasclass('o_folder_company_info')]" position="after">
<div t-if="company.company_registry and company.account_fiscal_country_id.code == 'SK'">
ID: <span t-field="company.company_registry"/>
</div>
<div t-if="company.income_tax_id and company.account_fiscal_country_id.code == 'SK'">
Tax ID: <span t-field="company.income_tax_id"/>
</div>
<div t-if="company.vat and company.account_fiscal_country_id.code == 'SK'">
<t t-out="company.country_id.vat_label or 'Tax ID'"/>:
<span t-out="company.vat"/>
</div>
</xpath>
</template>
</odoo>