Hi everyone,
I'm working on an Odoo 17 Community Edition project.
In the Employee form view (hr.employee.form), I want to hide the "Private Information" tab unless:
- The logged-in user is viewing their own employee record, or
- The logged-in user is an administrator.
Here's what the view looks like in XML:
<page name="personal_information" string="Private Information">
<!-- Some private fields here -->
</page>
how can i fix it ?

