Skip to content

Commit

Permalink
Merge pull request #603 from calyx-servicios/ODOO-STG-VACATION
Browse files Browse the repository at this point in the history
[ODOO-STG][UPD2][CUSTOM_HR_HOLIDAYS]
  • Loading branch information
Leandro090685 authored Sep 19, 2024
2 parents a864962 + 5bebbaf commit 0ce5284
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions custom_hr_holidays/models/hr_employee.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,6 @@ class EmployeePublic(models.Model):

legajo = fields.Integer(string="Legajo")
partner = fields.Many2one('res.partner', string="Partner")
entry_date = fields.Date(string="Entry Date", required=True)
exit_date = fields.Date(string="Exit Date")
is_active = fields.Boolean('Active Employee?', compute='_compute_is_active', store=True, default=True)

0 comments on commit 0ce5284

Please sign in to comment.