forked from akretion/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
47 lines (46 loc) · 1.5 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
# -*- coding: utf-8 -*-
# © 2011-2015 Sylvain Garancher <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Stock Scanner',
'summary': 'Allows managing barcode readers with simple scenarios',
'version': '8.0.1.0.0',
'category': 'Generic Modules/Inventory Control',
'website': 'https://odoo-community.org/',
'author': 'SYLEAM,'
'ACSONE SA/NV,'
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'application': True,
'installable': True,
'depends': [
'product',
'stock',
],
'data': [
'security/stock_scanner_security.xml',
'security/ir.model.access.csv',
'data/stock_scanner.xml',
'data/ir_cron.xml',
'data/scenarios/Login/Login.scenario',
'data/scenarios/Logout/Logout.scenario',
'wizard/stock_scanner_config_wizard_view.xml',
'views/menu.xml',
'views/scanner_scenario.xml',
'views/scanner_scenario_step.xml',
'views/scanner_scenario_transition.xml',
'views/scanner_scenario_custom.xml',
'views/scanner_hardware.xml',
],
'demo': [
'demo/stock_scanner_demo.xml',
'demo/Tutorial/Tutorial.scenario',
'demo/Tutorial/Step_types/Step_types.scenario',
'demo/Tutorial/Sentinel/Sentinel.scenario',
],
'images': [
'images/scanner_hardware.png',
'images/scanner_scenario.png',
'images/scanner_screen.png',
],
}