1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/stock_barcode_quality_control/__manifest__.py
2024-12-10 09:04:09 +07:00

23 lines
733 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Barcode Quality bridge module",
'summary': "Allows the usage of quality checks within the barcode views",
'category': 'Hidden',
'version': '1.0',
'description': """
This bridge module is auto-installed when the modules stock_barcode and quality_control are installed.
""",
'depends': ['stock_barcode', 'quality_control'],
'installable': True,
'auto_install': True,
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'stock_barcode_quality_control/static/src/**/*.js',
'stock_barcode_quality_control/static/src/**/*.xml',
],
}
}