Daily updates from Odoo
Monday, June 9, 2025
8 changes
2 changes
Miscellaneous changes
Following this commit : ==== - An online/offline toggle option is provided for the food delivery dropdown. - If the user has configured more than one provider and wishes to close/off one of the aggregator, then without going on the backend from the UI itself, the user can offline that particular provider and vice versa. task-4582032 Forward-Port-Of: odoo/enterprise#86813 Forward-Port-Of: odoo/enterprise#80333
Original PR description
Following this commit : ==== - An online/offline toggle option is provided for the food delivery dropdown. - If the user has configured more than one provider and wishes to close/off one of the aggregator, then without going on the backend from the UI itself, the user can offline that particular provider and vice versa. task-4582032 Forward-Port-Of: odoo/enterprise#86813 Forward-Port-Of: odoo/enterprise#80333
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
Original PR description
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
3 changes
Miscellaneous changes
Before this commit, when adding a line that is not from a move we would have a link to the bank. User should not be able to go to the bank from there to avoid mistakes where they will change the move. Specially when the move is fully reconciled. If the move is partially reconcile they have access to the move in the dropdown, if it's really needed. They also have all the information in the chatter. no task id Forward-Port-Of: odoo/enterprise#86539
Original PR description
Before this commit, when adding a line that is not from a move we would have a link to the bank. User should not be able to go to the bank from there to avoid mistakes where they will change the move. Specially when the move is fully reconciled. If the move is partially reconcile they have access to the move in the dropdown, if it's really needed. They also have all the information in the chatter. no task id Forward-Port-Of: odoo/enterprise#86539
Following this commit : ==== - An online/offline toggle option is provided for the food delivery dropdown. - If the user has configured more than one provider and wishes to close/off one of the aggregator, then without going on the backend from the UI itself, the user can offline that particular provider and vice versa. task-4582032 Forward-Port-Of: odoo/enterprise#86813 Forward-Port-Of: odoo/enterprise#80333
Original PR description
Following this commit : ==== - An online/offline toggle option is provided for the food delivery dropdown. - If the user has configured more than one provider and wishes to close/off one of the aggregator, then without going on the backend from the UI itself, the user can offline that particular provider and vice versa. task-4582032 Forward-Port-Of: odoo/enterprise#86813 Forward-Port-Of: odoo/enterprise#80333
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
Original PR description
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
3 changes
Resolved issues and error corrections
Website editor overlay buttons now show helpful tooltips, making it easier for users to understand actions like sending a content block backward or bringing it forward. This reduces confusion when arranging snippets in grid layouts and also corrects tooltip arrow styling for a more consistent interface.
Original PR description
The overlay action buttons for sending a snippet to the back or front in the website editor were unclear. This commit adds tooltips to these buttons, providing better clarity on their functionality. Steps to reproduce issue: 1. Drop a text block using website editor. 2. Click on the text-block and increase the number of columns to 3. 3. Convert to grid mode. 4. Now click on the text-block and check the action buttons for send back and bring front. Before this commit: - It was confusing to identify which button would send the snippet to the back or bring it to the front. Additionally, the icons were insufficient in conveying the button's purpose After this commit: - Tooltips have been added to the overlay action buttons, providing clear descriptions of their functions. Additionally, tooltips have been added to the rest of the overlay action buttons. task-4497684
Miscellaneous changes
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
Original PR description
The aim of this commit is to provide a NIS code mapping for every country created by default in Odoo. Before this commit: If a 281.50 was created for someone in one of these countries, it would miss the `f2112_buitenlandspostnummer` field in the xml file resulting in the administration rejecting the file. After this commit: A pragmatic completion is made for those countries in `f2112_buitenlandspostnummer`. task: None Forward-Port-Of: odoo/enterprise#87081
**Steps to Reproduce :** 1. Install l10n_cl_edi. 2. Navigate to Contacts create an invoice for CL Company 3. Choose the document type: (33) Electronic Invoice. 4. Confirm the invoice. 5. Ensure the partner has only the street value set (e.g., "Name"), and street2 is empty. **Issue:** When generating the DTE, if street2 is empty, a trailing space appears in the <DirOrigen> tag ex: `DirOrigen>Name </DirOrigen>` **Solution:** Applied strip() to remove the extra space when stre
Original PR description
**Steps to Reproduce :** 1. Install l10n_cl_edi. 2. Navigate to Contacts create an invoice for CL Company 3. Choose the document type: (33) Electronic Invoice. 4. Confirm the invoice. 5. Ensure the partner has only the street value set (e.g., "Name"), and street2 is empty. **Issue:** When generating the DTE, if street2 is empty, a trailing space appears in the <DirOrigen> tag ex: `DirOrigen>Name </DirOrigen>` **Solution:** Applied strip() to remove the extra space when street2 is empty. This ensures no trailing space when street2 is empty and proper spacing when both street and street2 is present. opw-4765451 Forward-Port-Of: odoo/enterprise#85110