This rule in the employee module works for the employee's(manager) respective own sub-hierarchy only.
[('id', 'child_of', [employee.id for employee in user.employee_ids ])]
But it also applies to all department employees e.g. HR. While HR dep./users(employees) need to view all employees for their operations. So have to overwrite the above rule or tweak the Above rule or any other method that works.
['|',('id', 'child_of', [employee.id for employee in user.employee_ids ]),('department_id', '!=', 3)]
I've applied the above but it shows HR(dep id = 3) all their sub-hierarchy, and not their dep employees because it covers in the first part but it shows other departments members all employees for which I initially applied this record rule.
Your Help will be much appreciated.
If i understand your goal (For department!=3: Displaying flat hierarchy instead of vertical hierarchy?), it will solve your problem: