summaryrefslogtreecommitdiff
path: root/addons/website_sale_digital/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/website_sale_digital/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website_sale_digital/__manifest__.py')
-rw-r--r--addons/website_sale_digital/__manifest__.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/addons/website_sale_digital/__manifest__.py b/addons/website_sale_digital/__manifest__.py
new file mode 100644
index 00000000..ba45490d
--- /dev/null
+++ b/addons/website_sale_digital/__manifest__.py
@@ -0,0 +1,25 @@
+# -*- encoding: utf-8 -*-
+{
+ 'name': 'Digital Products',
+ 'version': '0.1',
+ 'summary': 'Sell digital products in your eCommerce store',
+ 'category': 'Website/Website',
+ 'description': """
+Sell e-goods in your eCommerce store (e.g. webinars, articles, e-books, video tutorials).
+To do so, create the product and attach the file to share via the *Files* button of the product form.
+Once the order is paid, the file is made available in the order confirmation page and in the customer portal.
+ """,
+ 'depends': [
+ 'attachment_indexation',
+ 'website_sale',
+ ],
+ 'installable': True,
+ 'data': [
+ 'views/website_sale_digital.xml',
+ 'views/website_sale_digital_view.xml',
+ ],
+ 'demo': [
+ 'data/product_demo.xml',
+ ],
+ 'license': 'LGPL-3',
+}