30 lines
734 B
Python
30 lines
734 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
|
|
{
|
|
'name': 'POS Epson Printer',
|
|
'version': '1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'sequence': 6,
|
|
'summary': 'Epson ePOS Printers in PoS',
|
|
'description': """
|
|
|
|
Use Epson ePOS Printers without the IoT Box in the Point of Sale
|
|
""",
|
|
'depends': ['point_of_sale'],
|
|
'data': [
|
|
'views/pos_config_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/pos_printer_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_epson_printer/static/src/**/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|