diff --git a/muk_web_report_page/README.rst b/muk_web_report_page/README.rst new file mode 100644 index 0000000..7587d5a --- /dev/null +++ b/muk_web_report_page/README.rst @@ -0,0 +1,107 @@ +=============== +MuK Report Page +=============== + +Reports always show the number of pages, even if they have only one page. This +module adapts the template so that it displays page numbers only if the report +contains at least 2 pages. + +Installation +============ + +To install this module, you need to: + +Download the module and add it to your Odoo addons folder. Afterward, log on to +your Odoo server and go to the Apps menu. Trigger the debug mode and update the +list by clicking on the "Update Apps List" link. Now install the module by +clicking on the install button. + +Another way to install this module is via the package management for Python +(`PyPI `_). + +To install our modules using the package manager make sure +`odoo-autodiscover `_ is installed +correctly. Then open a console and install the module by entering the following +command: + +``pip install --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +The module name consists of the Odoo version and the module name, where +underscores are replaced by a dash. + +**Module:** + +``odoo-addon-`` + +**Example:** + +``sudo -H pip3 install --extra-index-url https://nexus.mukit.at/repository/odoo/simple odoo11-addon-muk-utils`` + +Once the installation has been successfully completed, the app is already in the +correct folder. Log on to your Odoo server and go to the Apps menu. Trigger the +debug mode and update the list by clicking on the "Update Apps List" link. Now +install the module by clicking on the install button. + +The biggest advantage of this variant is that you can now also update the app +using the "pip" command. To do this, enter the following command in your console: + +``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +When the process is finished, restart your server and update the application in +Odoo. The steps are the same as for the installation only the button has changed +from "Install" to "Upgrade". + +You can also view available Apps directly in our `repository `_ +and find a more detailed installation guide on our `website `_. + +For modules licensed under OPL-1, you will receive access data when you purchase +the module. If the modules were not purchased directly from +`MuK IT `_ please contact our support (support@mukit.at) +with a confirmation of purchase to receive the corresponding access data. + +Upgrade +============ + +To upgrade this module, you need to: + +Download the module and add it to your Odoo addons folder. Restart the server +and log on to your Odoo server. Select the Apps menu and upgrade the module by +clicking on the upgrade button. + +If you installed the module using the "pip" command, you can also update the +module in the same way. Just type the following command into the console: + +``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +When the process is finished, restart your server and update the application in +Odoo, just like you would normally. + +Configuration +============= + +No additional configuration is needed to use this module. + +Usage +============= + +Print any report with just one page to see the effect. + +Credits +======= + +Contributors +------------ + +* Mathias Markl + +Author & Maintainer +------------------- + +This module is maintained by the `MuK IT GmbH `_. + +MuK IT is an Austrian company specialized in customizing and extending Odoo. +We develop custom solutions for your individual needs to help you focus on +your strength and expertise to grow your business. + +If you want to get in touch please contact us via mail +(sale@mukit.at) or visit our website (https://mukit.at). diff --git a/muk_web_report_page/__init__.py b/muk_web_report_page/__init__.py new file mode 100644 index 0000000..9bc0a69 --- /dev/null +++ b/muk_web_report_page/__init__.py @@ -0,0 +1,18 @@ +################################################################################### +# +# Copyright (C) 2018 MuK IT GmbH +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### diff --git a/muk_web_report_page/__manifest__.py b/muk_web_report_page/__manifest__.py new file mode 100644 index 0000000..e1d63de --- /dev/null +++ b/muk_web_report_page/__manifest__.py @@ -0,0 +1,51 @@ +################################################################################### +# +# Copyright (C) 2018 MuK IT GmbH +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +{ + 'name': 'MuK Report Page', + 'summary': 'Single Page Reports', + 'version': '12.0.1.0.0', + 'category': 'Extra Tools', + 'license': 'AGPL-3', + 'author': 'MuK IT', + 'website': 'https://www.mukit.at', + 'live_test_url': 'https://mukit.at/r/SgN', + 'contributors': [ + 'Mathias Markl ', + ], + 'depends': [ + 'muk_web_utils', + ], + 'data': [ + "template/minimal_layout.xml", + ], + 'qweb': [ + 'static/src/xml/*.xml', + ], + 'images': [ + 'static/description/banner.png' + ], + 'external_dependencies': { + 'python': [], + 'bin': [], + }, + 'application': False, + 'installable': True, + 'auto_install': False, +} \ No newline at end of file diff --git a/muk_web_report_page/doc/changelog.rst b/muk_web_report_page/doc/changelog.rst new file mode 100644 index 0000000..9ee2b48 --- /dev/null +++ b/muk_web_report_page/doc/changelog.rst @@ -0,0 +1,4 @@ +`1.0.0` +------- + +- Init version diff --git a/muk_web_report_page/doc/index.rst b/muk_web_report_page/doc/index.rst new file mode 100644 index 0000000..7587d5a --- /dev/null +++ b/muk_web_report_page/doc/index.rst @@ -0,0 +1,107 @@ +=============== +MuK Report Page +=============== + +Reports always show the number of pages, even if they have only one page. This +module adapts the template so that it displays page numbers only if the report +contains at least 2 pages. + +Installation +============ + +To install this module, you need to: + +Download the module and add it to your Odoo addons folder. Afterward, log on to +your Odoo server and go to the Apps menu. Trigger the debug mode and update the +list by clicking on the "Update Apps List" link. Now install the module by +clicking on the install button. + +Another way to install this module is via the package management for Python +(`PyPI `_). + +To install our modules using the package manager make sure +`odoo-autodiscover `_ is installed +correctly. Then open a console and install the module by entering the following +command: + +``pip install --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +The module name consists of the Odoo version and the module name, where +underscores are replaced by a dash. + +**Module:** + +``odoo-addon-`` + +**Example:** + +``sudo -H pip3 install --extra-index-url https://nexus.mukit.at/repository/odoo/simple odoo11-addon-muk-utils`` + +Once the installation has been successfully completed, the app is already in the +correct folder. Log on to your Odoo server and go to the Apps menu. Trigger the +debug mode and update the list by clicking on the "Update Apps List" link. Now +install the module by clicking on the install button. + +The biggest advantage of this variant is that you can now also update the app +using the "pip" command. To do this, enter the following command in your console: + +``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +When the process is finished, restart your server and update the application in +Odoo. The steps are the same as for the installation only the button has changed +from "Install" to "Upgrade". + +You can also view available Apps directly in our `repository `_ +and find a more detailed installation guide on our `website `_. + +For modules licensed under OPL-1, you will receive access data when you purchase +the module. If the modules were not purchased directly from +`MuK IT `_ please contact our support (support@mukit.at) +with a confirmation of purchase to receive the corresponding access data. + +Upgrade +============ + +To upgrade this module, you need to: + +Download the module and add it to your Odoo addons folder. Restart the server +and log on to your Odoo server. Select the Apps menu and upgrade the module by +clicking on the upgrade button. + +If you installed the module using the "pip" command, you can also update the +module in the same way. Just type the following command into the console: + +``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple `` + +When the process is finished, restart your server and update the application in +Odoo, just like you would normally. + +Configuration +============= + +No additional configuration is needed to use this module. + +Usage +============= + +Print any report with just one page to see the effect. + +Credits +======= + +Contributors +------------ + +* Mathias Markl + +Author & Maintainer +------------------- + +This module is maintained by the `MuK IT GmbH `_. + +MuK IT is an Austrian company specialized in customizing and extending Odoo. +We develop custom solutions for your individual needs to help you focus on +your strength and expertise to grow your business. + +If you want to get in touch please contact us via mail +(sale@mukit.at) or visit our website (https://mukit.at). diff --git a/muk_web_report_page/i18n/de.po b/muk_web_report_page/i18n/de.po new file mode 100644 index 0000000..8e27627 --- /dev/null +++ b/muk_web_report_page/i18n/de.po @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0-20190314\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-21 16:36+0000\n" +"PO-Revision-Date: 2019-03-21 16:36+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + diff --git a/muk_web_report_page/i18n/es.po b/muk_web_report_page/i18n/es.po new file mode 100644 index 0000000..9a48733 --- /dev/null +++ b/muk_web_report_page/i18n/es.po @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0-20190314\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-21 16:37+0000\n" +"PO-Revision-Date: 2019-03-21 16:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + diff --git a/muk_web_report_page/i18n/fr.po b/muk_web_report_page/i18n/fr.po new file mode 100644 index 0000000..9a48733 --- /dev/null +++ b/muk_web_report_page/i18n/fr.po @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0-20190314\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-21 16:37+0000\n" +"PO-Revision-Date: 2019-03-21 16:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + diff --git a/muk_web_report_page/i18n/muk_web_report_page.pot b/muk_web_report_page/i18n/muk_web_report_page.pot new file mode 100644 index 0000000..8e27627 --- /dev/null +++ b/muk_web_report_page/i18n/muk_web_report_page.pot @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0-20190314\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-21 16:36+0000\n" +"PO-Revision-Date: 2019-03-21 16:36+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + diff --git a/muk_web_report_page/i18n/nl.po b/muk_web_report_page/i18n/nl.po new file mode 100644 index 0000000..9a48733 --- /dev/null +++ b/muk_web_report_page/i18n/nl.po @@ -0,0 +1,16 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0-20190314\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-03-21 16:37+0000\n" +"PO-Revision-Date: 2019-03-21 16:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + diff --git a/muk_web_report_page/static/description/banner.png b/muk_web_report_page/static/description/banner.png new file mode 100644 index 0000000..eab78e9 Binary files /dev/null and b/muk_web_report_page/static/description/banner.png differ diff --git a/muk_web_report_page/static/description/icon.png b/muk_web_report_page/static/description/icon.png new file mode 100644 index 0000000..3458416 Binary files /dev/null and b/muk_web_report_page/static/description/icon.png differ diff --git a/muk_web_report_page/static/description/icon.svg b/muk_web_report_page/static/description/icon.svg new file mode 100644 index 0000000..dd3a7c0 --- /dev/null +++ b/muk_web_report_page/static/description/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/muk_web_report_page/static/description/index.html b/muk_web_report_page/static/description/index.html new file mode 100644 index 0000000..0401dbd --- /dev/null +++ b/muk_web_report_page/static/description/index.html @@ -0,0 +1,124 @@ +
+
+

