Monday, January 18, 2021
5 changes · master
Enhancements to existing features
This change improves how Odoo runs follow-up actions after a web request has finished. It helps internal processes complete more reliably without affecting day-to-day user workflows.
Original PR description
Task: 2416741
The Expense app now uses the clearer term “category” instead of “product” when employees record or manage expenses. This better matches how business users think about expenses and reduces confusion caused by internal product setup terminology.
Original PR description
Currently at odoo we use expense product terminology just because it's set up using product. Inside the expense app, there is no reason of not using category So in this commit, rename the product into category TaskId: 2391433 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-pr
The default administrator signature now uses the admin user's actual name, Mitchell Admin, instead of the generic 'Administrator'. This creates a more personalized onboarding experience for new Odoo users.
Original PR description
PURPOSE Currently, the signature of the admin defaults to 'administrator'. Odoo does not take into account the actual name of the user. The onboarding experience would be better if the signature was personalized for the user. SPECIFICATIONS The default signature of the admin is his name (Mitchell Admin) instead of 'Administrator'. LINKS PR https://github.com/odoo/odoo/pull/63914 Task-2416715
Geolocation fields now store more precise latitude and longitude values, matching the precision used by Google and Odoo's Sign app. This reduces rounding issues and helps improve the accuracy of customer and lead locations.
Original PR description
Before this commit:
- The precision on geolocalisation fields were set to (16,5) which
caused rounding when data was comming from Goolge.
After this commit:
- The precision on geolocalisation fields are set to (10,7) which is
aligned with what Google does.
This precision of (10,7) is actually already used in the Sign App.
task-2426985
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe accounting reports activity view now hides the “Mark as Done” button for tax report activities. This prevents users from taking an inappropriate action and keeps the activity workflow clearer for tax-related tasks.
Original PR description
**PURPOSE** After installing account_reports in current activity view button "mark as done" is visible even though "activity_category" is "tax_report". **SPECIFICATION** Adding an inherited record in account_reports module to invisible "Mark as Done" button when "activity_category" is "tax_report". **LINKS** PR https://github.com/odoo/enterprise/pull/15281 Task-2371023