forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
65 lines (65 loc) · 1.88 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
# Copyright (C) 2018 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Field Service',
'summary': 'Manage Field Service Locations, Workers and Orders',
'version': '12.0.2.18.0',
'category': 'Field Service',
'author': 'Open Source Integrators, Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/field-service',
'depends': [
'base_geolocalize',
'mail',
'web_timeline',
'resource',
'contacts',
'partner_fax'
],
'data': [
'data/ir_sequence.xml',
'data/mail_message_subtype.xml',
'data/module_category.xml',
'data/fsm_stage.xml',
'data/fsm_team.xml',
'security/res_groups.xml',
'security/ir.model.access.csv',
'security/ir_rule.xml',
'report/fsm_order_report_template.xml',
'views/res_config_settings.xml',
'views/fsm_territory.xml',
'views/fsm_branch.xml',
'views/fsm_district.xml',
'views/fsm_region.xml',
'views/fsm_stage.xml',
'views/fsm_tag.xml',
'views/res_partner.xml',
'views/fsm_location.xml',
'views/fsm_location_person.xml',
'views/fsm_person.xml',
'views/fsm_order.xml',
'views/fsm_order_type.xml',
'views/fsm_category.xml',
'views/fsm_equipment.xml',
'views/fsm_template.xml',
'views/fsm_team.xml',
'views/fsm_order_type.xml',
'views/menu.xml',
'wizard/fsm_wizard.xml',
],
'demo': [
'demo/fsm_demo.xml',
'demo/fsm_equipment.xml',
'demo/fsm_location.xml',
'demo/fsm_person.xml',
],
'qweb': [
'static/src/xml/*.xml',
],
'application': True,
'license': 'AGPL-3',
'development_status': 'Beta',
'maintainers': [
'wolfhall',
'max3903',
],
}