diff options
Diffstat (limited to 'addons/account/views/res_company_views.xml')
| -rw-r--r-- | addons/account/views/res_company_views.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/addons/account/views/res_company_views.xml b/addons/account/views/res_company_views.xml new file mode 100644 index 00000000..04edc4bc --- /dev/null +++ b/addons/account/views/res_company_views.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="view_company_form" model="ir.ui.view"> + <field name="name">res.company.form.inherit.account</field> + <field name="model">res.company</field> + <field name="inherit_id" ref="base.view_company_form"/> + <field name="arch" type="xml"> + <xpath expr="//field[@name='country_id']" position="after"> + <field name="country_code" invisible="1"/> + </xpath> + </field> + </record> +</odoo> |
