oca-ocb-technical/odoo-bringout-oca-ocb-barcodes/barcodes/__manifest__.py
Ernad Husremovic 2696f14ed7 19.0 vanilla
2026-03-09 09:32:34 +01:00

25 lines
696 B
Python

{
'name': 'Barcode',
'version': '2.0',
'category': 'Supply Chain/Inventory',
'summary': 'Scan and Parse Barcodes',
'depends': ['web'],
'data': [
'data/barcodes_data.xml',
'views/barcodes_view.xml',
'security/ir.model.access.csv',
],
'installable': True,
'post_init_hook': '_assign_default_nomeclature_id',
'assets': {
'web.assets_backend': [
'barcodes/static/src/**/*',
],
'web.tests_assets': ['barcodes/static/tests/legacy/helpers.js'],
'web.assets_unit_tests': [
'barcodes/static/tests/*.test.js',
],
},
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}