Thursday, January 5, 2023
4 changes
Resolved issues and error corrections
This fix makes input fields use a transparent background consistently, preventing unwanted white blocks from appearing when users hover over table rows. It aligns the Enterprise interface with the related Community change for a more polished and consistent visual experience.
Original PR description
Input in enterprise have a transparent background while in community the background is white. This background is visible while hovering on the table. This commit sets the background variable to transparent for the inputs in community and remove the variable override in enterprise. Task-3094005 Community PR: https://github.com/odoo/odoo/pull/107385
This fix adds a missing identifier to a Helpdesk company access rule so it can be managed consistently. An upgrade step prevents duplicate rules from being created, reducing the risk of configuration clutter or unexpected access behavior after updates.
Original PR description
The record rule Team: multi-company is missing id in the security file therefore we add the id to the record for consistency. Since adding such attribute will create a new record rule, an upgrade script was added to prevent having a duplicated record rule opw-3096957
This fixes internal report tests that failed after German accounting labels were translated into English. It helps keep the German SKR03 localization reliable while supporting the standard practice of developing modules in English first.
Original PR description
Ideally, we develop in English any localization (then translate to the domestic language, in this case German) All the module has been translated in english in this PR: https://github.com/odoo/enterprise/pull/34313 By translating the skr03 module this test was broken. Since it search on the name in german that is now in english. task-id: 3059115
This change reverses a prior update that moved several features to a newer location-detection service. It helps keep appointment scheduling and document signing behavior aligned with the current stable approach while avoiding issues from the reverted update.
Original PR description
This reverts commit bc80577c6a95b07effc5bf9fe6c78cdedf96ba88 #27399