Daily updates from Odoo
Navigate
Branch
Thursday, November 15, 2018
9 changes
New functionality added to Odoo
This update adds automated checks for the General Ledger report and clarifies related report code. It helps reduce the risk of reporting regressions and supports more dependable accounting information for users.
Original PR description
To be merged and rebased after https://github.com/odoo/enterprise/pull/2823
Enhancements to existing features
Users can now click values in pivot reports to open the related records in a list view. This makes it faster to investigate figures in CRM, Events, Expenses, and Recruitment reports without manually recreating filters.
Original PR description
https://www.odoo.com/web#id=1895410&action=333&active_id=965&model=project.task&view_type=form&menu_id=4720
The IAP option in the Web Settings Dashboard is now presented as a full dashboard tile instead of a simple text link. This makes the service easier to notice and access for users managing settings.
Original PR description
The IAP link in Web Settings Dashboard used to be a simple text link in DashboardApps, now we've created a full div -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Each company now gets its own key stock locations for inventory loss, production, scrap, and transit. This lets businesses apply company-specific accounting rules more accurately across stock, manufacturing, and repair operations.
Original PR description
Each company should have their own inventory loss, production, scrap and transit locations in order to apply specific accounting configurations. TASK 1882269
The settings dashboard now places the App Store and Play Store links in the last column. This keeps mobile app access available while freeing the previous area for upcoming in-app purchase information.
Original PR description
Move the links to the mobile apps to the last column because their previous position will be used for IAP
This update adjusts an internal barcode inventory test to use the correct inventory loss setting from the product. It helps keep stock barcode quality checks aligned with current inventory configuration, reducing the chance of false test failures.
Original PR description
The inventory loss location used in this test was a data of the inventory location that has been removed from community version, and so we use the correct property value set on the product
Users can now click values in CRM and Helpdesk pivot reports to open the matching list of records. This makes it easier to move from summary reporting to the underlying details without extra filtering steps.
Original PR description
Task : https://www.odoo.com/web#id=1895410&action=333&active_id=965&model=project.task&view_type=form&menu_id=4720 Purpose : Allow users to click on the pivot cells and be redirected to the relevant tree view Previous behavior : Linking was disabled Post behavior: Linking is enabled and users can click on the pivot cell which will redirect them to the relevant list view
The external trade localization no longer defines the CURP field because it is now provided by the main Mexican electronic invoicing module. This reduces duplicate data setup and keeps partner information managed in one shared place.
Original PR description
The CURP field now is added by the l10n_mx_edi module.
Code cleanup and technical improvements
The Survey module’s code, views, templates, and assets were reorganized into clearer, model-focused files. This is an internal cleanup intended to make future survey improvements easier and safer, with no expected change to how users work with surveys.
Original PR description
Purpose of this merge is to polish a bit this old module before working on it. Contains * split python model into separate main files to ease models understanding; * split views into separate main…
Purpose of this merge is to polish a bit this old module before working on it. Contains * split python model into separate main files to ease models understanding; * split views into separate main files to ease views finding; * rename files according to guidelines; * move data lost in views to data files (server action notably); * merge templates in the same file to have all available at hand; * move assets in their own file in order to remove noise from templates; No functional behavior change should occur with this commit. Only move has been performed. Future commits will come that will change and improve the way survey behaves. Having clean files holding code easier to find will help understanding future changes. Note that we might loose part of the history as splitting files creates a new history for new files. However considering history of survey module that is untouched since several versions we think the tradeoff is acceptable. This commit is linked to task ID 1903617 and PR #28166.