forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
78 lines (77 loc) · 2.71 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Copyright 2016 Akretion (http://www.akretion.com)
# Sébastien BEAU <sebastien.beau@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Shopinvader",
"summary": "Shopinvader",
"version": "14.0.5.0.0",
"category": "e-commerce",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"author": "Akretion",
"license": "AGPL-3",
"application": True,
"installable": True,
"external_dependencies": {"python": ["cerberus", "unidecode"], "bin": []},
"depends": [
"base_rest",
"base_jsonify",
"base_sparse_field_list_support",
"base_url",
"base_vat",
"component_event",
"sale",
"sale_discount_display_amount",
"server_environment",
"onchange_helper",
"queue_job",
"mail",
],
"data": [
"security/shopinvader_security.xml",
"security/ir.model.access.csv",
"security/shopinvader_backend_security.xml",
"security/shopinvader_partner_security.xml",
"security/shopinvader_category_security.xml",
"security/shopinvader_product_security.xml",
"security/shopinvader_variant_security.xml",
"wizards/shopinvader_variant_unbinding_wizard.xml",
"wizards/shopinvader_variant_binding_wizard.xml",
"wizards/shopinvader_category_binding_wizard.xml",
"wizards/shopinvader_category_unbinding_wizard.xml",
"wizards/shopinvader_partner_binding.xml",
"views/shopinvader_menu.xml",
"views/shopinvader_product_view.xml",
"views/shopinvader_variant_view.xml",
"views/shopinvader_category_view.xml",
"views/shopinvader_cart_step_view.xml",
"views/shopinvader_partner_view.xml",
"views/shopinvader_backend_view.xml",
"views/product_view.xml",
"views/product_filter_view.xml",
"views/partner_view.xml",
"views/product_category_view.xml",
"views/sale_view.xml",
"views/res_config_settings.xml",
"data/res_partner.xml",
"data/ir_export_product.xml",
"data/ir_export_category.xml",
"data/cart_step.xml",
"data/mail_activity_data.xml",
"data/queue_job_channel_data.xml",
"data/queue_job_function_data.xml",
],
"demo": [
"demo/account_demo.xml",
"demo/pricelist_demo.xml",
"demo/backend_demo.xml",
"demo/partner_demo.xml",
"demo/sale_demo.xml",
"demo/email_demo.xml",
"demo/notification_demo.xml",
"demo/product_filter_demo.xml",
"demo/product_category_demo.xml",
"demo/product_attribute_value_demo.xml",
"demo/product_product_demo.xml",
],
"qweb": [],
}