Saturday, December 21, 2024
4 changes
3 changes
Resolved issues and error corrections
The Rental Prices section on rental products now displays its list across the full available space. This fixes a visual layout issue so users can read and manage rental pricing more comfortably.
Original PR description
This commit fixes some ARCH to fixes some visual issue. Inside a group (grid) there will be always two columns: * one smaller on the left (max 150px) * one taking all the remaining space on the right. When we add only one element with `nolabel="1"` it will take one part of the grid to take all the space we need to specify it with `colspan="2"`. Steps to reproduce: * Go to Sale App * Go to menu Product * Select a Product (with Rental) * Select the `Rental prices` pane The list view inside the form not taking all space => BUG task-4416643
French localization features now use the standard company registry identifier instead of the older SIRET-specific field. This helps keep payroll, VAT, Intrastat, and reporting outputs consistent with the current company record and reduces the risk of incorrect registration details.
Original PR description
The company_registry should be used instead. task-4204049
The cart no longer shows the Avatax tax control icon when the Avatax integration is turned off. This avoids confusing point-of-sale users with an option that is not available for their current setup.
Original PR description
This commit removes the Avatax tax control icon from the cart when the Avatax integration is not active. Task ID: 4365326
1 change
Resolved issues and error corrections
Deleting selected attendance records from the list view now works without triggering an error. This prevents interruptions for HR users managing attendance data and keeps routine cleanup actions reliable.
Original PR description
Deleting records from the Attendances list view throws an error
Steps to reproduce:
- Attendances -> List View (Select some records) -> Actions -> Delete
Current behavior before PR:
```
TypeError: Cannot read properties of undefined (reading 'some')
at Proxy.load (https://72301827-18-0-all.runbot171.odoo.com/web/assets/debug/web.assets_web.js:229101:49) (/hr_attendance/static/src/views/attendance_list_view.js:25)
at Proxy._deleteRecords (https://72301827-18-0-all.runbot171.odoo.com/web/assets/debug/web.assets_web.js:55859:26) (/web/static/src/model/relational_model/dynamic_list.js:250)
at async ConfirmationDialog.execButton (https://72301827-18-0-all.runbot171.odoo.com/web/assets/debug/web.assets_web.js:18747:31) (/web/static/src/core/confirmation_dialog/confirmation_dialog.js:79)
```
Desired behavior after PR is merged:
Deleting selected records without errors.
---
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr