__openerp__.py 731 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. {
  3. "name": "Website Sale Multi Add",
  4. "summary": """Allows to disable product sales via eCommerce for any reason""",
  5. "category": "eCommerce",
  6. "images": [],
  7. "version": "1.0.0",
  8. "author": "IT-Projects LLC, Ivan Yelizariev",
  9. "website": "https://it-projects.info",
  10. "license": "GPL-3",
  11. # "price": 9.00,
  12. # "currency": "EUR",
  13. "depends": [
  14. "website_sale",
  15. ],
  16. "external_dependencies": {"python": [], "bin": []},
  17. "data": [
  18. # "views.xml",
  19. "templates.xml",
  20. ],
  21. "qweb": [
  22. ],
  23. "demo": [
  24. ],
  25. "post_load": None,
  26. "pre_init_hook": None,
  27. "post_init_hook": None,
  28. "installable": True,
  29. "auto_install": False,
  30. }