blob: b9f56af3daa580131b49967d0218f395b8f68536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- 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/point_of_sale_assets.xml',
'views/pos_config_views.xml',
],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}
|