Monday, September 11, 2023
5 changes · master
Enhancements to existing features
Helpdesk forum pages now point users to the updated forum profile location. This keeps profile access working as the forum experience expands to support browsing and searching across all forums.
Original PR description
The route model to the user forum profile has been modified as part of a new feature that makes possible for users to have an overview and search in all forums. The link in the template(s) must be modified accordingly. see odoo/odoo#129123 task-2676848
SAF-T report handling has been reorganized so it now sits with the General Ledger reporting flow instead of the broader accounting report area. This makes the reporting setup cleaner and easier to maintain across country-specific SAF-T implementations, without changing the intended business output.
Original PR description
- Currently, all SAF-T related code is still located in 'account.report'. - That does not make much sense since it applies to the General Ledger which has its own custom handler - The goal of this task is to move all SAF-T related code from 'account.report' to 'account.general.ledger.report.handler' task-id: 3423844
Users can now adjust the displayed currency symbol without enabling debug mode, helping make documents clearer when different currencies share the same symbol. The eBay currency setting was repositioned in the currency form to make room for this clearer display option.
Original PR description
Description of the issue/feature this PR addresses: Prior to this, when multiple currencies with the same symbol where to appear in a same document or be sent from a country to another with the same currency symbol, the only information the recipient had was the currency symbol leading to lack of clarity. Desired behavior after PR is merged: This set of two PR has for objective to give the user the possibility to edit the symbol curency that is displayed everywhere so that if he feels like the documents and views are lacking clarity, he can improve it. This was already an option before but only when the debug mode was active. This commit has the purpose moving the "Use on eBay" option in the currency form view so that the displayed symbol can be added to the right column. Adding this, the "Use on eBay" option is moved to the left column. task-3484335 Community PR : https://github.com/odoo/odoo/pull/133554
Users can now search follow-up reports by customer or report name and by the responsible person. This makes it faster for teams to find the right follow-up information and manage outstanding items more efficiently.
Original PR description
Add a search filter on the followup reports view: on the 'name' (`name`) and on the 'responsible' (`followup_responsible_id`). task-3460484
Warehouse barcode users are now prompted to confirm a location when scanning a reserved product from somewhere other than its expected source. This helps prevent picking mistakes when workers forget to scan the new shelf or location between products.
Original PR description
When a product is scanned and this product is reserved in another location than the current one, the application will ask the user to confirm they want to take this product in the current location by…
When a product is scanned and this product is reserved in another location than the current one, the application will ask the user to confirm they want to take this product in the current location by scanning the source's barcode. The purpose of this commit is to avoid scan error by taking a product in the wrong location because user could forget to scan the location between two different products. Imagine the following case: - There is a delivery for Product A (reserved in Shelf 1) and Product B (reserved in Shelf 2); - First, the user scans Shelf 1, than scans Product A. So far so good; - Now the user scans Product B. The question is: do they want to take Product B from Shelf 1, or did they forget to scan Shelf 2 first ? This issue is relevant only when the products are reserved and the scan of the source location is mandatory. To handle this case, a product reserved in a location can be taken from another location only if this other location was scanned just before the product. A notification informs the user they have to scan the location. So, if we go back to our previous example, the user has to scan again Shelf 1 just before to scan Product B if they really wants to take it from there. [task-3007755](https://www.odoo.com/web#id=3007755&cids=1&menu_id=4720&action=333&active_id=966&model=project.task&view_type=form)