[FIX] Fixed in advance search when search on 'None of the following condition must...
[odoo/odoo.git] / addons / event / __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': 'Events Organisation',
25     'version': '0.1',
26     'category': 'Tools',
27     'complexity': "easy",
28     'description': """
29 Organization and management of Events.
30 ======================================
31
32 This module allows you
33     * to manage your events and their registrations
34     * to use emails to automatically confirm and send acknowledgements for any registration to an event
35     * ...
36
37 Note that:
38     - You can define new types of events in
39         Association / Configuration / Types of Events
40 """,
41     'author': 'OpenERP SA',
42     'depends': ['crm', 'account', 'marketing', 'mail'],
43     'init_xml': [],
44     'update_xml': [
45         'security/ir.model.access.csv',
46         'wizard/event_confirm_registration_view.xml',
47         'wizard/event_confirm_view.xml',
48         'event_view.xml',
49         'report/report_event_registration_view.xml',
50         'wizard/event_make_invoice_view.xml',
51         'wizard/partner_event_registration_view.xml',
52         'board_association_view.xml',
53         'res_partner_view.xml',
54     ],
55     'demo_xml': ['event_demo.xml'],
56     'test': ['test/process/event_confirm2done.yml',
57              'test/process/event_draft2cancel.yml',
58              'test/process/partner_register2invoice.yml',
59              'test/ui/duplicate_event.yml',
60              'test/ui/demo_data.yml'],
61     'installable': True,
62     'auto_install': False,
63     'certificate': '0083059161581',
64     'images': ['images/1_event_type_list.jpeg','images/2_events.jpeg','images/3_registrations.jpeg'],
65 }
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: