From 7df70027badc36dc88ff647e106633a84130c218 Mon Sep 17 00:00:00 2001 From: Damien Crier Date: Tue, 26 Apr 2016 17:32:02 +0200 Subject: [PATCH] [ADD] new module to manage financial reports in OCA --- account_financial_report_qweb/__init__.py | 8 +++++ account_financial_report_qweb/__openerp__.py | 30 +++++++++++++++++++ .../models/__init__.py | 4 +++ .../report/__init__.py | 4 +++ .../wizard/__init__.py | 4 +++ 5 files changed, 50 insertions(+) create mode 100644 account_financial_report_qweb/__init__.py create mode 100644 account_financial_report_qweb/__openerp__.py create mode 100644 account_financial_report_qweb/models/__init__.py create mode 100644 account_financial_report_qweb/report/__init__.py create mode 100644 account_financial_report_qweb/wizard/__init__.py diff --git a/account_financial_report_qweb/__init__.py b/account_financial_report_qweb/__init__.py new file mode 100644 index 00000000..11426ddb --- /dev/null +++ b/account_financial_report_qweb/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# Author: Damien Crier +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models +from . import wizard +from . import report diff --git a/account_financial_report_qweb/__openerp__.py b/account_financial_report_qweb/__openerp__.py new file mode 100644 index 00000000..99f4e795 --- /dev/null +++ b/account_financial_report_qweb/__openerp__.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Author: Damien Crier +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + 'name': 'QWeb Financial Reports', + 'version': '9.0.0.1.0', + 'category': 'Reporting', + 'summary': """ + OCA Financial Reports + """, + 'author': 'Camptocamp SA,' + 'Odoo Community Association (OCA)', + 'website': 'http://www.camptocamp.com', + 'depends': [ + 'account', + ], + 'data': [ + ], + 'test': [ + ], + 'demo': [ + ], + 'qweb': [ + ], + 'installable': True, + 'application': True, + 'auto_install': False, + 'license': 'AGPL-3', +} diff --git a/account_financial_report_qweb/models/__init__.py b/account_financial_report_qweb/models/__init__.py new file mode 100644 index 00000000..28867113 --- /dev/null +++ b/account_financial_report_qweb/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Author: Damien Crier +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/account_financial_report_qweb/report/__init__.py b/account_financial_report_qweb/report/__init__.py new file mode 100644 index 00000000..28867113 --- /dev/null +++ b/account_financial_report_qweb/report/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Author: Damien Crier +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/account_financial_report_qweb/wizard/__init__.py b/account_financial_report_qweb/wizard/__init__.py new file mode 100644 index 00000000..28867113 --- /dev/null +++ b/account_financial_report_qweb/wizard/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Author: Damien Crier +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).