17 lines
478 B
Python
17 lines
478 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import fields, models
|
|
|
|
|
|
class hr_sick_leave(models.Model):
|
|
_name = "hr.sick.leave"
|
|
_description = "HR Sick Leave"
|
|
|
|
date_from = fields.Date()
|
|
date_to = fields.Date()
|
|
duration = fields.Integer()
|
|
status = fields.Char()
|
|
allocation_start_date = fields.Date()
|
|
allocation_end_date = fields.Date()
|
|
leave_request = fields.Char()
|
|
sick_relation = fields.Many2one(comodel_name="hr.employee", string="sick relation")
|