-
Notifications
You must be signed in to change notification settings - Fork 15
/
__manifest__.py
41 lines (40 loc) · 1.33 KB
/
__manifest__.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
# 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": "Product - Send to Bizerba Scales (Retail Connect)",
"summary": "Synchronize Odoo database with Retail Connect Bizerba System",
"version": "12.0.2.0.3",
"category": "Product",
"author": "GRAP, La Louve",
"website": "https://github.com/grap/grap-odoo-business",
"license": "AGPL-3",
"depends": [
"product",
"pos_tare",
],
"data": [
"security/ir_module_category.xml",
"security/res_groups.xml",
"security/ir.model.access.csv",
"security/ir_rule.xml",
"data/ir_config_parameter.xml",
"data/ir_cron.xml",
"views/menu.xml",
"views/view_product_product.xml",
"views/view_uom_uom.xml",
"views/view_product_scale_system.xml",
"views/view_product_scale_group.xml",
"views/view_product_scale_log.xml",
],
"demo": [
"demo/res_groups.xml",
"demo/uom_uom.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",
],
"installable": True,
}