forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
33 lines (32 loc) · 1.04 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
# Copyright (c) 2020 Pavlov Media <https://www.pavlovmedia.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Field Service - Change Management',
'summary': 'Manage Change Logs on Locations',
'author': 'Pavlov Media, Odoo Community Association (OCA)',
'website': 'https://www.pavlovmedia.com',
'category': 'Extra Tools',
'version': '12.0.1.1.0',
'license': 'AGPL-3',
'depends': [
'fieldservice',
],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'data/ir_sequence.xml',
'data/change_log_impact.xml',
'data/change_log_stage.xml',
'data/change_log_type.xml',
'report/change_log_reports.xml',
'views/change_log.xml',
'views/change_log_impact.xml',
'views/change_log_stage.xml',
'views/change_log_tags.xml',
'views/change_log_type.xml',
'views/fsm_location.xml',
],
'application': True,
'development_status': 'Beta',
'maintainers': ['patrickrwilson'],
}