forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
64 lines (63 loc) · 2 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
# Copyright 2016 Akretion (http://www.akretion.com)
# Sébastien BEAU <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Shopinvader",
"summary": "Shopinvader",
"version": "16.0.1.1.3",
"category": "e-commerce",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"author": "Akretion,ACSONE SA/NV",
"license": "AGPL-3",
"application": True,
"installable": True,
"external_dependencies": {"python": ["cerberus", "unidecode"], "bin": []},
"depends": [
"base_rest",
"jsonifier",
"base_sparse_field_list_support",
"base_vat",
"component_event",
"sale",
"sale_cart",
"shopinvader_sale_state",
"sale_discount_display_amount",
"server_environment",
"onchange_helper",
"queue_job",
"mail",
"base",
],
"data": [
"security/shopinvader_security.xml",
"security/ir.model.access.csv",
"security/shopinvader_backend_security.xml",
"security/shopinvader_partner_security.xml",
"wizards/shopinvader_partner_binding.xml",
"views/shopinvader_menu.xml",
"views/shopinvader_cart_step_view.xml",
"views/shopinvader_partner_view.xml",
"views/res_config_settings.xml",
"views/sale_view.xml",
"views/shopinvader_sale_view.xml",
"views/partner_view.xml",
"views/shopinvader_backend_view.xml",
"data/res_partner.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",
],
"qweb": [],
"pre_init_hook": "pre_init_hook",
"development_status": "Alpha",
}