Thursday, March 14, 2024
16 changes
3 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 enhances the user experience by ensuring that POS categories are consistently accessible throughout the Point of Sale interface. Previously, categories were hidden, making it less convenient for users to manage products. This change improves workflow efficiency and simplifies product organization within the POS system.
Original PR description
POS categories should be accessible at all times. Back-port of: fd30d8220c7bb6a399aa18654322a20b53ddd76c Task-3673139 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
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
7 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
6 changes
Enhancements to existing features
This improvement adds the ability to use the Send & Print feature with only specific options enabled, while automatically disabling all others. Previously, unchecked options would revert to their default computed values. This gives users more precise control over which actions are performed when sending and printing documents.
New spreadsheet dashboards are no longer shown automatically in the main dashboard view while they are still being prepared. Users can now publish a dashboard when it is ready, reducing the risk of unfinished dashboards being seen by the wider team.
Original PR description
While you are creating a new dashboard, you don't want that dashboard to be visible on the main dashboard view because it's a work in progress. With this commit, we add a boolean field to publish the dashboard to the main action. It's not published by default. Task: 3640421
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
Point of Sale users can now choose from predefined internal notes in the note popup, making order preparation instructions faster and more consistent. Notes are displayed as separate pill-style options instead of a single line, improving readability and ease of use.
Original PR description
- Added a predefined note model - Added these notes on toggle buttons on the internal note popup window - Instead of having all notes on one line we now have them as seperated pills TASK-ID: 3764484 Community: https://github.com/odoo/odoo/pull/156664
Activity Plan screens are easier to use on smaller devices thanks to mobile-friendly kanban views. The update also improves guidance shown to users when setting up activity plans, helping teams get started more quickly.
Original PR description
To improve usability on small device, we add the kanban view for them (only) in the following view: - mail.activity.plan - mail.activity.template - mail.activity.type We also the following improvement: - improve the action helper for the plan (unfortunately the help is duplicated for each action) Task-3639909
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
Spreadsheet users can now adjust pivot table row and column groupings directly from the side panel. This makes spreadsheet analysis more flexible and removes an unused refresh button from pivot, list, and chart panels to simplify the interface.
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.
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 prevents users from accidentally uninstalling the Mexican Electronic Invoice (EDI) module through the settings interface. By restricting this action, the system ensures that critical Mexican tax compliance functionality remains active and cannot be disabled unintentionally, protecting your business from compliance issues.
Original PR description
--- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#157439
This improvement allows locked purchase orders to be matched with OCR-scanned invoices. Previously, locked POs could not be matched during the invoice processing workflow. This enhancement streamlines the invoice matching process by removing this restriction, making it easier to process invoices against locked purchase orders without manual intervention.
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 improves the Send & Print feature by allowing users to select only specific options they want to use, with all other options automatically disabled. Previously, unselected options would use default computed values, which could lead to unintended actions. This gives users more precise control over document sending and printing behavior.
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.
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.