Friday, September 6, 2024
6 changes · 17.0
Resolved issues and error corrections
Copying an automation rule now also copies the actions attached to it, so the duplicated rule behaves as expected. This prevents users from having to manually recreate actions after copying a rule and reduces setup errors.
Original PR description
Before this commit, copying an automation rule did not copy its actions. After, it will. Task: 4055597
Quick search for accounts now filters results to accounts whose codes start with the typed prefix. This restores the expected behavior and helps users find the correct account faster with fewer irrelevant results.
Original PR description
We should only see the accounts matching the code prefix, just like done in `_name_search`. It was the expected result before this fix[^1] but the solution was to remove the feature instead of fix the traceback without explanation. [^1]: 8852ff2767eef111807a3f6efc7cc5376656f45f
This fixes a contact page issue where customized country address layouts with punctuation could cause address fields to appear in the wrong order. Businesses can now adjust report address formats without disrupting how contact address fields are displayed.
Original PR description
The issue was that when extracting field names from an address, the current implementation only considered fields and spaces. Adding any additional characters would break the field names, resulting…
The issue was that when extracting field names from an address, the current implementation only considered fields and spaces. Adding any additional characters would break the field names, resulting in invalid field names. For example, given the address line "%(zip)s, %(city)s", the current code would return the fields ["zip,", "city"], where the first field name is invalid. We should only consider what is between "%(<field_name>)s". Steps to reproduce: - Go to Contact > Configuration > Countries (Developer mode must be enabled). - Search for "United States" and then edit. - In "Layout in Reports", add any characters to the 3rd line where there is the "city" field, and save. - Open any contact (you may need to refresh). - The order of fields is now incorrect and does not match the "Layout in Reports". This fix ensures that only valid field names are extracted from the address line, maintaining the correct order as specified in the "Layout in Reports". opw-3920886 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a compatibility issue with the latest Chrome 128 browser version that affects the payroll dashboard testing. The fix ensures that the payroll dashboard tests run correctly by properly handling browser events in the newer Chrome version, maintaining system reliability and test accuracy.
Fixed an issue where customers could open the date picker and select new rental dates even when a rental product was already in their cart, which had no effect since rental periods can only be modified from the cart. The calendar button remains visible to display helpful information, but the date picker is now disabled in this scenario to prevent confusion.
Original PR description
Issue ----- [website_sale_renting] In case there is already a rental product in the cart, it is still possbile to open the date range picker by clicking the calendar button and selecting a new period, which will have no effect as the rental period can only be changed from the cart. Change ----- Disable the date picker but keep the calendar button as it contains a help message. opw-4076088
This update corrects an incorrect documentation link displayed on the helpdesk team form view. Users will now see the correct knowledge base reference when accessing team settings, ensuring they have access to the right support resources.
Original PR description
This PR fixes a wrong documentation link in the helpdesk team form view. Task-4102472