Monday, May 17, 2021
5 changes · master
Resolved issues and error corrections
A missing supporting file was added to the live chat setup so PDF-related functionality can load correctly. This prevents potential errors caused by the live chat feature referencing a file that was not included in the expected bundle.
Original PR description
The module `@web/js/libs/pdfjs` was imported in the legacy file by PR #70375. So the file has to be added in external_lib bundle.
This fixes the website editor toolbar so list formatting controls appear together as a dropdown instead of stacking vertically. It restores the expected layout, making the editor cleaner and easier to use for content editing.
Original PR description
The list buttons in the toolbar were stacked, messing up the layout of the toolbar. This restores them as they were before https://github.com/odoo/odoo/commit/b2dd95937346561495ab86b90715210ffd9a474a somehow messed it up. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The email template screen now clarifies that the Reply-To setting applies to mass mailing only. This reduces confusion for users sending regular emails, who might otherwise expect that field to affect all outgoing messages.
Original PR description
Currently, the reply_to field is used only in the case of a mass mailing. Its label was misleading for users sending regular mail. We fix the label in order to avoid confusion. cc @Abridbus
The CRM Leads reporting list now uses the proper lead list view instead of an opportunity-focused view. Users can open lead records directly from the report list, making reporting navigation consistent with graph, pivot, and dashboard views.
Original PR description
PURPOSE When we go to CRM -> Reporting -> Leads, It shows the analysis of leads. We can open the form view of every leads from the different views wise Graph, 'Pivot', and 'Dashboard' except the 'List' view and it's a bit odd. We should be able to open the form view from corresponding leads in the list view. Currently, the view which is coming in the 'List' view is not correct and should be replaced by the same view which is rendered by action 'crm_lead_all_leads' SPECIFICATIONS - Initially, we have to fix the correct list view to be rendered and that is 'crm_case_tree_view_leads' instead of 'crm_case_tree_view_oppor'. - Next, we have added the form view in addition to the list view in view_ids of the corresponding action. This is the goal of this commit. LINKS PR #69575 Task 2497936
The CRM team reporting shortcut for Leads now opens the proper lead list instead of showing the opportunity list. This prevents confusion for sales teams and ensures lead reporting matches the selected menu option.
Original PR description
When clicking on "Teams -> Reporting (on a team vignette) -> Leads" list view used is the opportunity one. We fix it by correctly setting action views for ``action_report_crm_lead_salesteam`` reporting action. Task ID-2497936