diff --git a/sql_export_excel/README.rst b/sql_export_excel/README.rst index 2d3ebadf1..01f868200 100644 --- a/sql_export_excel/README.rst +++ b/sql_export_excel/README.rst @@ -14,13 +14,13 @@ SQL Export Excel :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github - :target: https://github.com/OCA/server-tools/tree/14.0/sql_export_excel - :alt: OCA/server-tools + :target: https://github.com/OCA/reporting-engine/tree/15.0/sql_export_excel + :alt: OCA/reporting-engine .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-sql_export_excel + :target: https://translation.odoo-community.org/projects/reporting-engine-15-0/reporting-engine-15-0-sql_export_excel :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/149/14.0 + :target: https://runbot.odoo-community.org/runbot/149/15.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -46,10 +46,10 @@ insert the data. By default, it will insert it in the first sheet, at first row/ 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -80,6 +80,6 @@ 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. -This module is part of the `OCA/server-tools `_ project on GitHub. +This module is part of the `OCA/reporting-engine `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sql_export_excel/__manifest__.py b/sql_export_excel/__manifest__.py index 3562741c8..99d3063eb 100644 --- a/sql_export_excel/__manifest__.py +++ b/sql_export_excel/__manifest__.py @@ -3,9 +3,9 @@ { "name": "SQL Export Excel", - "version": "14.0.1.1.0", + "version": "15.0.1.0.0", "author": "Akretion,Odoo Community Association (OCA)", - "website": "https://github.com/OCA/server-tools", + "website": "https://github.com/OCA/reporting-engine", "license": "AGPL-3", "category": "Generic Modules/Others", "summary": "Allow to export a sql query to an excel file.", diff --git a/sql_export_excel/i18n/sql_export_excel.pot b/sql_export_excel/i18n/sql_export_excel.pot index cfdca2ab9..a3b912de0 100644 --- a/sql_export_excel/i18n/sql_export_excel.pot +++ b/sql_export_excel/i18n/sql_export_excel.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 14.0\n" +"Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/sql_export_excel/static/description/index.html b/sql_export_excel/static/description/index.html index 4fb831b8f..0c2222e48 100644 --- a/sql_export_excel/static/description/index.html +++ b/sql_export_excel/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runbot

Add the possibility to extract data from a sql query toward an excel file. It is also possible to provide an template excel file for a query. In this case, the data will be inserted in the specified sheet of the provided excel file. This @@ -394,10 +394,10 @@ insert the data. By default, it will insert it in the first sheet, at first row/

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.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -422,7 +422,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

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.

-

This module is part of the OCA/server-tools project on GitHub.

+

This module is part of the OCA/reporting-engine project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/sql_export_excel/tests/test_sql_query_excel.py b/sql_export_excel/tests/test_sql_query_excel.py index 6ee1f3a1f..7dc03c5a9 100644 --- a/sql_export_excel/tests/test_sql_query_excel.py +++ b/sql_export_excel/tests/test_sql_query_excel.py @@ -17,9 +17,10 @@ except ImportError: class TestExportSqlQueryExcel(TransactionCase): - def setUp(self): - super().setUp() - self.wizard_obj = self.env["sql.file.wizard"] + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.wizard_obj = cls.env["sql.file.wizard"] def get_workbook_from_query(self, wizard): wizard.export_sql()