51 lines
2.4 KiB
XML
51 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="l10n_cz_external_layout_standard" inherit_id="web.external_layout_standard">
|
|
<xpath expr="//ul[@name='company_address_list']" position="inside">
|
|
<li t-if="company.company_registry and company.account_fiscal_country_id.code == 'CZ'">
|
|
Company ID: <span t-field="company.company_registry"/>
|
|
</li>
|
|
<li t-if="company.vat and company.account_fiscal_country_id.code == 'CZ'">
|
|
<t t-esc="company.country_id.vat_label or 'Tax ID'"/>:
|
|
<span t-esc="company.vat"/>
|
|
</li>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="l10n_cz_external_layout_bold" inherit_id="web.external_layout_bold">
|
|
<xpath expr="//ul[@name='company_address_list']" position="inside">
|
|
<li t-if="company.company_registry and company.account_fiscal_country_id.code == 'CZ'">
|
|
Company ID: <span t-field="company.company_registry"/>
|
|
</li>
|
|
<li t-if="company.vat and company.account_fiscal_country_id.code == 'CZ'">
|
|
<t t-esc="company.country_id.vat_label or 'Tax ID'"/>:
|
|
<span t-esc="company.vat"/>
|
|
</li>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="l10n_cz_external_layout_boxed" inherit_id="web.external_layout_boxed">
|
|
<xpath expr="//ul[@name='company_address_list']" position="inside">
|
|
<li t-if="company.company_registry and company.account_fiscal_country_id.code == 'CZ'">
|
|
Company ID: <span t-field="company.company_registry"/>
|
|
</li>
|
|
<li t-if="company.vat and company.account_fiscal_country_id.code == 'CZ'">
|
|
<t t-esc="company.country_id.vat_label or 'Tax ID'"/>:
|
|
<span t-esc="company.vat"/>
|
|
</li>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="l10n_cz_external_layout_striped" inherit_id="web.external_layout_striped">
|
|
<xpath expr="//ul[@name='company_address_list']" position="inside">
|
|
<li t-if="company.company_registry and company.account_fiscal_country_id.code == 'CZ'">
|
|
Company ID: <span t-field="company.company_registry"/>
|
|
</li>
|
|
<li t-if="company.vat and company.account_fiscal_country_id.code == 'CZ'">
|
|
<t t-esc="company.country_id.vat_label or 'Tax ID'"/>:
|
|
<span t-esc="company.vat"/>
|
|
</li>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|