Thursday, July 29, 2021
2 changes · master
Resolved issues and error corrections
This fix ensures prices shown in the website shop autocomplete search appear as intended instead of displaying visible HTML formatting text. Customers see cleaner, correctly formatted price information while browsing products through search suggestions.
Original PR description
/shop/products/autocomplete return price already rendered with monetary
widget, so it is plain html like:
"$ <span class=\"oe_currency_value\">12.00</span>"
It need to be marked MarkupSafe to avoid the escaping.
Description of the issue/feature this PR addresses:
Current behavior before PR:
Desired behavior after PR is merged:
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe Analysis button is restored on worksheet template forms after it disappeared during a module restructuring. The change moves this behavior into the shared worksheet module so Field Service and Quality can both use it consistently.
Original PR description
Before this commit: The 'analysis' button is missing when going to field service > configuration > worksheet templates > open the form view This is happening after introducing the new worksheet module from industry_fsm_report to allow other modules to create their worksheet. see: 0324acc After this commit: The 'analysis' button will be displayed. Also, move that part in the worksheet module as we also want the 'analysis' button in Quality. Hence make it generic. Task-2555286