-
Notifications
You must be signed in to change notification settings - Fork 3
/
__manifest__.py
63 lines (63 loc) · 2.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
# Copyright (C) 2020-Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Joint Buying - Base",
"version": "12.0.6.2.0",
"category": "GRAP - Logistics",
"author": "GRAP,La Jardinière,Hashbang",
"website": "https://github.com/grap/odoo-addons-logistics",
"license": "AGPL-3",
"depends": [
"base",
"mail",
"web",
"decimal_precision",
# OCA
"base_geolocalize_company",
"res_company_code",
"res_company_active",
"web_notify",
"web_view_leaflet_map_partner",
# GRAP
"name_search_reset_res_partner",
],
"external_dependencies": {"python": ["openupgradelib", "geopy", "treelib"]},
"data": [
"security/ir_module_category.xml",
"security/res_groups.xml",
"security/ir.model.access.csv",
"security/ir_rule.xml",
"data/ir_config_parameter.xml",
"data/ir_cron.xml",
"views/menu.xml",
"views/view_res_company.xml",
"views/view_res_partner.xml",
"views/view_res_partner_category.xml",
"views/view_res_users.xml",
"views/view_res_config_settings.xml",
"views/view_joint_buying_carrier.xml",
"views/view_joint_buying_tour_type.xml",
"views/view_joint_buying_tour.xml",
"views/view_joint_buying_tour_line.xml",
"views/view_joint_buying_transport_request.xml",
"views/view_joint_buying_transport_request_line.xml",
"wizards/view_joint_buying_wizard_set_tour.xml",
"wizards/joint_buying_wizard_find_route.xml",
"reports/report_joint_buying_tour.xml",
"reports/report.xml",
"views/templates.xml",
],
"demo": [
"demo/res_company.xml",
"demo/res_users.xml",
"demo/res_partner_category.xml",
"demo/res_partner.xml",
"demo/joint_buying_carrier.xml",
"demo/joint_buying_tour_type.xml",
"demo/joint_buying_tour.xml",
"demo/joint_buying_transport_request.xml",
],
"post_init_hook": "_create_joint_buying_partner_for_companies",
"installable": True,
}