~deneroteam/openerp-hrms/trunk

« back to all changes in this revision

Viewing changes to hr_security_ext/__openerp__.py

  • Committer: Daniel Reis
  • Date: 2012-07-18 07:47:41 UTC
  • Revision ID: dreis.pt@hotmail.com-20120718074741-fqyx1536wuddc2eq
HR extensions to security and roles

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Daniel Reis
 
5
#    2012
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
 
 
22
 
 
23
{
 
24
    'name': 'HR Groups and Security Extensions',
 
25
    'version': '6.1',
 
26
    'category': 'Human Resources',
 
27
    'description': """Additional roles and security enhancementes, as a base for more complex HR processes.
 
28
 At HR Management level, there two roles provided bu standard: HR Manager and HR Office.
 
29
 At the rest of the organization, three roles are available:
 
30
 * Employee: each individual. Has only has read access to own employee data.
 
31
 * Manager Assistant: has read and write access to all employees.
 
32
 * Employee Manager: has read and write access to all employees.
 
33
 
 
34
 """,
 
35
    'author': 'Daniel Reis',
 
36
    'website': 'daniel.reis@securitas.pt',
 
37
    'depends': [
 
38
        'hr',
 
39
    ],
 
40
    'init_xml': [],
 
41
    'update_xml': [
 
42
        'hr_view.xml',
 
43
        'security/hr_security.xml',
 
44
        'security/ir.model.access.csv',
 
45
    ],
 
46
    'demo_xml': [],
 
47
    'test': [],
 
48
    'installable': True,
 
49
}
 
50
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: