-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
54 lines (50 loc) · 1.69 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
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Supercoop - Products - Send to Scales',
'summary': 'Synchronize Odoo database with Scales',
'version': '1.0',
'category': 'Tools',
'description': """
=============================================
Synchronize Odoo database with Bizerba Scales
=============================================
Roadmap / Know Issues
---------------------
* It should be great to split this module into many modules, with some generic
features in a module named product_to_scale and some specifics features
for each scales system. 'sp_product_to_scale_bizerba',
'product_to_scale_metler_toledo', etc.
""",
'author': 'GRAP',
'website': 'http://www.grap.coop',
'license': 'AGPL-3',
'depends': [
'product',
'point_of_sale',
],
'data': [
'security/ir_module_category.xml',
'security/res_groups.xml',
'security/ir.model.access.csv',
'data/ir_config_parameter.xml',
'data/ir_cron.xml',
'views/view_product_product.xml',
'views/view_product_uom.xml',
'views/view_product_scale_system.xml',
'views/view_product_scale_group.xml',
'views/view_product_scale_log.xml',
'views/action.xml',
'views/menu.xml',
],
'demo': [
'demo/res_users.xml',
'demo/product_scale_system.xml',
'demo/product_scale_system_product_line.xml',
'demo/product_scale_group.xml',
'demo/product_product.xml',
'demo/decimal_precision.xml',
],
}