Port hr_usability to v10
This commit is contained in:
@@ -1,29 +1,12 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
# Copyright 2015-2018 Akretion (http://www.akretion.com)
|
||||||
#
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
# HR Usability module for Odoo
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
# Copyright (C) 2015 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/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'HR Usability',
|
'name': 'HR Usability',
|
||||||
'version': '0.1',
|
'version': '10.0.1.0.0',
|
||||||
'category': 'Human Resources',
|
'category': 'Human Resources',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'summary': 'Better usability in HR module',
|
'summary': 'Better usability in HR module',
|
||||||
@@ -41,5 +24,5 @@ This module has been developped by Alexis de Lattre <alexis.delattre@akretion.co
|
|||||||
'data': [
|
'data': [
|
||||||
'hr_view.xml',
|
'hr_view.xml',
|
||||||
],
|
],
|
||||||
'installable': False,
|
'installable': True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
# Copyright 2016-2018 Akretion (http://www.akretion.com)
|
||||||
#
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
# HR Usability module for Odoo
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
|
|
||||||
from openerp import models, fields, api
|
|
||||||
|
from odoo import models, fields, api
|
||||||
|
|
||||||
|
|
||||||
class HrEmployee(models.Model):
|
class HrEmployee(models.Model):
|
||||||
@@ -31,7 +15,6 @@ class HrEmployee(models.Model):
|
|||||||
ssnid = fields.Char(track_visibility='onchange')
|
ssnid = fields.Char(track_visibility='onchange')
|
||||||
sinid = fields.Char(track_visibility='onchange')
|
sinid = fields.Char(track_visibility='onchange')
|
||||||
identification_id = fields.Char(track_visibility='onchange')
|
identification_id = fields.Char(track_visibility='onchange')
|
||||||
otherid = fields.Char(track_visibility='onchange')
|
|
||||||
gender = fields.Selection(track_visibility='onchange')
|
gender = fields.Selection(track_visibility='onchange')
|
||||||
marital = fields.Selection(track_visibility='onchange')
|
marital = fields.Selection(track_visibility='onchange')
|
||||||
department_id = fields.Many2one(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')
|
coach_id = fields.Many2one(track_visibility='onchange')
|
||||||
job_id = fields.Many2one(track_visibility='onchange')
|
job_id = fields.Many2one(track_visibility='onchange')
|
||||||
passport_id = fields.Char(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'),
|
||||||
|
]
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2015 Akretion (http://www.akretion.com/)
|
Copyright 2015-2018 Akretion (http://www.akretion.com/)
|
||||||
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
The licence is in the file __openerp__.py
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<openerp>
|
<odoo>
|
||||||
<data>
|
|
||||||
|
|
||||||
<record id="view_employee_form" model="ir.ui.view">
|
<record id="view_employee_form" model="ir.ui.view">
|
||||||
<field name="name">hr_usability.hr.employee.form</field>
|
<field name="name">hr_usability.hr.employee.form</field>
|
||||||
@@ -19,5 +19,5 @@
|
|||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
</data>
|
|
||||||
</openerp>
|
</odoo>
|
||||||
|
|||||||
Reference in New Issue
Block a user