forked from AwesomeFoodCoops/odoo-production
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path__manifest__.py
31 lines (31 loc) · 1022 Bytes
/
__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
# Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
# @author: Julien Weste ([email protected])
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Coop - Print Badge',
'version': '12.0.1.0.0',
'category': 'Custom',
'summary': 'Print partner\'s badge',
'author': 'La Louve',
'website': 'http://www.lalouve.net',
'depends': [
'coop_membership',
'coop_capital_certificate',
],
'data': [
'security/res_groups.xml',
'data/ir_config_parameter_data.xml',
'data/report_paperformat.xml',
'views/assets.xml',
'views/view_res_partner.xml',
'views/badge_to_print_views.xml',
'views/res_config_settings_view.xml',
'views/actions.xml',
'views/menu.xml',
'report/coop_print_badge_report.xml',
'report/report_printbadge.xml',
],
'license': 'AGPL-3',
'installable': True,
}