-
- Downloads
[IMP] crm: merge lead and opportunity form views
When redirecting to record, the wrong 'form' view will sometimes be
loaded. A 'hack' has been done in crm_lead.py to redirect the user to
the relevant 'form' view based on the value of the 'type' field.
However, this solution is not clean as it does not solve all cases
(multiple crm.lead records loaded from the activity systray, reloading
the page after redirection, etc.)
Goal of this task is to solve those issues by merging crm.lead.form.lead and
crm.lead.form.opportunity form views. That way multi records actions will
always display the relevant information according to record type.
Note: Here some fields used as a twice in the form view just to stay
close to the current design. Still few things which are not possible
here for 'lead' and 'opportunity', that is
* A dynamic 'placeholder' on 'name' field.
* A 'domain' on 'partner_id' field.
* A 'widget' on 'probability' field.
Task 47118
closes odoo/odoo#32248
Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
Showing
- addons/crm/models/crm_lead.py 5 additions, 43 deletionsaddons/crm/models/crm_lead.py
- addons/crm/report/crm_opportunity_report_views.xml 1 addition, 2 deletionsaddons/crm/report/crm_opportunity_report_views.xml
- addons/crm/static/src/js/tours/crm.js 2 additions, 2 deletionsaddons/crm/static/src/js/tours/crm.js
- addons/crm/views/crm_lead_views.xml 259 additions, 338 deletionsaddons/crm/views/crm_lead_views.xml
- addons/crm/views/crm_team_views.xml 2 additions, 9 deletionsaddons/crm/views/crm_team_views.xml
- addons/crm/views/res_partner_views.xml 0 additions, 7 deletionsaddons/crm/views/res_partner_views.xml
- addons/crm/wizard/crm_lead_to_opportunity.py 1 addition, 1 deletionaddons/crm/wizard/crm_lead_to_opportunity.py
- addons/crm/wizard/crm_merge_opportunities.py 1 addition, 6 deletionsaddons/crm/wizard/crm_merge_opportunities.py
- addons/crm_iap_lead_website/views/crm_lead_view.xml 5 additions, 13 deletionsaddons/crm_iap_lead_website/views/crm_lead_view.xml
- addons/sale_crm/views/crm_lead_views.xml 4 additions, 4 deletionsaddons/sale_crm/views/crm_lead_views.xml
- addons/website_crm_partner_assign/views/crm_lead_views.xml 3 additions, 35 deletionsaddons/website_crm_partner_assign/views/crm_lead_views.xml
Loading
Please register or sign in to comment