forked from OCA/stock-logistics-barcode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
__manifest__.py
33 lines (32 loc) · 1.01 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
# Copyright (C) 2014-Today GRAP (http://www.grap.coop)
# Copyright (C) 2016-Today La Louve (http://www.lalouve.net)
# Copyright (C) 2018 Komit (https://komit-consulting.com)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Generate Barcodes for Products',
'summary': 'Generate Barcodes for Products (Templates and Variants)',
'version': '12.0.1.0.1',
'category': 'Tools',
'author':
'GRAP,'
'La Louve,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/stock-logistics-barcode',
'license': 'AGPL-3',
'depends': [
'barcodes_generator_abstract',
'product',
],
'data': [
'views/view_product_product.xml',
'views/view_product_template.xml',
'views/view_product_category.xml',
],
'demo': [
'demo/res_users.xml',
'demo/barcode_rule.xml',
'demo/product.xml',
'demo/function.xml',
],
}