-
Notifications
You must be signed in to change notification settings - Fork 41
/
__manifest__.py
48 lines (46 loc) · 1.42 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
# Copyright 2020 Coop IT Easy SCRL fs
# Elouan Le Bars <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Shift Management",
"summary": """Generate and manage shifts for cooperators.""",
"author": (
"Thibault Francois, "
"Elouan Le Bars, "
"Coop IT Easy SC, "
"Odoo Community Association (OCA)"
),
"website": "https://github.com/beescoop/Obeesdoo",
"category": "Cooperative management",
"version": "12.0.5.0.2",
"depends": ["mail"],
"data": [
"data/system_parameter.xml",
"data/cron.xml",
"data/mail_template.xml",
"security/group.xml",
"security/ir.model.access.csv",
"views/task_template.xml",
"views/task.xml",
"views/planning.xml",
"views/cooperative_status.xml",
"views/exempt_reason.xml",
"views/menu.xml",
"views/res_config_settings_view.xml",
"wizard/instantiate_planning.xml",
"wizard/batch_template.xml",
"wizard/assign_super_coop.xml",
"wizard/subscribe.xml",
"wizard/extension.xml",
"wizard/holiday.xml",
"wizard/temporary_exemption.xml",
],
"demo": [
"demo/exempt_reason.xml",
"demo/workers.xml",
"demo/templates.xml",
],
"license": "AGPL-3",
"pre_init_hook": "rename_beesdoo",
"post_init_hook": "post_init",
}