[VIEW] +mobile number in partners tree views
[burette/cyclofficine_pantin.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # cyclofficine_pantin module for OpenERP, Custom module for La Cyclofficine
5 # de Pantin
6
7 # Copyright (C) 2015-2016 cyclofficine_pantin
8 # (<http://cyclocoop.org/index.php/les-ateliers/pantin/>)
9 #
10 # This file is a part of cyclofficine_pantin
11 #
12 # cyclofficine_pantin is free software: you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as published
14 # by the Free Software Foundation, either version 3 of the License, or (at
15 # your option) any later version.
16 #
17 # cyclofficine_pantin is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #
25 ##############################################################################
26
27 {
28 'name': 'Custom Cyclofficine de Pantin',
29 'version': '0.1',
30 'category': 'Association',
31 'complexity': "normal",
32 'description': """
33 This module is a profile module for Cyclofficine de Pantin
34 ==========================================================
35
36 It installs the profile for bike co-ops to manage some features like:
37 * remove some unused menu items or fields;
38 * sort partners by member identifier, name;
39 * search customers by member identifier and membership informations in customers views;
40 * import initial datas;
41 * manually define member identifier;
42 * …
43 """,
44 'author': 'La Cyclofficine de Pantin',
45 'website': 'http://cyclocoop.org/index.php/les-ateliers/pantin',
46 'depends': [
47 'account_cancel',
48 'bikecoop',
49 'bikecoop_l10n_fr',
50 ],
51 'init_xml': [
52 ],
53 'update_xml': [
54 'data/base.xml',
55 'data/plan_comptable_general.xml',
56 'data/products_categories.xml',
57 'data/products_products.xml',
58 'data/remembership.xml',
59 'data/members.xml',
60 'data/users.xml',
61 'wizard/attribute_member_ident_view.xml',
62 'view/account.xml',
63 'view/bikecoop.xml',
64 'view/res_partner.xml',
65 'view/stock.xml',
66 ],
67 'installable': True,
68 'auto_install': False,
69 'images': [],
70 }
71
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: