25 lines
749 B
Python
25 lines
749 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Barcode - GS1 Nomenclature',
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'summary': 'Parse barcodes according to the GS1-128 specifications',
|
|
'depends': ['barcodes', 'uom'],
|
|
'data': [
|
|
'data/barcodes_gs1_rules.xml',
|
|
'views/barcodes_view.xml',
|
|
],
|
|
'installable': True,
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'barcodes_gs1_nomenclature/static/src/js/barcode_parser.js',
|
|
'barcodes_gs1_nomenclature/static/src/js/barcode_service.js',
|
|
],
|
|
'web.qunit_suite_tests': [
|
|
'barcodes_gs1_nomenclature/static/src/js/tests/**/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|