12345678910111213141516171819202122232425262728293031 |
- # -*- coding: utf-8 -*-
- #################################################################################
- # Author : Acespritech Solutions Pvt. Ltd. (<www.acespritech.com>)
- # Copyright(c): 2012-Present Acespritech Solutions Pvt. Ltd.
- # All Rights Reserved.
- #
- # This program is copyright property of the author mentioned above.
- # You can`t redistribute it and/or modify it.
- #
- #################################################################################
- {
- 'name': 'POS Keyboard Shortcuts',
- 'version': '1.0',
- 'category': 'Point of Sale',
- 'summary': 'POS Keyboard Shortcuts',
- 'description': """
- This module is used to handle point of sale features with keyboard shortcuts.
- """,
- 'author': "Acespritech Solutions Pvt. Ltd.",
- 'website': "www.acespritech.com",
- 'price': 25.00,
- 'currency': 'EUR',
- 'depends': ['web', 'point_of_sale', 'base'],
- 'images': ['static/description/main_screenshot.png'],
- 'data': ['views/pos_keyboard.xml',
- 'account/account_view.xml',
- 'views/res_company.xml'],
- 'installable': True,
- 'auto_install': False,
- }
- # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|