__openerp__.py 578 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'POS Stock',
  4. 'version': '1.0.0',
  5. 'category': 'Point Of Sale',
  6. 'author': 'D.Jane',
  7. 'sequence': 10,
  8. 'summary': 'Display Stocks on POS Location. Update Real-Time Quantity Available.',
  9. 'description': "",
  10. 'depends': ['point_of_sale'],
  11. 'data': [
  12. 'views/header.xml',
  13. 'views/config.xml'
  14. ],
  15. 'images': ['static/description/banner.png'],
  16. 'qweb': ['static/src/xml/pos_stock.xml'],
  17. 'installable': True,
  18. 'application': True,
  19. 'license': 'Other proprietary',
  20. 'currency': 'EUR',
  21. }