[FIX] mail: no_auto_thread default True if the model has no mail.thread
[odoo/odoo.git] / addons / analytic_user_function / __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': 'Jobs on Contracts',
25     'version': '1.0',
26     'category': 'Sales Management',
27     'description': """
28 This module allows you to define what is the default function of a specific user on a given account.
29 ====================================================================================================
30
31 This is mostly used when a user encodes his timesheet: the values are retrieved
32 and the fields are auto-filled. But the possibility to change these values is
33 still available.
34
35 Obviously if no data has been recorded for the current account, the default
36 value is given as usual by the employee data so that this module is perfectly
37 compatible with older configurations.
38
39     """,
40     'author': 'OpenERP SA',
41     'website': 'https://www.odoo.com/page/employees',
42     'images': ['images/analytic_user_function.jpeg'],
43     'depends': ['hr_timesheet_sheet'],
44     'data': ['analytic_user_function_view.xml', 'security/ir.model.access.csv'],
45     'demo': [],
46     'installable': True,
47     'auto_install': False,
48 }
49 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: