mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
11 lines
289 B
Python
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) |