[PYTHON] -remove inherit functions when it's possible
[burette/analytic_point_of_sale.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # analytic_point_of_sale module for OpenERP, Analytic Point of sale
5 # Copyright (C) 2017 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
6 # L'Heureux Cyclage
7 #
8 # This file is a part of analytic_point_of_sale
9 #
10 # analytic_point_of_sale is free software: you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as published
12 # by the Free Software Foundation, either version 3 of the License, or (at
13 # your option) any later version.
14 #
15 # analytic_point_of_sale is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
18 # Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with this program. If not, see <http://www.gnu.org/licenses/>.
22 #
23 ##############################################################################
24
25 {
26 'name': 'Analytic Point of sale',
27 'version': '0.1',
28 'category': 'Accounting & Finance',
29 'complexity': "normal",
30 'description': """
31 This module is add analycics features in point of sale
32 ======================================================
33
34 Functionnalities :
35 * Use shops analytic account as default for move lines generate from the
36 point of sale;
37 * …
38 """,
39 'author': 'L\'Heureux Cyclage',
40 'website': 'http://www.heureux-cyclage.org/',
41 'depends': [
42 'sale',
43 'point_of_sale',
44 ],
45 'init_xml': [
46 ],
47 'update_xml': [
48 ],
49 'installable': True,
50 'auto_install': False,
51 'images': [],
52 }
53
54
55 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: