Show state column in all crm.phonecall tree view
This commit is contained in:
@@ -24,6 +24,9 @@ This module has been written by Alexis de Lattre from Akretion
|
|||||||
'author': 'Akretion',
|
'author': 'Akretion',
|
||||||
'website': 'http://www.akretion.com',
|
'website': 'http://www.akretion.com',
|
||||||
'depends': ['crm'],
|
'depends': ['crm'],
|
||||||
'data': ['wizard/base_partner_merge_view.xml'],
|
'data': [
|
||||||
|
'crm_view.xml',
|
||||||
|
'wizard/base_partner_merge_view.xml',
|
||||||
|
],
|
||||||
'installable': True,
|
'installable': True,
|
||||||
}
|
}
|
||||||
|
|||||||
23
crm_usability/crm_view.xml
Normal file
23
crm_usability/crm_view.xml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
© 2017 Akretion (http://www.akretion.com/)
|
||||||
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
-->
|
||||||
|
|
||||||
|
<openerp>
|
||||||
|
<data>
|
||||||
|
|
||||||
|
<record id="crm_case_inbound_phone_tree_view" model="ir.ui.view">
|
||||||
|
<field name="name">crm_usability.crm.phonecall.tree.inbound</field>
|
||||||
|
<field name="model">crm.phonecall</field>
|
||||||
|
<field name="inherit_id" ref="crm.crm_case_inbound_phone_tree_view"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="state" position="attributes">
|
||||||
|
<attribute name="invisible">0</attribute>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</openerp>
|
||||||
Reference in New Issue
Block a user