forked from OCA/account-financial-reporting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
46 lines (45 loc) · 1.33 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
# -*- coding: utf-8 -*-
# © 2014-2015 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'MIS Builder',
'version': '10.0.2.0.2',
'category': 'Reporting',
'summary': """
Build 'Management Information System' Reports and Dashboards
""",
'author': 'ACSONE SA/NV,'
'Odoo Community Association (OCA)',
'website': 'http://acsone.eu',
'depends': [
'account',
'board',
'report_xlsx', # OCA/reporting-engine
'date_range', # OCA/server-tools
'web_widget_color', # OCA/web
],
'data': [
'wizard/mis_builder_dashboard.xml',
'views/mis_report.xml',
'views/mis_report_instance.xml',
'views/mis_report_style.xml',
'datas/ir_cron.xml',
'security/ir.model.access.csv',
'security/mis_builder_security.xml',
'report/mis_report_instance_qweb.xml',
'report/mis_report_instance_xlsx.xml',
],
'demo': [
'tests/mis.report.kpi.csv',
'tests/mis.report.query.csv',
'tests/mis.report.csv',
'tests/mis.report.instance.period.csv',
'tests/mis.report.instance.csv',
],
'qweb': [
'static/src/xml/*.xml'
],
'installable': True,
'application': True,
'license': 'AGPL-3',
}