diff --git a/mis_builder/__openerp__.py b/mis_builder/__openerp__.py index 95e8dbda..da347a04 100644 --- a/mis_builder/__openerp__.py +++ b/mis_builder/__openerp__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder @@ -53,15 +53,16 @@ Configuration and Usage To configure this module, you need to: -* Go to Accounting > Configuration > Financial Reports > MIS Report Templates where - you can create report templates by defining KPI's. KPI's constitute the rows of your - reports. Such report templates are time independent. +* Go to Accounting > Configuration > Financial Reports > MIS Report Templates +where you can create report templates by defining KPI's. KPI's constitute +the rows of your reports. Such report templates are time independent. -* Then in Accounting > Reporting > MIS Reports you can create report instance by - binding the templates to time period, hence defining the columns of your reports. +* Then in Accounting > Reporting > MIS Reports you can create report instance +by binding the templates to time period, hence defining the columns of your +reports. -* From the MIS Report view, you can preview the report, add it to and Odoo dashboard, - and export it to Excel. +* From the MIS Report view, you can preview the report, add it to and Odoo +dashboard, and export it to Excel. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot @@ -74,11 +75,11 @@ For further information, please visit: Developer notes =============== -A typical extension is to provide a mechanism to filter reports on analytic dimensions -or operational units. To implement this, you can override _get_additional_move_line_filter -and _get_additional_filter to further filter move lines or queries based on a user -selection. A typical use case could be to add an analytic account field on mis.report.instance, -or even on mis.report.instance.period if you want different columns to show different +A typical extension is to provide a mechanism to filter reports on analytic +dimensions or operational units. To implement this, you can override +_get_additional_move_line_filter and _get_additional_filter to further +filter move lines or queries based on a user selection. A typical use case +could be to add an analytic account field on mis.report.instance, or even on mis.report.instance.period if you want different columns to show different analytic accounts. Known issues / Roadmap @@ -87,28 +88,32 @@ Known issues / Roadmap * Add 'Fiscal Year' period type. * Allow selecting accounts by type. This is currently possible by expressing - a query such as balp[][('account_id.user_type.code', '=', ...)]. This will work - but would be more efficient if one could write balp[user_type=...], as it would - involve much less queries to the database. + a query such as balp[][('account_id.user_type.code', '=', ...)]. + This will work but would be more efficient if one could write balp[ + user_type=...], as it would involve much less queries to the database. -* More tests should be added. The first part is creating test data, then it will be - easier. At the minimum, We need the following test data: +* More tests should be added. The first part is creating test data, then it +will be easier. At the minimum, We need the following test data: * one account charts with a few normal accounts and view accounts, * two fiscal years, * an opening entry in the second fiscal year, * to test multi-company consolidation, we need a second company with it's own account chart and two fiscal years, but without opening entry; we also need - a third company which is the parent of the other two and has a consolidation - chart of account. + a third company which is the parent of the other two and has a + consolidation chart of account. Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 -`here `_. +If you spotted it first, help us smashing it by providing a detailed and +welcomed feedback `here `_. Credits ======= diff --git a/mis_builder/models/aep.py b/mis_builder/models/aep.py index e7b76a48..98b1276d 100644 --- a/mis_builder/models/aep.py +++ b/mis_builder/models/aep.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder/models/aggregate.py b/mis_builder/models/aggregate.py index 4788c4c2..f098a4c5 100644 --- a/mis_builder/models/aggregate.py +++ b/mis_builder/models/aggregate.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder/models/mis_builder.py b/mis_builder/models/mis_builder.py index 38f6dcca..78f5cba4 100644 --- a/mis_builder/models/mis_builder.py +++ b/mis_builder/models/mis_builder.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder/report/mis_builder_xls.py b/mis_builder/report/mis_builder_xls.py index 88dcd1cf..48b4b276 100644 --- a/mis_builder/report/mis_builder_xls.py +++ b/mis_builder/report/mis_builder_xls.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder/tests/test_mis_builder.py b/mis_builder/tests/test_mis_builder.py index 1341cee1..d984d149 100644 --- a/mis_builder/tests/test_mis_builder.py +++ b/mis_builder/tests/test_mis_builder.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder/wizard/mis_builder_dashboard.py b/mis_builder/wizard/mis_builder_dashboard.py index 19bf36fa..0efc7670 100644 --- a/mis_builder/wizard/mis_builder_dashboard.py +++ b/mis_builder/wizard/mis_builder_dashboard.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for Odoo, Management Information System Builder diff --git a/mis_builder_demo/README.rst b/mis_builder_demo/README.rst deleted file mode 100644 index 2a1933f1..00000000 --- a/mis_builder_demo/README.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - -MIS Builder demo data -===================== - -This module adds some demo data for the mis_builder module. - -Installation -============ - -There is no specific installation procedure for this module. - - -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 -`here `_. - -Credits -======= - -Contributors ------------- - -* Stéphane Bidoul -* Laetitia Gangloff -* Adrien Peiffer - -Maintainer ----------- - -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://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. diff --git a/mis_builder_demo/__openerp__.py b/mis_builder_demo/__openerp__.py index 74c412b3..1abe8504 100644 --- a/mis_builder_demo/__openerp__.py +++ b/mis_builder_demo/__openerp__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # mis_builder module for OpenERP, Management Information System Builder @@ -32,6 +32,54 @@ 'author': 'ACSONE SA/NV,' 'Odoo Community Association (OCA)', 'website': 'http://acsone.eu', + 'description': """ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +MIS Builder demo data +===================== + +This module adds some demo data for the mis_builder module. + +Installation +============ + +There is no specific installation procedure for this module. + + +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 +`here `_. + +Credits +======= + +Contributors +------------ + +* Stéphane Bidoul +* Laetitia Gangloff +* Adrien Peiffer + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://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. + """, 'depends': [ 'account_accountant', 'mis_builder',