__openerp__.py 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. #################################################################################
  3. # Author : Acespritech Solutions Pvt. Ltd. (<www.acespritech.com>)
  4. # Copyright(c): 2012-Present Acespritech Solutions Pvt. Ltd.
  5. # All Rights Reserved.
  6. #
  7. # This program is copyright property of the author mentioned above.
  8. # You can`t redistribute it and/or modify it.
  9. #
  10. #################################################################################
  11. {
  12. 'name': 'POS Keyboard Shortcuts',
  13. 'version': '1.0',
  14. 'category': 'Point of Sale',
  15. 'summary': 'POS Keyboard Shortcuts',
  16. 'description': """
  17. This module is used to handle point of sale features with keyboard shortcuts.
  18. """,
  19. 'author': "Acespritech Solutions Pvt. Ltd.",
  20. 'website': "www.acespritech.com",
  21. 'price': 25.00,
  22. 'currency': 'EUR',
  23. 'depends': ['web', 'point_of_sale', 'base'],
  24. 'images': ['static/description/main_screenshot.png'],
  25. 'data': ['views/pos_keyboard.xml',
  26. 'account/account_view.xml',
  27. 'views/res_company.xml'],
  28. 'installable': True,
  29. 'auto_install': False,
  30. }
  31. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: