forked from subteno-it/stock_scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__openerp__.py
59 lines (54 loc) · 2.23 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
##############################################################################
#
# stock_scanner module for OpenERP, Allows managing barcode readers with simple scenarios
# Copyright (C) 2011 SYLEAM Info Services (<http://www.syleam.fr/>)
# Sylvain Garancher <[email protected]>
#
# This file is a part of stock_scanner
#
# stock_scanner is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# stock_scanner is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Stock Scanner',
'version': '1.2',
'category': 'Generic Modules/Inventory Control',
'description': """Allows managing barcode readers with simple scenarios
- You can define a workfow for each object (stock picking, inventory, sale, etc)
- Works with all scanner hardware model (just SSH client required)
The "sentinel" specific ncurses client, available in the "hardware" directory, requires the "openobject-library" python module, available from pip :
$ sudo pip install openobject-library
Some demo/tutorial scenarios are available in the "demo" directory of the module.
To import these scenarios, you can use the import script located in the "scripts" directory.
""",
'author': 'SYLEAM',
'website': 'http://www.Syleam.fr/',
'depends': [
'base',
'product',
'stock',
'wms',
],
'init_xml': [],
'update_xml': [
'security/ir.model.access.csv',
'stock_scanner_view.xml',
],
'demo_xml': [],
'installable': True,
'active': False,
'license': 'GPL-3',
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: