Friday, September 17, 2021
6 changes · master
New functionality added to Odoo
Adds a Social app foundation for managing social media accounts and preparing posts for channels such as Twitter, LinkedIn, Facebook, and Instagram. This helps businesses coordinate social publishing from within Odoo, including media attachments and channel-specific posting workflows.
This update adds dedicated form views for field service task analysis reports instead of relying on automatically generated layouts. It makes report details easier and more consistent to review for users working with field service and related sales information.
Original PR description
Currently the form view is auto-generated in the task analysis report. Task-ID: 2645891
Enhancements to existing features
The consolidated balance report now shows profits as positive amounts and losses as negative amounts, matching common business expectations. This makes consolidated financial results easier to read and reduces confusion when reviewing group performance.
Original PR description
The user would expect profits to be positive and loss negative when seeing the consolidated balance, but it is not the case at the moment.
Resolved issues and error corrections
Timesheets now correctly treat approved employee leave as time off instead of extra worked hours. This prevents inflated overtime figures and gives managers more accurate attendance and workload reporting.
Original PR description
Before commit: while an employee is on leave, the timesheet app considers it as overtime and due to that, it shows extra worked hours. In actuality, the employee was on leave. After commit: When employees put leaves than the Timesheet consider it as leaves rather than overtime. TaskId- 2635590
Miscellaneous changes
until now, if there are several currencies managed, the dropdown did not know how to display all of them, it was larger than the page Now there is an overflow allowing to navigate in the dropdown to be able to see everything easily opw-2536214 Forward-Port-Of: odoo/enterprise#20939 Forward-Port-Of: odoo/enterprise#20926
Original PR description
until now, if there are several currencies managed, the dropdown did not know how to display all of them, it was larger than the page Now there is an overflow allowing to navigate in the dropdown to be able to see everything easily opw-2536214 Forward-Port-Of: odoo/enterprise#20939 Forward-Port-Of: odoo/enterprise#20926
In some custom action/view, the control panel might have "searchViewButtons" with no search bar. But on mobile, the 'searchViewButtons' is only shown in the separated mobile search view and users cannot then click on the search bar to open this view. To fix this issue, we add the 'searchViewButtons' on the main component of the control panel even if there is no search bar. Note that "web_enterprise.ControlPanel" is only rendered on small screens. Steps to reproduce: * Open Odoo on
Original PR description
In some custom action/view, the control panel might have "searchViewButtons" with no search bar. But on mobile, the 'searchViewButtons' is only shown in the separated mobile search view and users cannot then click on the search bar to open this view. To fix this issue, we add the 'searchViewButtons' on the main component of the control panel even if there is no search bar. Note that "web_enterprise.ControlPanel" is only rendered on small screens. Steps to reproduce: * Open Odoo on Mobile * Go to "Accounting" * Open the "Burger Menu" * Select "Reporting" -> "Partner Reports" -> "Partner Ledger" * BUG => there is no "searchViewButtons" in the Control Panel opw-2637322 Forward-Port-Of: odoo/enterprise#20908