diff --git a/account_entries_report_hooks/README.rst b/account_entries_report_hooks/README.rst new file mode 100644 index 00000000..5aaca24a --- /dev/null +++ b/account_entries_report_hooks/README.rst @@ -0,0 +1,76 @@ +.. image:: https://img.shields.io/badge/license-AGPLv3-blue.svg + :target: https://www.gnu.org/licenses/agpl.html + :alt: License: AGPL-3 + +============================ +Account Entries Report Hooks +============================ + +This module extends the functionality of the "Account Entries Report" by +overriding the standard query with a new one that will allow other modules +to extend it more flexibly. + + +Configuration +============= + +In order to extend the Account Entries Report, you need to: + +* Include this module as dependency in your own module + +* Inherit from "account.entries.report" module + +* Add your own fields, as needed + +* Implement one of the new methods _select, _from, _where, _group_by, + calling first to the super() method and then adding the extra string as + needed. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/91/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Eficent Business and IT Consulting Services S.L. +* Serpent Consulting Services Pvt. Ltd. +* Xpansa Group + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. \ No newline at end of file diff --git a/account_entries_report_hooks/__init__.py b/account_entries_report_hooks/__init__.py new file mode 100644 index 00000000..c9f91f70 --- /dev/null +++ b/account_entries_report_hooks/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# © 2015 Eficent Business and IT Consulting Services S.L. - +# Jordi Ballester Alomar +# © 2015 Serpent Consulting Services Pvt. Ltd. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import reports diff --git a/account_entries_report_hooks/__openerp__.py b/account_entries_report_hooks/__openerp__.py new file mode 100644 index 00000000..df0f4b57 --- /dev/null +++ b/account_entries_report_hooks/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2015 Eficent Business and IT Consulting Services S.L. - +# Jordi Ballester Alomar +# © 2015 Serpent Consulting Services Pvt. Ltd. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + 'name': 'Account Entries Report Hooks', + 'version': '8.0.1.0.0', + 'summary': 'Implements an Account Entries Report that is extensible', + 'author': "Eficent Business and IT Consulting Services S.L., " + "Serpent Consulting Services Pvt. Ltd.," + "Odoo Community Association (OCA)", + 'category': 'Accounting & Finance', + 'website': "http://www.eficent.com", + "license": "AGPL-3", + 'depends': ['account'], + 'installable': True, + 'auto_install': False, +} diff --git a/account_entries_report_hooks/reports/__init__.py b/account_entries_report_hooks/reports/__init__.py new file mode 100644 index 00000000..6356376a --- /dev/null +++ b/account_entries_report_hooks/reports/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# © 2015 Eficent Business and IT Consulting Services S.L. - +# Jordi Ballester Alomar +# © 2015 Serpent Consulting Services Pvt. Ltd. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import account_entries_report diff --git a/account_entries_report_hooks/reports/account_entries_report.py b/account_entries_report_hooks/reports/account_entries_report.py new file mode 100644 index 00000000..6ce18fdc --- /dev/null +++ b/account_entries_report_hooks/reports/account_entries_report.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# © 2015 Eficent Business and IT Consulting Services S.L. - +# Jordi Ballester Alomar +# © 2015 Serpent Consulting Services Pvt. Ltd. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from openerp import models, tools + + +class AccountEntriesReport(models.Model): + _inherit = "account.entries.report" + + def _select(self): + select_str = """ + SELECT + l.id as id, + am.date as date, + l.date_maturity as date_maturity, + l.date_created as date_created, + am.ref as ref, + am.state as move_state, + l.state as move_line_state, + l.reconcile_id as reconcile_id, + l.partner_id as partner_id, + l.product_id as product_id, + l.product_uom_id as product_uom_id, + am.company_id as company_id, + am.journal_id as journal_id, + p.fiscalyear_id as fiscalyear_id, + am.period_id as period_id, + l.account_id as account_id, + l.analytic_account_id as analytic_account_id, + a.type as type, + a.user_type as user_type, + 1 as nbr, + l.quantity as quantity, + l.currency_id as currency_id, + l.amount_currency as amount_currency, + l.debit as debit, + l.credit as credit, + coalesce(l.debit, 0.0) - coalesce(l.credit, 0.0) as balance + """ + return select_str + + def _from(self): + from_str = """ + FROM + account_move_line l + left join account_account a on (l.account_id = a.id) + left join account_move am on (am.id=l.move_id) + left join account_period p on (am.period_id=p.id) + + """ + return from_str + + def _where(self): + where_str = """ + where l.state != 'draft' + """ + return where_str + + def _group_by(self): + group_by_str = """ + """ + return group_by_str + + def init(self, cr): + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + %s + %s + %s + %s + )""" % (self._table, self._select(), self._from(), self._where(), + self._group_by()))