[FIX] hr_holidays_attendance : Show Extra Hours on Dashboard #234426
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Steps to reproduce:
Cause:
When we are getting the allocation data we check for the leave types that require allocation
odoo/addons/hr_holidays/models/hr_leave_type.py
Line 473 in 5f6d2af
And then when checking the types that doesn't require allocation we are looping on the res that we got from the super which already excluded those types
odoo/addons/hr_holidays_attendance/models/hr_leave_type.py
Lines 41 to 43 in 5f6d2af
Fix:
We loop over the self leave types to make sure we are getting all of the employee's leave data whether the type requires allocation or not.
opw-5042325
Forward-Port-Of: #225015