Thursday, March 14, 2024
7 changes
2 changes
Enhancements to existing features
This update enables matching of purchase orders that have been marked as 'locked' with Optical Character Recognition (OCR). Previously, locked POs couldn't be matched, limiting automation. This change improves the efficiency of receiving and processing purchase orders, particularly when using OCR scanning.
Original PR description
This change allows for locked purchase orders to be matched with OCR Task: 3798080 Forward-Port-Of: odoo/odoo#157485 Forward-Port-Of: odoo/odoo#157386
This update allows users to send and print invoices with a customized set of options, without relying on default settings. Previously, the send & print function used default computed values, which is now changed to allow for greater flexibility in invoice processing. This simplifies the process for users needing specific print configurations.
Original PR description
…en options Add the possibility to call the send & print with *only* a set of options. All other checkboxes are therefore set to False, instead of their default computed value. Forward-Port-Of: odoo/odoo#157532
3 changes
Enhancements to existing features
Timesheet grid tooltips now show the unit of measure selected in settings, making time or quantity information easier to understand. Tooltips related to sales order lines were also clarified so users get more meaningful context while reviewing timesheets.
Original PR description
Improve the tooltip message on the grid view by specifying the selected uom from the settings. Clarify the tooltip message in the case of sale order line. task-3668894
The Enterprise website top menu now uses colors and separators that better match the Enterprise design. This improves visual consistency for users editing websites and ensures the related styling is properly loaded.
Original PR description
Changes related to https://github.com/odoo/odoo/pull/151356 to adapt Enterprise colors. Requires: - https://github.com/odoo/odoo/pull/151356 task-3626064
Gantt and grid views were updated to align with recent platform changes in the underlying web framework. This keeps these planning and reporting views working consistently and prepares them for future improvements.
Original PR description
Enterprise adaptations for changes in the community repo. Community PR: https://github.com/odoo/odoo/pull/157425
2 changes
Enhancements to existing features
This update adds a reusable function to the analytic module that simplifies how analytic accounts are extracted from distribution data. By centralizing this common operation, the change reduces code duplication across the system and makes the codebase easier to maintain and update in the future.
Original PR description
[IMP] analytic: Add a function to get the analytic accounts off of analytic_distribution dict, this improvement is to avoid rewriting the same code all over whenever we wanna get the accounts. [related PR](https://github.com/odoo/enterprise/pull/57159) opw-3756270
This update adds a log message to confirm when a data module has been successfully imported into the database. Previously, there was no notification in the logs when an import finished, making it harder to track import operations. Now administrators will see a clear confirmation message when modules are imported.
Original PR description
Before this commit, there was no message in the logs when the import of a data module is finished. This commit adds a log info to state that the module is now in the db.