Daily updates from Odoo
Wednesday, July 1, 2026
3 changes · master
Resolved issues and error corrections
This update corrects a test in the Mexican electronic invoicing module so it works whether the accounting app is installed or not. It prevents false test failures caused by a payment changing from “paid” to “in payment” in certain setups.
Original PR description
If accountant is installed, payment state of unreconciled payment switch from 'paid' to 'in_payment'. Not having accountant break the test. runbot-939445 Forward-Port-Of: odoo/enterprise#121113
Issue: The `test_overtime_ruleset_flow` tour test was failing because the `amount_rate` field could not be found. Reason: - Couldn't find the amount_rate field as it was located in the Payroll tab and the tour did not navigate to that tab before interacting with the field. - The tour also used some selectors and values that were no longer valid, causing some steps to fail. Fix: - Open the Payroll tab before interacting with the `amount_rate` field. - Set the overtime leave request dur
Original PR description
Issue: The `test_overtime_ruleset_flow` tour test was failing because the `amount_rate` field could not be found. Reason: - Couldn't find the amount_rate field as it was located in the Payroll tab and the tour did not navigate to that tab before interacting with the field. - The tour also used some selectors and values that were no longer valid, causing some steps to fail. Fix: - Open the Payroll tab before interacting with the `amount_rate` field. - Set the overtime leave request duration type to "Custom Hours". - Replace the unavailable "Salary-exempt" employee type with "Employee". - Use the checkbox input selector to interact with the attendance_based field. - Explicitly open the dropdown before clicking on `action_continue` button. - Remove the unnecessary final `action_continue` step.
The Knowledge setup tour has been updated to use the Add button when confirming property changes. This avoids losing recent edits by accidentally clicking outside the popover, making the guided setup more reliable.
Original PR description
Previously, the knowledge_properties_tour used to click outside the property definition popover to save changes. This now discards recent changes, so the tour explicitly clicks the add button instead.