diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/sale_crm/views/crm_lead_views.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/sale_crm/views/crm_lead_views.xml')
| -rw-r--r-- | addons/sale_crm/views/crm_lead_views.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/addons/sale_crm/views/crm_lead_views.xml b/addons/sale_crm/views/crm_lead_views.xml new file mode 100644 index 00000000..b3bbac55 --- /dev/null +++ b/addons/sale_crm/views/crm_lead_views.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <record id="crm_case_form_view_oppor" model="ir.ui.view"> + <field name="name">crm.lead.oppor.inherited.crm</field> + <field name="model">crm.lead</field> + <field name="inherit_id" ref="crm.crm_lead_view_form"/> + <field name="arch" type="xml"> + <xpath expr="//button[@name='action_set_won_rainbowman']" position="before"> + <button string="New Quotation" name="action_sale_quotations_new" type="object" class="oe_highlight" + attrs="{'invisible': ['|', ('type', '=', 'lead'), '&', ('probability', '=', 0), ('active', '=', False)]}"/> + </xpath> + <button name="action_schedule_meeting" position="after"> + <button class="oe_stat_button" type="object" + name="action_view_sale_quotation" icon="fa-pencil-square-o" attrs="{'invisible': [('type', '=', 'lead')]}"> + <field name="quotation_count" widget="statinfo" string="Quotations"/> + </button> + <button class="oe_stat_button" type="object" attrs="{'invisible': ['|', ('sale_order_count', '=', 0), ('type', '=', 'lead')]}" + name="action_view_sale_order" icon="fa-usd"> + <div class="o_field_widget o_stat_info"> + <span class="o_stat_value"><field name="sale_amount_total" widget="monetary" options="{'currency_field': 'company_currency'}"/></span> + <span class="o_stat_text"> Orders</span> + <field name="sale_order_count" invisible="1"/> + </div> + </button> + </button> + </field> + </record> + + <!-- add needaction_menu_ref to reload quotation needaction when opportunity needaction is reloaded --> + <record id="crm.crm_lead_opportunities" model="ir.actions.act_window"> + <field name="context">{'default_move_type': 'opportunity', 'default_user_id': uid}</field> + </record> + + <record id="sales_team.mail_activity_type_action_config_sales" model="ir.actions.act_window"> + <field name="domain">['|', ('res_model_id', '=', False), ('res_model_id.model', 'in', ['crm.lead', 'sale.order', 'res.partner', 'product.template', 'product.product'])]</field> + </record> + +</odoo> |
