__openerp__.py 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Stay On Product Page',
  4. 'version': '1.1',
  5. 'category': 'eCommerce',
  6. 'summary': 'Visitors stay on a product page while adding to cart',
  7. 'description': '''
  8. Stay On Product Page
  9. ====================
  10. Visitors stay on product pages while adding to cart
  11. The app is an e-shop extension, which modifies basic purchase process. Visitors would not be moved to cart while adding products. Instead they would stay on the same page.
  12. ''',
  13. 'auto_install': False,
  14. 'author': 'IT Libertas',
  15. 'website': 'https://itlibertas.com',
  16. 'depends': [
  17. 'website_sale',
  18. ],
  19. 'data': [
  20. 'data/data.xml',
  21. 'security/ir.model.access.csv',
  22. ],
  23. 'qweb': [
  24. ],
  25. 'js': [
  26. ],
  27. 'demo': [
  28. ],
  29. 'test': [
  30. ],
  31. 'license': 'AGPL-3',
  32. 'images': [
  33. 'static/description/main.png',
  34. ],
  35. 'update_xml': [
  36. ],
  37. 'application': False,
  38. 'installable': True,
  39. 'private_category': False,
  40. 'external_dependencies': {
  41. },
  42. }