On product.template+product.categ, all accounting fields are groups="account.group_account_invoice"

This commit is contained in:
Alexis de Lattre
2019-02-15 14:53:39 +01:00
parent b2cda5e522
commit 6ecc01c108

View File

@@ -7,13 +7,31 @@
<odoo> <odoo>
<!-- In the official account module, on product category and product template,
some fields/groups are on account.group_account_invoice, some on
account.group_account_user and some on account.group_account_manager
Here, we set all those fields on account.group_account_invoice
-->
<record id="product_template_form_view" model="ir.ui.view">
<field name="name">account_usability.product.template.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="account.product_template_form_view"/>
<field name="arch" type="xml">
<field name="property_account_income_id" position="attributes">
<attribute name="groups">account.group_account_invoice</attribute>
</field>
<field name="property_account_expense_id" position="attributes">
<attribute name="groups">account.group_account_invoice</attribute>
</field>
</field>
</record>
<record id="view_category_property_form" model="ir.ui.view"> <record id="view_category_property_form" model="ir.ui.view">
<field name="name">account_usability.product.category.form</field> <field name="name">account_usability.product.category.form</field>
<field name="model">product.category</field> <field name="model">product.category</field>
<field name="inherit_id" ref="account.view_category_property_form"/> <field name="inherit_id" ref="account.view_category_property_form"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<!-- On product form view, the group for Invoicing tab is limited to account.group_account_invoice... but on product category form, it is limited to account.group_account_manager -> we fix this and also use account.group_account_invoice -->
<group name="account_property" position="attributes"> <group name="account_property" position="attributes">
<attribute name="groups">account.group_account_invoice</attribute> <attribute name="groups">account.group_account_invoice</attribute>
</group> </group>