Browse Source

[ADD] new module to manage financial reports in OCA

pull/196/head
Damien Crier 8 years ago
committed by Leonardo Pistone
parent
commit
7df70027ba
  1. 8
      account_financial_report_qweb/__init__.py
  2. 30
      account_financial_report_qweb/__openerp__.py
  3. 4
      account_financial_report_qweb/models/__init__.py
  4. 4
      account_financial_report_qweb/report/__init__.py
  5. 4
      account_financial_report_qweb/wizard/__init__.py

8
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

30
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',
}

4
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).

4
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).

4
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).
Loading…
Cancel
Save