9 lines
250 B
Python
9 lines
250 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2020-Today TechKhedut.
|
|
# Part of TechKhedut. See LICENSE file for full copyright and licensing details.
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ConstructionEmployee(models.Model):
|
|
_inherit = "hr.employee"
|