flectra/addons/pos_reprint/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

26 lines
619 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Point of Sale Receipt Reprinting',
'version': '1.0',
'category': 'Point of Sale',
'sequence': 6,
'summary': 'Allow cashier to reprint receipts',
'description': """
Allow cashier to reprint receipts
""",
'depends': ['point_of_sale'],
'data': [
'views/pos_reprint_templates.xml',
'views/pos_config_views.xml'
],
'qweb': [
'static/src/xml/reprint.xml',
],
'installable': True,
'website': 'https://www.odoo.com/page/point-of-sale',
}