forked from Mapan/odoo17e
22 lines
677 B
Python
22 lines
677 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'POS Barcode in Mobile',
|
|
'category': 'Human Resources/Barcode',
|
|
'summary': 'POS Barcode scan in Mobile',
|
|
'version': '1.0',
|
|
'description': """ """,
|
|
'depends': ['pos_hr', 'web_mobile'],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
# We need the barcode scanner style. FIXME POSREF: use the barcode scanner component
|
|
'barcodes/static/src/components/barcode_scanner.scss',
|
|
'pos_hr_mobile/static/src/**/*',
|
|
],
|
|
}
|
|
}
|