MuK Auto Vacuum

+

Configure automatic garbage collection

+

MuK IT GmbH - + www.mukit.at

+
+
+ +
+
+
+

Overview

+

Reports always show the number of pages, even + if they have only one page. This module adapts the template so that + it displays page numbers only if the report contains at least 2 + pages.

+
+
+
+ +
+ +
+ +
+
+
+ + +
+
+
+ +
+

Help and Support

+
Feel free to + contact us, if you need any help with your Odoo integration or + addiontal features.
+ + +
\ No newline at end of file diff --git a/muk_web_report_page/static/description/logo.png b/muk_web_report_page/static/description/logo.png new file mode 100644 index 0000000..9427ce3 Binary files /dev/null and b/muk_web_report_page/static/description/logo.png differ diff --git a/muk_web_report_page/static/description/preview.png b/muk_web_report_page/static/description/preview.png new file mode 100644 index 0000000..1deb1cc Binary files /dev/null and b/muk_web_report_page/static/description/preview.png differ diff --git a/muk_web_report_page/static/description/service_customization.png b/muk_web_report_page/static/description/service_customization.png new file mode 100644 index 0000000..3eac664 Binary files /dev/null and b/muk_web_report_page/static/description/service_customization.png differ diff --git a/muk_web_report_page/static/description/service_development.png b/muk_web_report_page/static/description/service_development.png new file mode 100644 index 0000000..580d460 Binary files /dev/null and b/muk_web_report_page/static/description/service_development.png differ diff --git a/muk_web_report_page/static/description/service_implementation.png b/muk_web_report_page/static/description/service_implementation.png new file mode 100644 index 0000000..d64b66b Binary files /dev/null and b/muk_web_report_page/static/description/service_implementation.png differ diff --git a/muk_web_report_page/static/description/service_integration.png b/muk_web_report_page/static/description/service_integration.png new file mode 100644 index 0000000..76c5e80 Binary files /dev/null and b/muk_web_report_page/static/description/service_integration.png differ diff --git a/muk_web_report_page/static/description/service_support.png b/muk_web_report_page/static/description/service_support.png new file mode 100644 index 0000000..4c530fa Binary files /dev/null and b/muk_web_report_page/static/description/service_support.png differ diff --git a/muk_web_report_page/template/minimal_layout.xml b/muk_web_report_page/template/minimal_layout.xml new file mode 100644 index 0000000..6419a7a --- /dev/null +++ b/muk_web_report_page/template/minimal_layout.xml @@ -0,0 +1,44 @@ + + + + + + + + +