质量模块和库存扫码
This commit is contained in:
51
stock_barcode/__manifest__.py
Normal file
51
stock_barcode/__manifest__.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
{
|
||||
'name': "Barcode",
|
||||
'summary': "Use barcode scanners to process logistics operations",
|
||||
'description': """
|
||||
This module enables the barcode scanning feature for the warehouse management system.
|
||||
""",
|
||||
'category': 'Inventory/Inventory',
|
||||
'sequence': 255,
|
||||
'version': '1.0',
|
||||
'depends': ['stock', 'web_tour', 'web_mobile'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/stock_inventory_views.xml',
|
||||
'views/stock_picking_views.xml',
|
||||
'views/stock_move_line_views.xml',
|
||||
'views/stock_barcode_views.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/stock_scrap_views.xml',
|
||||
'views/stock_location_views.xml',
|
||||
'wizard/stock_barcode_cancel_operation.xml',
|
||||
'wizard/stock_backorder_confirmation_views.xml',
|
||||
'data/data.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/demo.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'application': True,
|
||||
'license': 'OEEL-1',
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'stock_barcode/static/src/**/*.js',
|
||||
'stock_barcode/static/src/**/*.scss',
|
||||
'stock_barcode/static/src/**/*.xml',
|
||||
|
||||
# Don't include dark mode files in light mode
|
||||
('remove', 'stock_barcode/static/src/**/*.dark.scss'),
|
||||
],
|
||||
"web.dark_mode_assets_backend": [
|
||||
'stock_barcode/static/src/**/*.dark.scss',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'stock_barcode/static/tests/units/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'stock_barcode/static/tests/tours/**/*',
|
||||
],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user