Port hr_usability to v10

This commit is contained in:
Alexis de Lattre
2018-03-01 21:56:40 +01:00
parent a7b2bde9e9
commit d61e48635b
3 changed files with 32 additions and 51 deletions

View File

@@ -1,26 +1,10 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# HR Usability module for Odoo
# Copyright (C) 2016 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# Copyright 2016-2018 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import models, fields, api
from odoo import models, fields, api
class HrEmployee(models.Model):
@@ -31,7 +15,6 @@ class HrEmployee(models.Model):
ssnid = fields.Char(track_visibility='onchange')
sinid = fields.Char(track_visibility='onchange')
identification_id = fields.Char(track_visibility='onchange')
otherid = fields.Char(track_visibility='onchange')
gender = fields.Selection(track_visibility='onchange')
marital = fields.Selection(track_visibility='onchange')
department_id = fields.Many2one(track_visibility='onchange')
@@ -44,3 +27,18 @@ class HrEmployee(models.Model):
coach_id = fields.Many2one(track_visibility='onchange')
job_id = fields.Many2one(track_visibility='onchange')
passport_id = fields.Char(track_visibility='onchange')
_sql_constraints = [
('identification_unique',
'unique(identification_id)',
'An employee with this Identification No already exists'),
('ssnid_unique',
'unique(ssnid)',
'An employee with this Social Security Number already exists'),
('sinid_unique',
'unique(sinid)',
'An employee with this Social Insurance Number already exists'),
('passport_id_unique',
'unique(passport_id)',
'An employee with this Passport No already exists'),
]