[PYTHON] -pdb import in pos_box
[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.
32 """,
33 'author': 'L\'Heureux Cyclage',
34 'website': 'http://www.heureux-cyclage.org',
35 'depends': [
36 'account',
37 'point_of_sale',
38 ],
39 'init_xml': [],
40 'data': [],
41 'update_xml': [
42 'view/point_of_sale.xml',
43 ],
44 'demo_xml': [],
45 'test': [],
46 'installable': True,
47 'active': False,
48
49 }
50
51 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: