Files
tra_backend/hr_employee/models/hr_employee.py
2020-07-22 12:24:24 +05:30

19 lines
578 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models, _
class HrEmployeePrivate(models.Model):
_inherit = "hr.employee"
home_address = fields.Char(string="Home Address")
home_country_address = fields.Char(string="Home Country Address")
name_of_airport = fields.Char(string="Name of Airport")
relationship = fields.Char(string="Relationship")
cat_of_staff = fields.Char(string="Category (If Staff or Labour)")
work_loc = fields.Char(string="Work Location")