[IMP] improves the reporting view Expenses Analysis (add some measures to the table...
[odoo/odoo.git] / addons / survey / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-TODAY OpenERP S.A. <http://www.openerp.com>
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     'name': 'Survey',
24     'version': '1.0',
25     'category': 'Tools',
26     'description': """
27 This module is used for surveying.
28 ==================================
29
30 It depends on the answers or reviews of some questions by different users. A
31 survey may have multiple pages. Each page may contain multiple questions and each
32 question may have multiple answers. Different users may give different answers of
33 question and according to that survey is done. Partners are also sent mails with
34 user name and password for the invitation of the survey.
35     """,
36     'author': 'OpenERP SA',
37     'depends': ['mail'],
38     'data': [
39         'survey_report.xml',
40         'survey_data.xml',
41         'wizard/survey_selection.xml',
42         'wizard/survey_answer.xml',
43         'security/survey_security.xml',
44         'security/ir.model.access.csv',
45         'survey_view.xml',
46         'wizard/survey_print_statistics.xml',
47         'wizard/survey_print_answer.xml',
48         'wizard/survey_browse_answer.xml',
49         'wizard/survey_print.xml',
50         'wizard/survey_send_invitation.xml'
51     ],
52     'demo': ['survey_demo.xml'],
53     'test': [
54         'test/draft2open2close_survey.yml',
55         'test/draft2open2close_request.yml',
56         'test/survey_question_type.yml',
57         'test/survey_report.yml',
58     ],
59     'installable': True,
60     'auto_install': False,
61     'images': ['images/survey_answers.jpeg','images/survey_pages.jpeg','images/surveys.jpeg'],   
62     'css': ['static/src/css/survey.css','static/css/survey.css'],
63 }
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: