Daily updates from Odoo
Tuesday, May 14, 2024
5 changes · 17.0
Enhancements to existing features
The barcode scanning system has been optimized to stop retrieving package information from customer locations, which can be very large and unnecessary for operations. This improvement reduces system load and speeds up barcode scanning processes without affecting functionality.
Original PR description
As packages amount on customer locations side could be huge, don't retrieve those packages as they are not needed. @svs-odoo @Aurelienvd Forward-Port-Of: odoo/enterprise#59473
This update removes the validation restriction that prevented users from creating multiple bills with the same reference number. This change improves the user experience by eliminating a frustrating limitation that doesn't align with real-world business scenarios where duplicate reference numbers may be necessary or unavoidable.
Original PR description
[REM] account: remove validation on bills ref Remove validation on bills ref and allow users to have multiple bills with same ref Reason: improve user experience with the system as it's a pain for them in a real life senario Task-3869240 odoo-pr: https://github.com/odoo/odoo/pull/161995
This update allows users to apply text animations and text highlights while translating website content, improving the translation workflow. Previously, these text formatting options were disabled during translation mode, limiting what translators could do. Now translators have full access to text styling features without switching modes.
Original PR description
The goal of this PR is to simply disable the "Text Animation" button from the editor's toolbar in translate mode. An adaptation of code in stable `17.0` will be added to allow the use of text options (text animations & text highlights) in the translation mode, mainly by allowing the creation of snippet editors if the target is a text option snippet. opw-3686777 Forward-Port-Of: odoo/odoo#157726 Forward-Port-Of: odoo/odoo#157087
The system now allows multiple bills to have the same reference number. This change removes a validation restriction that was causing inconvenience for users in real-world scenarios where duplicate bill references are common or necessary.
Original PR description
[REM] account: remove validation on bills ref Remove validation on bills ref and allow users to have multiple bills with same ref Reason: improve user experience with the system as it's a pain for them in a real life senario Task-3869240 enterprise-PR#https://github.com/odoo/enterprise/pull/62395 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes how fixed taxes are displayed on Point of Sale receipts. Previously, all taxes showed a percentage symbol (%), but fixed taxes are not percentages—they're flat amounts. The change removes the incorrect % symbol for fixed taxes and improves the layout by displaying the tax name alongside the amount for better clarity.
Original PR description
Before this commit, the `point_of_sale.OrderReceipt` template would always print taxes followed by a % symbol. This should not be so for fixed taxes, whose amount is not a percentage. This commit removes the % symbol after fixed taxes. As an improvement it also displays the tax name in the first column, since the tax amount is already displayed in the following column. No task. 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