Thursday, January 14, 2021
7 changes · master
Enhancements to existing features
Receipt operations now use the purchase order line description instead of only the internal product name. This makes it easier for warehouse and purchasing teams to compare vendor delivery slips with received goods, including vendor product names and references when available.
Original PR description
In order to easily compare delivery slip from vendor and receipt, vendor product name and reference should be visible on the receipt operations. The receipt description was just the name of the product before, it is now taking the same description as the PO line, using vendor product name and reference if it exists. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Users can no longer repeatedly click the same form action button while an action is still running. This helps avoid duplicate actions, reduces accidental repeated processing, and makes form behavior more consistent.
Original PR description
Purpose ======= Before, users can spam click a action button and it will trigger many actions. In the form view, we disable the buttons of the status bar after clicking on it (and re-activate them when the action is done) but we do not do that for the standard action buttons. So now, the users should wait the end of the action before re-clicking on the same button. Task 2409395
Tags using the default color now display text more cleanly, reducing the chance that the bottom of letters appears cut off. Their border has also been softened for a lighter, more polished appearance.
Original PR description
To improve the display of tags, we are increasing slightly the size of the line in the tag to avoid cutting the bottom of some letters, as well as making the color of the border lighter. Task id #2368889 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
When an accounting entry is posted with a date before the tax lock date, Odoo now sets the accounting date to the current day instead of the day after the lock date. This helps preserve the correct order of accounting records and avoids chronology issues caused by automatic date adjustments.
Original PR description
When posting an account move before the tax lock date, Odoo will automatically set its accounting date to the lock date + 1. This can cause the chronology to be broken, which is not something we want when automatically setting the date. This will change that behavior to set the accounting date to today in such case. Task id #2411150 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo now avoids running company lookup services on generic email providers, helping prevent misleading company matches from addresses like common webmail domains. Partner autocomplete calls can also use configurable timeouts, improving control over external data requests without changing the default behavior.
Payroll managers are no longer automatically granted full time-off manager rights; they now receive standard time-off user access by default. This improves access control while making the Time Off information shown in Payroll easier to use for payroll teams.
Original PR description
…ort in payroll Before this commit, the payroll manager was automatically a time-off manager. It is now only a time-off user by default. This commit slightly improves also the UX of Time Off integration in Payroll. taskid: 2418315
Social app settings and posting screens were simplified so most users see fewer advanced options and clearer labels. Developer-account configuration for social networks is now less prominent, and push notification timezone behavior is simplified by default to reduce confusion.
Original PR description
This commit intends to give less visibility to some of the advanced features of social to avoid confusing the majority of our users base. Notably: - Move all "configure your own Facebook/Twitter/LinkedIn dev account" to debug mode. As it will work out of the box for saas/enterprise contracts holders. - Disable "use_visitors_timezone" by default and remove it when sending "now". As it requires a knowledge of timezones and will not be needed for most of the push notifications usage. In addition, we made some "back2basics" changes: - Reworked some settings layouts / labels - Simplified some social.post form view labels Task-2415790