Wednesday, January 4, 2023
6 changes · master
Enhancements to existing features
This update streamlines internal code used by automated actions and data recycling. It removes duplicate or unused elements, making the system easier to maintain without changing expected business behavior.
Original PR description
optimize the code and remove duplicated/unused variable --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes obsolete styling code for autocomplete on mobile screens, because those fields now open in a modal instead. It simplifies maintenance without changing the user experience.
Original PR description
Autocomplete is not used on mobile since we open the kanban view in a modal for all x2many fields. This code was copied from enterprise to have the responsiveness in community. Related PR: https://github.com/odoo/enterprise/pull/28946 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
The helpdesk ticket form now places the description field in its own page within the ticket details area, without requiring the timesheet feature to be installed. This makes ticket information more consistently available for teams using Helpdesk on its own or with timesheets.
Original PR description
purpose of this commit is to move the description field into the notebook without installing the hr_timesheet. task-2992368
French accounting report labels are now maintained in English first and translated back into French through standard translation files. This improves consistency across localisations and makes future updates easier to manage.
Original PR description
The French localisation was written in french which was wrong, all the localisation have to be written in english and then translated back to the native language thanks to PO files. Thanks to this PR, all the french localisation has been translated. Task-id: 3112366
Unused mobile styling related to autocomplete fields was removed because those fields now open in a modal view instead. This keeps the web enterprise interface code cleaner without changing how users work on mobile.
The consolidation column setup form has been adjusted so visible fields are aligned more clearly. This makes the configuration screen easier to read and use when adding or editing columns.
Original PR description
install account_consolidation module and navigate to Consolidation -> Configuration -> Periods, open any existing record or create new record and click on the smart button named Edit. from the next screen click on Add a Column button, in the opening form view, the two fields will be visible and other fields are invisible. as other fields are invisible and when the two fields align in two groups at different level. moving the field to first group for better ui. 