From ae73680fe63b39e9699b168c702eb635388014d6 Mon Sep 17 00:00:00 2001 From: Darshan Patel Date: Fri, 29 Jan 2016 19:25:44 +0530 Subject: [PATCH] [ADD] Added Readme file --- account_entries_report_hooks/README.rst | 69 +++++++++++++++++++ .../__init__.py | 0 .../__openerp__.py | 2 +- .../report/__init__.py | 0 .../report/account_entries_report.py | 0 5 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 account_entries_report_hooks/README.rst rename {account_report_entries_hooks => account_entries_report_hooks}/__init__.py (100%) rename {account_report_entries_hooks => account_entries_report_hooks}/__openerp__.py (93%) rename {account_report_entries_hooks => account_entries_report_hooks}/report/__init__.py (100%) rename {account_report_entries_hooks => account_entries_report_hooks}/report/account_entries_report.py (100%) diff --git a/account_entries_report_hooks/README.rst b/account_entries_report_hooks/README.rst new file mode 100644 index 00000000..7143eb35 --- /dev/null +++ b/account_entries_report_hooks/README.rst @@ -0,0 +1,69 @@ +.. 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 account.entries.report module +which intends to override it in order to support and allow you to extend +it by other modules that want to add or change the standard behaviour. + +Installation +============ + +No external library is used. + +Configuration +============= + +To configure this module, you need to: + +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/9.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. + +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_report_entries_hooks/__init__.py b/account_entries_report_hooks/__init__.py similarity index 100% rename from account_report_entries_hooks/__init__.py rename to account_entries_report_hooks/__init__.py diff --git a/account_report_entries_hooks/__openerp__.py b/account_entries_report_hooks/__openerp__.py similarity index 93% rename from account_report_entries_hooks/__openerp__.py rename to account_entries_report_hooks/__openerp__.py index c26c7379..bba15eaf 100644 --- a/account_report_entries_hooks/__openerp__.py +++ b/account_entries_report_hooks/__openerp__.py @@ -4,7 +4,7 @@ # © 2015 Serpent Consulting Services Pvt. Ltd. - Sudhir Arya # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { - 'name' : 'Account Report Entries Hooks', + 'name' : 'Account Entries Report Hooks', 'version' : '8.0.1.0.0', "author": "Eficent Business and IT Consulting Services S.L., " "Serpent Consulting Services Pvt. Ltd.," diff --git a/account_report_entries_hooks/report/__init__.py b/account_entries_report_hooks/report/__init__.py similarity index 100% rename from account_report_entries_hooks/report/__init__.py rename to account_entries_report_hooks/report/__init__.py diff --git a/account_report_entries_hooks/report/account_entries_report.py b/account_entries_report_hooks/report/account_entries_report.py similarity index 100% rename from account_report_entries_hooks/report/account_entries_report.py rename to account_entries_report_hooks/report/account_entries_report.py