__manifest__.py 675 B

123456789101112131415161718192021222324
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Barcode - GS1 Nomenclature',
  4. 'version': '1.0',
  5. 'category': 'Hidden',
  6. 'summary': 'Parse barcodes according to the GS1-128 specifications',
  7. 'depends': ['barcodes', 'uom'],
  8. 'data': [
  9. 'data/barcodes_gs1_rules.xml',
  10. 'views/barcodes_view.xml',
  11. ],
  12. 'installable': True,
  13. 'assets': {
  14. 'web.assets_backend': [
  15. 'barcodes_gs1_nomenclature/static/src/js/barcode_parser.js',
  16. ],
  17. 'web.qunit_suite_tests': [
  18. 'barcodes_gs1_nomenclature/static/src/js/tests/**/*',
  19. ],
  20. },
  21. 'license': 'LGPL-3',
  22. }