diff --git a/addons/hr/views/hr_employee_views.xml b/addons/hr/views/hr_employee_views.xml index 02632a5966293b8151b681bc3cf833ab9685c2e9..48a7fcc2239235c2320fa70700bde6a1d07f9aef 100644 --- a/addons/hr/views/hr_employee_views.xml +++ b/addons/hr/views/hr_employee_views.xml @@ -66,11 +66,11 @@ <h1 class="d-flex"> <field name="name" placeholder="Employee's Name" required="True" style="font-size: min(4vw, 2.6rem);" /> <div class="d-flex align-items-end fs-6" style="height: min(4vw, 2.6rem); padding-bottom: 1px;"> - <div id="hr_presence_status" attrs="{'invisible': ['|', ('last_activity', '=', False), ('user_id', '=', False)]}" class="ms-1"> + <div id="hr_presence_status" class="ms-1"> <!-- Employee is present/connected and it is normal according to his work schedule --> <small role="img" class="fa fa-fw fa-circle text-success o_button_icon hr_presence align-middle" attrs="{'invisible': [('hr_icon_display', '!=', 'presence_present')]}" aria-label="Present" title="Present"/> <!-- Employee is not present and it is normal according to his work schedule --> - <small role="img" class="fa fa-fw fa-circle-o text-muted o_button_icon hr_presence align-middle" attrs="{'invisible': [('hr_icon_display', '!=', 'present_absent')]}" aria-label="Absent" title="Absent" name="presence_absent"/> + <small role="img" class="fa fa-fw fa-circle-o text-muted o_button_icon hr_presence align-middle" attrs="{'invisible': [('hr_icon_display', '!=', 'presence_absent')]}" aria-label="Absent" title="Absent" name="presence_absent"/> <!-- Employee is connected but according to his work schedule, he should not work for now --> <small role="img" class="fa fa-fw fa-circle-o text-success o_button_icon hr_presence align-middle" attrs="{'invisible': [('hr_icon_display', '!=', 'presence_absent_active')]}" aria-label="Present but not active" title="Present but not active" name="presence_absent_active"/> <!-- Employee is not here but according to his work schedule, he should be connected --> diff --git a/addons/hr_holidays_attendance/views/hr_employee_views.xml b/addons/hr_holidays_attendance/views/hr_employee_views.xml index 2dfa791ac350c4c0a8ebc0f2e1f978c01a5f3af2..8187afb5a2954e5c1e2c57947f37c86f7867282f 100644 --- a/addons/hr_holidays_attendance/views/hr_employee_views.xml +++ b/addons/hr_holidays_attendance/views/hr_employee_views.xml @@ -19,21 +19,16 @@ </field> </record> + <!-- TODO: remove in master --> <record id="hr_employee_view_form" model="ir.ui.view"> <field name="name">hr.employee.holidays.attendance.inherit</field> <field name="model">hr.employee</field> <field name="inherit_id" ref="hr_attendance.view_employee_form_inherit_hr_attendance"/> <field name="priority" eval="125" /> <field name="arch" type="xml"> - <!-- Merge invisible attr of both module --> <xpath expr="//div[@id='hr_presence_status']" position="attributes"> <attribute name="attrs"> - {'invisible': ['|', '|', '|', - ('is_absent', '=', True), - ('hr_presence_state', '=', 'absent'), - ('attendance_state', '=', 'checked_in'), - ('id', '=', False), - ]} + {'invisible': False} </attribute> </xpath> </field>