You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.2 KiB
46 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="crm_lead_view_form_i" model="ir.ui.view">
|
|
<field name="name">crm.lead.form.inherit</field>
|
|
<field name="model">crm.lead</field>
|
|
<field name="inherit_id" ref="crm.crm_lead_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='lead']" position="after">
|
|
<field name="check_stage_ids" invisible="1"/>
|
|
<page string="Check List" name="check_list"
|
|
attrs="{'invisible':[('check_stage_ids','=',False)]}">
|
|
<field name="checklist_progress" widget="percentpie"/>
|
|
<separator/>
|
|
<field name="check_list_ids"
|
|
widget="many2many_checkboxes"/>
|
|
<separator string="History"/>
|
|
<field name="check_list_history" options="{'no_create': True, 'no_create_edit':True}">
|
|
<tree string="History" editable="bottom" default_order='id desc'>
|
|
<field name="check_item"/>
|
|
<field name="stage_id"/>
|
|
<field name="list_action"/>
|
|
<field name="user_id"/>
|
|
<field name="change_date"/>
|
|
</tree>
|
|
</field>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="crm_case_kanban_view_leads_i" model="ir.ui.view">
|
|
<field name="name">crm.lead.kanban.lead.inherit</field>
|
|
<field name="model">crm.lead</field>
|
|
<field name="inherit_id" ref="crm.crm_case_kanban_view_leads"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='priority']" position="after">
|
|
<field name="checklist_progress"/>
|
|
</xpath>
|
|
<xpath expr="//div[hasclass('oe_kanban_content')]" position="inside">
|
|
<field name="checklist_progress" widget="progressbar"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|