__manifest__.py 812 B

1234567891011121314151617181920212223242526
  1. # -*- encoding: utf-8 -*-
  2. {
  3. 'name': 'Digital Products',
  4. 'version': '0.1',
  5. 'summary': 'Sell digital products in your eCommerce store',
  6. 'category': 'Website/Website',
  7. 'description': """
  8. Sell e-goods in your eCommerce store (e.g. webinars, articles, e-books, video tutorials).
  9. To do so, create the product and attach the file to share via the *Files* button of the product form.
  10. Once the order is paid, the file is made available in the order confirmation page and in the customer portal.
  11. """,
  12. 'depends': [
  13. 'attachment_indexation',
  14. 'website_sale',
  15. ],
  16. 'installable': True,
  17. 'data': [
  18. 'views/website_sale_digital.xml',
  19. 'views/website_sale_digital_view.xml',
  20. ],
  21. 'demo': [
  22. 'data/product_demo.xml',
  23. ],
  24. 'license': 'LGPL-3',
  25. }