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

32 lines
981 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Barcode for Batch Transfer',
'version': '1.0',
'category': 'Inventory/Inventory',
'summary': "Add the support of batch transfers into the barcode view",
'depends': ['stock_barcode', 'stock_picking_batch'],
'data': [
'views/stock_barcode_picking.xml',
'views/stock_barcode_picking_batch.xml',
'views/stock_move_line_views.xml',
'views/stock_quant_package_views.xml',
'wizard/stock_barcode_cancel_operation.xml',
'data/data.xml',
],
'demo': [
'data/stock_barcode_picking_batch_demo.xml',
],
'auto_install': True,
'assets': {
'web.assets_backend': [
'stock_barcode_picking_batch/static/src/**/*',
],
'web.assets_tests': [
'stock_barcode_picking_batch/static/tests/tours/**/*.js',
],
},
'license': 'OEEL-1',
}