-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrm_view.xml
More file actions
51 lines (46 loc) · 1.72 KB
/
Copy pathcrm_view.xml
File metadata and controls
51 lines (46 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="crm_lead_stat_form" model="ir.ui.view">
<field name="name">crm.lead.stat.form</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_lead_view_form"></field>
<field name="arch" type="xml">
<xpath expr="//notebook" position="inside">
<page string="Stage stats">
<field name="stage_stat_ids" readonly="1">
<tree string="A2 Sales">
<field name="stage_from_id" />
<field name="stage_to_id" />
<field name="date" />
<field name="diff_days" />
</tree>
</field>
</page>
</xpath>
</field>
</record>
<record id="crm_stage_stat_tree" model="ir.ui.view">
<field name="name">crm.stage.stat.tree</field>
<field name="model">crm.stage.stat</field>
<field name="arch" type="xml">
<tree string="CRM Stage Stats" edit="0" create="0" delete="0">
<field name="lead_id" />
<field name="stage_from_id" />
<field name="stage_to_id" />
<field name="date" />
<field name="diff_days" />
</tree>
</field>
</record>
<record id="action_crm_stage_stat" model="ir.actions.act_window">
<field name="name">CRM Stage Stat</field>
<field name="res_model">crm.stage.stat</field>
<field name="view_mode">tree,pivot</field>
</record>
<menuitem id="menu_crm_stage_stats"
name="CRM Stage Stats"
parent="crm.crm_menu_report"
action="action_crm_stage_stat"
sequence="10"
groups="sales_team.group_sale_salesman"/>
</odoo>