forked from druidoo/FoodCoops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
68 lines (67 loc) · 2.4 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
66
67
68
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# @author Cyril GASPARD
# @author Julien WESTE
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Coop Shift',
'version': '12.0.2.0.0',
'category': 'Tools',
'author': 'Julien WESTE, Sylvain LE GAL, Cyril Gaspard, La Louve, Druidoo',
'website': 'http://www.lalouve.net',
'license': 'AGPL-3',
'depends': [
'event_sale',
'barcodes_generator_partner',
'barcodes_generator_product',
'queue_job',
],
'data': [
'security/ir_module_category.xml',
'security/res_groups.xml',
'security/ir_rule.xml',
'security/ir.model.access.csv',
'data/coop_shift_data.xml',
'data/ir_sequence.xml',
'data/ir_config_parameter.xml',
'data/ir_cron.xml',
'data/report_paperformat.xml',
'data/email_template.xml',
'views/action.xml',
'views/menu.xml',
'views/product_view.xml',
'views/shift_mail_view.xml',
'views/shift_registration_view.xml',
'views/shift_template_registration_view.xml',
'views/shift_template_registration_line_view.xml',
'views/shift_shift_view.xml',
'views/shift_template_view.xml',
'views/shift_type_view.xml',
'views/shift_ticket_view.xml',
'views/view_shift_counter_event.xml',
'views/view_res_partner.xml',
'views/view_shift_extension.xml',
'views/view_shift_extension_type.xml',
'views/view_shift_leave.xml',
'views/view_shift_leave_type.xml',
'report/report_layout_custom.xml',
'report/report_data.xml',
'report/report_timesheet.xml',
'report/report_wallchart.xml',
'wizard/create_shifts_wizard_view.xml',
'wizard/update_shifts_wizard_view.xml',
'wizard/add_template_registration_view.xml',
'wizard/replace_registration_view.xml',
'wizard/view_shift_leave_wizard.xml',
'wizard/create_shifts_wizard_view2.xml',
'wizard/report_timesheet_wizard_view.xml',
'wizard/report_wallchart_wizard_view.xml',
],
'demo': [
'demo/res_groups.xml',
'demo/res_partner.xml',
'demo/shift_template.xml',
'demo/shift_template_ticket.xml'
],
}