Files
Odoo-18.0-20251222/account_fiscal_position_vat_check/views/res_partner.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

30 lines
1.2 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2022 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="view_partner_property_form" model="ir.ui.view">
<field name="model">res.partner</field>
<field name="inherit_id" ref="account.view_partner_property_form" />
<field name="arch" type="xml">
<div role="alert" position="after">
<div
class="alert alert-warning"
role="alert"
groups="account.group_account_invoice,account.group_account_readonly"
invisible="not show_warning_vat_required"
>
<b>Missing VAT number</b>: this partner has the fiscal position <em>
<field name="property_account_position_id" readonly="1" />
</em> that require to know the VAT number of the partner.
</div>
</div>
<group name="sale" position="inside">
<field name="show_warning_vat_required" invisible="1" />
</group>
</field>
</record>
</odoo>