forked from druidoo/FoodCoops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
89 lines (87 loc) · 2.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Coop - Membership',
'version': '12.0.4.0.0',
'category': 'Custom',
'summary': 'Custom settings for membership',
'author': 'La Louve, Druidoo',
'website': 'http://www.lalouve.net',
'license': 'AGPL-3',
'depends': [
'project',
'stock',
'hr_maintenance',
'hr_skill',
'mass_mailing',
'capital_subscription',
'coop_shift',
'purchase_compute_order',
'account_export',
'account_partner_journal',
'account_asset_management',
'res_partner_account_move_line',
'partner_contact_birthdate',
'partner_contact_gender',
'sms',
],
'data': [
# Security
'security/ir_module_category.xml',
'security/res_groups.xml',
'security/ir.model.access.csv',
# Custom Data
'data/report_paperformat_data.xml',
'data/ir_attachment.xml',
'data/ir_config_parameter.xml',
'data/ir_sequences.xml',
'data/ir_cron.xml',
'data/capital_fundraising_partner_type.xml',
'data/barcode_rule.xml',
'data/res_partner_inform.xml',
'data/shift_extension_type_data.xml',
'data/email_template_data.xml',
# Wizard
'wizard/view_capital_fundraising_wizard.xml',
'wizard/res_partner_generate_barcode_wizard.xml',
# Classical Data
'views/view_shift_counter_event.xml',
'views/view_res_partner_owned_share.xml',
'views/view_res_partner.xml',
'views/view_barcode_rule.xml',
'views/view_account_invoice.xml',
'views/view_capital_fundraising_category.xml',
'views/view_shift_leave.xml',
'views/view_shift_extension_type.xml',
'views/view_shift_registration.xml',
'views/view_shift_shift.xml',
'views/res_config_view.xml',
'views/view_shift_leave_type.xml',
'views/account_view.xml',
'views/event_view.xml',
'views/event_config_settings_view.xml',
'views/view_shift_extension.xml',
'views/view_shift_ticket.xml',
'views/event_registration_view.xml',
'views/web_templates.xml',
'views/view_web_access_buttons.xml',
'views/view_shift_holiday.xml',
'views/custom_templates.xml',
'views/view_shift_change_team.xml',
'views/view_shift_template.xml',
'views/view_mass_mailling.xml',
'views/view_shift_credit_config.xml',
'views/action.xml',
'views/menu.xml',
'report/member_contract.xml',
'report/member_contract_template.xml',
],
'demo': [
'demo/capital_fundraising_category.xml',
'demo/res_groups.xml',
],
'installable': True,
'application': True,
}