forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__manifest__.py
41 lines (40 loc) · 1.18 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
# Copyright (C) 2019 - TODAY, Brian McMaster, Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Field Service Recurring Work Orders',
'summary': 'Manage recurring Field Service orders',
'version': '12.0.1.3.1',
'category': 'Field Service',
'author':
'Brian McMaster, '
'Open Source Integrators, '
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/field-service',
'depends': [
'fieldservice',
],
'data': [
'data/ir_sequence.xml',
'security/res_groups.xml',
'security/ir.model.access.csv',
'security/recurring_security.xml',
'views/fsm_frequency.xml',
'views/fsm_frequency_set.xml',
'views/fsm_order.xml',
'views/fsm_recurring_template.xml',
'views/fsm_recurring.xml',
'data/recurring_cron.xml',
],
'demo': [
'demo/frequency_demo.xml',
'demo/frequency_set_demo.xml',
'demo/recur_template_demo.xml',
],
'license': 'AGPL-3',
'development_status': 'Beta',
'maintainers': [
'wolfhall',
'max3903',
'brian10048',
],
}