[IMP] base_comment_template multi company rules

[IMP] Move comment_template_id from account_invoice_comment_template and make it company_dependant

[IMP] base_comment_template: Add test
This commit is contained in:
Ivan Todorovich
2019-04-19 13:47:37 +00:00
committed by Pierre Verkest
parent 0bfc51ec59
commit e7d0910671
11 changed files with 124 additions and 11 deletions

View File

@@ -8,6 +8,7 @@
<search string="Comment Templates">
<field name="name"/>
<field name="position"/>
<field name="company_id" groups="base.group_multi_company"/>
</search>
</field>
</record>
@@ -17,11 +18,31 @@
<field name="model">base.comment.template</field>
<field name="arch" type="xml">
<form string="Comment Templates">
<group>
<field name="name"/>
<field name="position"/>
<field name="text" colspan="4"/>
</group>
<sheet>
<div class="oe_button_box" name="button_box">
<button name="toggle_active" type="object" class="oe_stat_button" icon="fa-archive">
<field name="active" widget="boolean_button" options="{&quot;terminology&quot;: &quot;archive&quot;}"/>
</button>
</div>
<div class="oe_title">
<h1>
<field name="name" placeholder="Name"/>
</h1>
</div>
<group>
<group>
<field name="position" widget="radio" invisible="context.get('default_position')"/>
</group>
<group>
<field name="company_id" groups="base.group_multi_company"/>
</group>
</group>
<notebook>
<page name="text" string="Comment">
<field name="text"/>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
@@ -34,6 +55,7 @@
<tree>
<field name="name"/>
<field name="position"/>
<field name="company_id" groups="base.group_multi_company"/>
</tree>
</field>
</record>

View File

@@ -0,0 +1,14 @@
<odoo>
<record id="view_partner_form" model="ir.ui.view">
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="priority" eval="2"/>
<field name="arch" type="xml">
<group name="sale" position="inside">
<field name="property_comment_template_id" attrs="{'invisible': ['|',('customer', '=', False), ('is_company', '=', False), ('parent_id', '!=', False)]}"/>
</group>
</field>
</record>
</odoo>