Tuesday, December 10, 2019
5 changes
Resolved issues and error corrections
This update corrects a website editor issue caused by older icon support and prevents hidden editing labels from appearing as browser tooltips. It improves the editing experience and prepares the editor for future snippet behavior without changing the public website experience.
Original PR description
Fontawesome was reverted to 4.7 with 116057b26 in saas-13.1 but some code in master were already using new fonts. Also, the invisible left panel box is improved for future development. Indeed, the new incoming popup snippet will have the possibility to be moved in the footer. In that case, it will be itself an element of getEditabeArea(). Finally, using `Title` as invisible entry had the benefit of being translatable but has the issue to be displayed on mouse over which we don't want. Using `data-title` will fix it and will still be translatable.
This fixes an error that could occur when users opened a product’s on-hand quantities and the system needed to adjust the related action settings. Inventory users can now update or review quantities more reliably without hitting a traceback.
Original PR description
When accessing the quantities on hand of a product, `_get_quants_action` is called to specify the action returned. In some cases, the action context may be updated. This led to a traceback because the context of the action isn't a copy of the current context but a link to the current context frozendict, which cannot be updated. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes missing website course assets by moving required tour files to a browser-accessible location. It helps keep automated website course checks working reliably and prevents failures caused by unavailable images or scripts.
Original PR description
[FIX] website_slides: image no more available
[Nighly Runbot #730241](http://runbot.odoo.com/runbot/build/730241)
[FIX] website_slides: move tours under /static/
All assets have to be loadable directly from the browser, /tests/ is not
accessible, /static/ is.This fixes an issue in the customer portal where moving to another ticket page could reset or change the search bar settings. Users can now browse ticket pages while keeping their chosen search context, making navigation more predictable.
Original PR description
on the portal:
- in Timesheets, the "Group By" selector shouldn't change when going to next page
TASK-ID : 2123814This fix keeps the available task choices on helpdesk tickets consistent when logging timesheets, especially when projects, teams, companies, or customers change. It prevents valid project tasks from disappearing and avoids unnecessarily clearing a selected task in some sales-related helpdesk flows.
Original PR description
Existing static domain on task_id would be immediately swapped out for a dynamic (onchange) version thereof. Use conditional trick to merge the entire thing into the static domain, and remove it from the onchange. Task 2115472