[FIX] account: period selection on invoices should be related to the current company...
[odoo/odoo.git] / addons / hr_attendance / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
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': 'Attendances',
25     'version': '1.1',
26     'category': 'Human Resources',
27     'description': """
28 This module aims to manage employee's attendances.
29 ==================================================
30
31 Keeps account of the attendances of the employees on the basis of the
32 actions(Sign in/Sign out) performed by them.
33        """,
34     'author': 'OpenERP SA',
35     'images': ['images/hr_attendances.jpeg'],
36     'depends': ['hr'],
37     'data': [
38         'security/ir_rule.xml',
39         'security/ir.model.access.csv',
40         'hr_attendance_view.xml',
41         'hr_attendance_report.xml',
42         'wizard/hr_attendance_bymonth_view.xml',
43         'wizard/hr_attendance_byweek_view.xml',
44         'wizard/hr_attendance_error_view.xml',
45         'res_config_view.xml',
46     ],
47     'demo': ['hr_attendance_demo.xml'],
48     'test': [
49         'test/attendance_process.yml',
50         'test/hr_attendance_report.yml',
51     ],
52     'installable': True,
53     'auto_install': False,
54     
55     #web
56     "js": ["static/src/js/attendance.js"],
57     'qweb' : ["static/src/xml/attendance.xml"],
58     'css' : ["static/src/css/slider.css"],
59 }
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: