Files
tra_backend/hr_employee/models/hr_job.py
2020-07-22 11:21:02 +05:30

11 lines
289 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models, _
class Job(models.Model):
_inherit = "hr.job"
designation_visa = fields.Char(string='Designation as per Visa', index=True, translate=True)