__openerp__.py 848 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "POS Customer",
  4. 'summary': """
  5. It alerts for the customer selection before Payment.""",
  6. 'description': """
  7. It alerts for the customer selection before Payment.
  8. """,
  9. 'author': "DRC Systems India Pvt. Ltd.",
  10. 'website': "http://www.drcsystems.com",
  11. # Categories can be used to filter modules in modules listing
  12. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  13. # for the full list
  14. 'category': 'Point Of Sale',
  15. 'version': '0.1',
  16. # any module necessary for this one to work correctly
  17. 'depends': ['base','point_of_sale'],
  18. # always loaded
  19. 'data': [
  20. 'templates.xml',
  21. ],
  22. # only loaded in demonstration mode
  23. 'demo': [
  24. ],
  25. 'installable': True,
  26. 'auto_install': False,
  27. }