__openerp__.py 584 B

12345678910111213141516171819202122
  1. {
  2. 'name' : 'Point Of Sale Delivery',
  3. 'summary': 'Point Of Sale Delivery',
  4. 'description':
  5. """
  6. Point Of Sale Driver
  7. =====================
  8. adds a button in "point of sales ui" to select a delivery driver
  9. """,
  10. 'version': '8.0.4.0',
  11. 'category': 'Point of Sale',
  12. 'author': 'DVIT.me',
  13. 'website': 'http://dvit.me',
  14. 'license': 'AGPL-3',
  15. 'depends' : ['point_of_sale', 'hr'],
  16. 'data': ['static/src/xml/data.xml'],
  17. 'qweb': ['static/src/xml/qweb.xml'],
  18. 'installable': True,
  19. 'auto_install': False,
  20. 'application': True,
  21. }