17 lines
498 B
Python
17 lines
498 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class RecruitmentDegree(models.Model):
|
||
|
_name = "hr.recruitment.degree"
|
||
|
_description = "Applicant Degree"
|
||
|
|
||
|
name = fields.Char("Degree Name", required=True, translate=True)
|
||
|
sequence = fields.Integer("Sequence", default=1)
|
||
|
|
||
|
_sql_constraints = [
|
||
|
('name_uniq', 'unique (name)', 'The name of the Degree of Recruitment must be unique!')
|
||
|
]
|