__openerp__.py 640 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Multi Store for Warehouse',
  4. 'version': '8.0.1.0.0',
  5. 'category': 'Accounting',
  6. 'sequence': 14,
  7. 'summary': '',
  8. 'author': 'ADHOC SA - Eiru',
  9. 'website': 'www.adhoc.com.ar',
  10. 'license': 'AGPL-3',
  11. 'images': [
  12. ],
  13. 'depends': [
  14. 'stock',
  15. 'multi_store',
  16. 'sale',
  17. 'purchase',
  18. 'product'
  19. ],
  20. 'data': [
  21. 'views/res_store_view.xml',
  22. 'views/stock_view.xml',
  23. 'views/product_view.xml',
  24. 'security/multi_store_security.xml',
  25. ],
  26. 'test': [
  27. ],
  28. 'installable': True,
  29. 'application': False,
  30. }