[MODULE] ~maj description
[burette/nrt_point_of_sale.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Non-real time point of sale module for OpenERP, Allow user to record his
5 # sales in point of sale interface in non-real time. Copyright (C) 2016
6 # L'Heureux Cyclage (<http://www.heureux-cyclage>) Ludovic CHEVALIER
7 #
8 # This file is a part of Non-real time point of sale
9 #
10 # Non-real time point of sale is free software: you can redistribute it
11 # and/or modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation, either version 3 of the
13 # License, or (at your option) any later version.
14 #
15 # Non-real time point of sale is distributed in the hope that it will be
16 # useful, 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
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #
23 ##############################################################################
24
25 {
26 'name': 'Non-real time point of sale',
27 'version': '0.1',
28 'category': 'Point Of Sale',
29 'description': """
30 This module allow user to record his sales in point of sale interface in
31 non-real time. Each point of sale can be defined as an real time point of
32 sale or not.
33 """,
34 'author': 'L\'Heureux Cyclage',
35 'website': 'http://www.heureux-cyclage.org',
36 'depends': [
37 'account',
38 'point_of_sale',
39 ],
40 'init_xml': [],
41 'data': [],
42 'update_xml': [
43 'view/point_of_sale.xml',
44 ],
45 'demo_xml': [],
46 'test': [],
47 'installable': True,
48 'active': False,
49
50 }
51
52 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: