diff --git a/report_async/README.rst b/report_async/README.rst new file mode 100644 index 0000000000..6351b418fa --- /dev/null +++ b/report_async/README.rst @@ -0,0 +1,140 @@ +============ +Report Async +============ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:49866d2b712288add9819deb8ff6dc8aa180a52463a72789350974bbf10e17ae + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/17.0/report_async + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-17-0/reporting-engine-17-0-report_async + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +The new menu "Report Center" is the central place to host your reports +in one place. From here, there are 2 ways to launch the report, + +1. Run Now - run report immediately as per normal. +2. Run Background - put the report execution to queue job. + +By using the queue job, option 2 is great for long running report. The +report file will be saved for later use, with the option to send report +by email as soon as it is ready. + +Notes: + +- Only user with Technical Feature rights can manage the report. +- Every internal user will have right to execute the report allowed for + his/her groups. +- The files created are owned and viewable only by the person who run + the report. +- Job queue manager can also see all jobs for each reports. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Menu: Dashboard > Report Center + +As Technical Feature users, you can manage reports for Report Center. + +- **Report:** choose the report (a window action). Although the option + show all window actions it only make sense for window actions that + launch reports. +- **Allow Async:** check this, if you want the report to run in + background too, suitable for report that return file as result, i.e., + pdf/xlsx/csv/txt. +- **Email Notification:** if checked, once the background process is + completed, email with link to download report will be sent. +- **Groups:** select user groups allowed to use this report. If left + blank, all user can use. + +As normal user, you can run your reports from Report Center + +- **Run Now button:** to run report immediately as per normal. +- **Run Background button:** to run report asynchronously. Fall back to + run now, if not report that produce file. +- **Job Status:** show status of the latest run job. If job fail, + exception error will also shown +- **Files:** show all files being produced by the job as run by the + user. +- **Jobs:** show all jobs triggered by this report as run by the user. + Only job queue manager have access to this button. + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Ecosoft + +Contributors +------------ + +- `Ecosoft `__: + + - Kitti U. + - Saran Lim. + - Tharathip Chaweewongphan + +- Opensourceintegrators + + - Daniel Reis + - Nikul Chaudhary + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +.. |maintainer-kittiu| image:: https://github.com/kittiu.png?size=40px + :target: https://github.com/kittiu + :alt: kittiu + +Current `maintainer `__: + +|maintainer-kittiu| + +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/report_async/__init__.py b/report_async/__init__.py new file mode 100644 index 0000000000..d5a964721a --- /dev/null +++ b/report_async/__init__.py @@ -0,0 +1,5 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from . import models +from . import wizard diff --git a/report_async/__manifest__.py b/report_async/__manifest__.py new file mode 100644 index 0000000000..d6b2147ad2 --- /dev/null +++ b/report_async/__manifest__.py @@ -0,0 +1,24 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) +{ + "name": "Report Async", + "summary": "Central place to run reports live or async", + "version": "17.0.1.0.0", + "author": "Ecosoft, Odoo Community Association (OCA)", + "license": "AGPL-3", + "website": "https://github.com/OCA/reporting-engine", + "category": "Generic Modules", + "depends": ["queue_job", "spreadsheet_dashboard"], + "data": [ + "security/ir.model.access.csv", + "security/ir_rule.xml", + "data/mail_template.xml", + "data/queue_job_function_data.xml", + "views/report_async.xml", + "wizard/print_report_wizard.xml", + ], + "demo": ["demo/report_async_demo.xml"], + "installable": True, + "maintainers": ["kittiu"], + "development_status": "Beta", +} diff --git a/report_async/data/mail_template.xml b/report_async/data/mail_template.xml new file mode 100644 index 0000000000..c3287e6729 --- /dev/null +++ b/report_async/data/mail_template.xml @@ -0,0 +1,69 @@ + + + Report Async: New Report Available + + Your report is available, ${object.name} + ${object.company_id.partner_id.email_formatted|safe} + {{ user.partner_id.id }} + + + + + +
+ + + + + + +
+ + + + +
+ % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.base.url') + % set download_url = '%s/web/content/ir.attachment/%s/datas/%s?download=true' % (base_url, object.id, object.name, ) +
+ Dear ${object.create_uid.partner_id.name or ''}, +

+ Your requested report, ${object.name}, is available for + download + . +

+ Have a nice day!
+ --
${object.company_id.name} +
+
+
+
+
+ +
+
diff --git a/report_async/data/queue_job_function_data.xml b/report_async/data/queue_job_function_data.xml new file mode 100644 index 0000000000..e5b2a23fac --- /dev/null +++ b/report_async/data/queue_job_function_data.xml @@ -0,0 +1,6 @@ + + + + run_report + + diff --git a/report_async/demo/report_async_demo.xml b/report_async/demo/report_async_demo.xml new file mode 100644 index 0000000000..1a60a3874f --- /dev/null +++ b/report_async/demo/report_async_demo.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/report_async/i18n/es.po b/report_async/i18n/es.po new file mode 100644 index 0000000000..19f92b92a9 --- /dev/null +++ b/report_async/i18n/es.po @@ -0,0 +1,416 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_async +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-09-02 20:42+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: report_async +#: model:mail.template,body_html:report_async.async_report_delivery +msgid "" +"\n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" % set base_url = object.env['ir." +"config_parameter'].sudo().get_param('web.base.url')\n" +" % set download_url = '%s/web/content/ir." +"attachment/%s/datas/%s?download=true' % (base_url, object.id, object." +"name, )\n" +"
\n" +" Dear ${object.create_uid.partner_id." +"name or ''},\n" +"

\n" +" Your requested report, ${object." +"name}, is available for \n" +" download\n" +" .\n" +"

\n" +" Have a nice day!
\n" +" --
${object.company_id.name}\n" +"
\n" +"
\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" % set base_url = object.env['ir." +"config_parameter'].sudo().get_param('web.base.url')\n" +" % set download_url = '%s/web/content/ir." +"attachment/%s/datas/%s?download=true' % (base_url, object.id, object." +"name, )\n" +"
\n" +" Estimado ${object.create_uid." +"partner_id.name or ''},\n" +"

\n" +" Su informe solicitado, ${object." +"name}, está disponible para\n" +" descargar\n" +" .\n" +"

\n" +" ¡Que tenga un buen día!
\n" +" --
${object.company_id.name}\n" +"
\n" +"
\n" +"
\n" +"
\n" +" " + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_act_window +msgid "Action Window" +msgstr "Ventana de acción" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__allow_async +msgid "Allow Async" +msgstr "Permitir Async" + +#. module: report_async +#. odoo-python +#: code:addons/report_async/models/report_async.py:0 +#, python-format +msgid "Background process not allowed." +msgstr "Proceso en segundo plano no permitido." + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Cancel" +msgstr "Cancelar" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_date +#: model:ir.model.fields,field_description:report_async.field_report_async__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__display_name +#: model:ir.model.fields,field_description:report_async.field_report_async__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__reference +msgid "Document" +msgstr "Documento" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__done +msgid "Done" +msgstr "Hecho" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__email_notify +msgid "Email Notification" +msgstr "Notificación de correo electrónico" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__enqueued +msgid "Enqueued" +msgstr "En la cola" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Execute" +msgstr "Ejecutar" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__failed +msgid "Failed" +msgstr "Fallido" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__file_ids +msgid "File" +msgstr "Fichero" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Files" +msgstr "Ficheros" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__group_ids +msgid "Groups" +msgstr "Grupos" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__id +#: model:ir.model.fields,field_description:report_async.field_report_async__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_ids +msgid "Job" +msgstr "Trabajo" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_info +msgid "Job Info" +msgstr "información laboral" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_status +msgid "Job Status" +msgstr "Estado Laboral" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Jobs" +msgstr "Trabajos" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard____last_update +#: model:ir.model.fields,field_description:report_async.field_report_async____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Last Run Job Error" +msgstr "Error en el último trabajo ejecutado" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_date +#: model:ir.model.fields,field_description:report_async.field_report_async__write_date +msgid "Last Updated on" +msgstr "Última Actualización el" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_info +msgid "Latest Job Error Message" +msgstr "Último mensaje de error del trabajo" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_status +msgid "Latest Job Status" +msgstr "Último estado del trabajo" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__file_ids +msgid "List all files created by this report background process" +msgstr "" +"Lista de todos los archivos creados por este proceso de fondo de informe" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_ids +msgid "List all jobs related to this running report" +msgstr "Lista de todos los trabajos relacionados con este informe en ejecución" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__name +msgid "Name" +msgstr "Nombre" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_view_files +msgid "No files found" +msgstr "No se han encontrado archivos" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__group_ids +msgid "" +"Only user in selected groups can use this report.If left blank, everyone can " +"use" +msgstr "" +"Sólo los usuarios de grupos seleccionados pueden utilizar este informe. Si " +"se deja en blanco, todos pueden utilizarlo" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__pending +msgid "Pending" +msgstr "Pendiente" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_print_report_wizard +msgid "Print Document" +msgstr "Imprimir documento" + +#. module: report_async +#: model:ir.model,name:report_async.model_print_report_wizard +msgid "Print Report Wizard" +msgstr "Asistente para la impresión de informes" + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_report +msgid "Report Action" +msgstr "Informar Acción" + +#. module: report_async +#: model:ir.model,name:report_async.model_report_async +msgid "Report Async" +msgstr "Informe Async" + +#. module: report_async +#: model:mail.template,name:report_async.async_report_delivery +msgid "Report Async: New Report Available" +msgstr "Informe Async: Nuevo informe disponible" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_report_async +#: model:ir.ui.menu,name:report_async.menu_report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_search +msgid "Report Center" +msgstr "Centro de informes" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_view_files +msgid "Report Files" +msgstr "Archivos de informes" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__action_report_id +msgid "Report Template" +msgstr "Plantilla de informe" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__action_id +msgid "Reports" +msgstr "Informes" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Background" +msgstr "Fondo de ejecución" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Now" +msgstr "Ejecutar ahora" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_report_async +msgid "Run reports asyncronously" +msgstr "Ejecutar informes de forma asíncrona" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__email_notify +msgid "Send email with link to report, when it is ready" +msgstr "Enviar correo electrónico con enlace al informe, cuando esté listo" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__started +msgid "Started" +msgstr "Iniciado" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was failed.\n" +" Please contact your system administrator." +msgstr "" +"El último trabajo en ejecución ha fallado.\n" +" Póngase en contacto con el administrador del sistema." + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was succeed.\n" +" You can check the result in Files" +msgstr "" +"El último trabajo en ejecución fué " +"exitoso.\n" +" Puede comprobar el resultado en Archivos" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The report will be running by \n" +" job, and will be available at\n" +" Files" +msgstr "" +"El informe se ejecutará por \n" +" trabajo, y estará disponible en\n" +" Archivos" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__allow_async +msgid "" +"This is not automatic field, please check if you want to allow this report " +"in background process" +msgstr "" +"Este campo no es automático, por favor marque si desea permitir este informe " +"en proceso de fondo" + +#. module: report_async +#: model:mail.template,subject:report_async.async_report_delivery +msgid "Your report is available, ${object.name}" +msgstr "Su informe está disponible, ${object.name}" diff --git a/report_async/i18n/it.po b/report_async/i18n/it.po new file mode 100644 index 0000000000..7f6206f83e --- /dev/null +++ b/report_async/i18n/it.po @@ -0,0 +1,400 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_async +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-01-18 09:34+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: report_async +#: model:mail.template,body_html:report_async.async_report_delivery +msgid "" +"\n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.base.url')\n" +" % set download_url = '%s/web/content/ir.attachment/%s/datas/%s?download=true' % (base_url, object.id, object.name, )\n" +"
\n" +" Dear ${object.create_uid.partner_id.name or ''},\n" +"

\n" +" Your requested report, ${object.name}, is available for \n" +" download\n" +" .\n" +"

\n" +" Have a nice day!
\n" +" --
${object.company_id.name}\n" +"
\n" +"
\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" % set base_url = object.env['ir." +"config_parameter'].sudo().get_param('web.base.url')\n" +" % set download_url = '%s/web/content/ir." +"attachment/%s/datas/%s?download=true' % (base_url, object.id, object.name, )" +"\n" +"
\n" +" Spettabile ${" +"object.create_uid.partner_id.name or ''},\n" +"

\n" +" la sua richiesta resoconto, ${object." +"name}, is available for \n" +" scaricare\n" +" .\n" +"

\n" +" Buona giornata!
\n" +" --
${object.company_id.name}\n" +"
\n" +"
\n" +"
\n" +"
\n" +" " + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_act_window +msgid "Action Window" +msgstr "Azione finestra" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__allow_async +msgid "Allow Async" +msgstr "Permetti asincrono" + +#. module: report_async +#. odoo-python +#: code:addons/report_async/models/report_async.py:0 +#, python-format +msgid "Background process not allowed." +msgstr "Processo in background non permesso." + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Cancel" +msgstr "Annulla" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_date +#: model:ir.model.fields,field_description:report_async.field_report_async__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__display_name +#: model:ir.model.fields,field_description:report_async.field_report_async__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__reference +msgid "Document" +msgstr "Documento" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__done +msgid "Done" +msgstr "Completato" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__email_notify +msgid "Email Notification" +msgstr "Notifica e-mail" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__enqueued +msgid "Enqueued" +msgstr "In coda" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Execute" +msgstr "Esegui" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__failed +msgid "Failed" +msgstr "Fallito" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__file_ids +msgid "File" +msgstr "File" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Files" +msgstr "File" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__group_ids +msgid "Groups" +msgstr "Gruppi" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__id +#: model:ir.model.fields,field_description:report_async.field_report_async__id +msgid "ID" +msgstr "ID" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_ids +msgid "Job" +msgstr "Lavoro" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_info +msgid "Job Info" +msgstr "Info lavoro" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_status +msgid "Job Status" +msgstr "Stato lavoro" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Jobs" +msgstr "Lavori" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard____last_update +#: model:ir.model.fields,field_description:report_async.field_report_async____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Last Run Job Error" +msgstr "Errore ultimo lavoro lanciato" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_date +#: model:ir.model.fields,field_description:report_async.field_report_async__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_info +msgid "Latest Job Error Message" +msgstr "Messaggio errore ultimo lavoro" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_status +msgid "Latest Job Status" +msgstr "Stato ultimo lavoro" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__file_ids +msgid "List all files created by this report background process" +msgstr "Elenca tutti i files creati da questo processo in background di stampa" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_ids +msgid "List all jobs related to this running report" +msgstr "Elenca tutti i lavori relativi a questa stampa in corso" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__name +msgid "Name" +msgstr "Nome" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_view_files +msgid "No files found" +msgstr "Nessun file trovato" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__group_ids +msgid "" +"Only user in selected groups can use this report.If left blank, everyone can" +" use" +msgstr "" +"Solo gli utenti in certi gruppi possono usare questa stampa. Se lasciato " +"vuoto, può essere usato da tutti" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__pending +msgid "Pending" +msgstr "In attesa" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_print_report_wizard +msgid "Print Document" +msgstr "Stampa documento" + +#. module: report_async +#: model:ir.model,name:report_async.model_print_report_wizard +msgid "Print Report Wizard" +msgstr "Procedura guidata stampa resoconto" + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_report +msgid "Report Action" +msgstr "Azione resoconto" + +#. module: report_async +#: model:ir.model,name:report_async.model_report_async +msgid "Report Async" +msgstr "Resoconto asincrono" + +#. module: report_async +#: model:mail.template,name:report_async.async_report_delivery +msgid "Report Async: New Report Available" +msgstr "Resoconto asincrono: nuovo resoconto disponibile" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_report_async +#: model:ir.ui.menu,name:report_async.menu_report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_search +msgid "Report Center" +msgstr "Centro resoconti" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_view_files +msgid "Report Files" +msgstr "File resoconti" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__action_report_id +msgid "Report Template" +msgstr "Modello resoconto" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__action_id +msgid "Reports" +msgstr "Resoconti" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Background" +msgstr "Lancia in background" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Now" +msgstr "Esegui adesso" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_report_async +msgid "Run reports asyncronously" +msgstr "Esegui resoconti in modo asincrono" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__email_notify +msgid "Send email with link to report, when it is ready" +msgstr "Invia una e-mail con il link al resoconto, quando è pronto" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__started +msgid "Started" +msgstr "Iniziato" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was failed.\n" +" Please contact your system administrator." +msgstr "" +"L'ultimo lavoro lanciato è fallito.\n" +" Contattare l'amministratore di sistema." + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was succeed.\n" +" You can check the result in Files" +msgstr "" +"L'ultimo lavoro lanciato è andato a buon " +"fine.\n" +" Si può verificare il risultato nei file" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The report will be running by \n" +" job, and will be available at\n" +" Files" +msgstr "" +"Il resoconto verrà eseguito in un \n" +" lavoro, e sarà disponibile nei\n" +" file" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__allow_async +msgid "" +"This is not automatic field, please check if you want to allow this report " +"in background process" +msgstr "" +"Questo non è un campo automatico, controllare se si vuole permettere quest " +"resoconto nel processo in background" + +#. module: report_async +#: model:mail.template,subject:report_async.async_report_delivery +msgid "Your report is available, ${object.name}" +msgstr "Il tuo resoconto è ponto, ${object.name}" diff --git a/report_async/i18n/report_async.pot b/report_async/i18n/report_async.pot new file mode 100644 index 0000000000..a37d5a405a --- /dev/null +++ b/report_async/i18n/report_async.pot @@ -0,0 +1,337 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_async +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \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" + +#. module: report_async +#: model:mail.template,body_html:report_async.async_report_delivery +msgid "" +"\n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" % set base_url = object.env['ir.config_parameter'].sudo().get_param('web.base.url')\n" +" % set download_url = '%s/web/content/ir.attachment/%s/datas/%s?download=true' % (base_url, object.id, object.name, )\n" +"
\n" +" Dear ${object.create_uid.partner_id.name or ''},\n" +"

\n" +" Your requested report, ${object.name}, is available for \n" +" download\n" +" .\n" +"

\n" +" Have a nice day!
\n" +" --
${object.company_id.name}\n" +"
\n" +"
\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_act_window +msgid "Action Window" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__allow_async +msgid "Allow Async" +msgstr "" + +#. module: report_async +#. odoo-python +#: code:addons/report_async/models/report_async.py:0 +#, python-format +msgid "Background process not allowed." +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Cancel" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__create_uid +msgid "Created by" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__create_date +#: model:ir.model.fields,field_description:report_async.field_report_async__create_date +msgid "Created on" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__display_name +#: model:ir.model.fields,field_description:report_async.field_report_async__display_name +msgid "Display Name" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__reference +msgid "Document" +msgstr "" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__done +msgid "Done" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__email_notify +msgid "Email Notification" +msgstr "" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__enqueued +msgid "Enqueued" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.print_report_wizard +msgid "Execute" +msgstr "" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__failed +msgid "Failed" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__file_ids +msgid "File" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Files" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__group_ids +msgid "Groups" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__id +#: model:ir.model.fields,field_description:report_async.field_report_async__id +msgid "ID" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_ids +msgid "Job" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_info +msgid "Job Info" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__job_status +msgid "Job Status" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Jobs" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard____last_update +#: model:ir.model.fields,field_description:report_async.field_report_async____last_update +msgid "Last Modified on" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "Last Run Job Error" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_uid +#: model:ir.model.fields,field_description:report_async.field_report_async__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__write_date +#: model:ir.model.fields,field_description:report_async.field_report_async__write_date +msgid "Last Updated on" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_info +msgid "Latest Job Error Message" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_status +msgid "Latest Job Status" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__file_ids +msgid "List all files created by this report background process" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__job_ids +msgid "List all jobs related to this running report" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__name +msgid "Name" +msgstr "" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_view_files +msgid "No files found" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__group_ids +msgid "" +"Only user in selected groups can use this report.If left blank, everyone can" +" use" +msgstr "" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__pending +msgid "Pending" +msgstr "" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_print_report_wizard +msgid "Print Document" +msgstr "" + +#. module: report_async +#: model:ir.model,name:report_async.model_print_report_wizard +msgid "Print Report Wizard" +msgstr "" + +#. module: report_async +#: model:ir.model,name:report_async.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_async +#: model:ir.model,name:report_async.model_report_async +msgid "Report Async" +msgstr "" + +#. module: report_async +#: model:mail.template,name:report_async.async_report_delivery +msgid "Report Async: New Report Available" +msgstr "" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_report_async +#: model:ir.ui.menu,name:report_async.menu_report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_search +msgid "Report Center" +msgstr "" + +#. module: report_async +#: model:ir.actions.act_window,name:report_async.action_view_files +msgid "Report Files" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_print_report_wizard__action_report_id +msgid "Report Template" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,field_description:report_async.field_report_async__action_id +msgid "Reports" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Background" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_tree +msgid "Run Now" +msgstr "" + +#. module: report_async +#: model_terms:ir.actions.act_window,help:report_async.action_report_async +msgid "Run reports asyncronously" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__email_notify +msgid "Send email with link to report, when it is ready" +msgstr "" + +#. module: report_async +#: model:ir.model.fields.selection,name:report_async.selection__report_async__job_status__started +msgid "Started" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was failed.\n" +" Please contact your system administrator." +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The last running job was succeed.\n" +" You can check the result in Files" +msgstr "" + +#. module: report_async +#: model_terms:ir.ui.view,arch_db:report_async.view_report_async_form +msgid "" +"The report will be running by \n" +" job, and will be available at\n" +" Files" +msgstr "" + +#. module: report_async +#: model:ir.model.fields,help:report_async.field_report_async__allow_async +msgid "" +"This is not automatic field, please check if you want to allow this report " +"in background process" +msgstr "" + +#. module: report_async +#: model:mail.template,subject:report_async.async_report_delivery +msgid "Your report is available, ${object.name}" +msgstr "" diff --git a/report_async/models/__init__.py b/report_async/models/__init__.py new file mode 100644 index 0000000000..d0e92de8d3 --- /dev/null +++ b/report_async/models/__init__.py @@ -0,0 +1,6 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from . import report_async +from . import ir_report +from . import ir_actions diff --git a/report_async/models/ir_actions.py b/report_async/models/ir_actions.py new file mode 100644 index 0000000000..67fda47934 --- /dev/null +++ b/report_async/models/ir_actions.py @@ -0,0 +1,26 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from odoo import SUPERUSER_ID, api, models + + +class IrActionsActWindow(models.Model): + _inherit = "ir.actions.act_window" + + @api.model + def name_search(self, name, args=None, operator="ilike", limit=100): + if self._context.get("access_sudo", False): + self = self.with_user(SUPERUSER_ID) + return super().name_search(name, args, operator, limit) + + @api.model + def search(self, args, offset=0, limit=None, order=None): + if self._context.get("access_sudo", False): + self = self.with_user(SUPERUSER_ID) + return super().search(args, offset, limit, order) + + def fetch(self, field_names): + """Add permission to read analytic account for do something.""" + if self._context.get("access_sudo", False): + self = self.with_user(SUPERUSER_ID) + return super().fetch(field_names) diff --git a/report_async/models/ir_report.py b/report_async/models/ir_report.py new file mode 100644 index 0000000000..e9ca999214 --- /dev/null +++ b/report_async/models/ir_report.py @@ -0,0 +1,23 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +from odoo import models + +# Define all supported report_type +REPORT_TYPES = ["qweb-pdf", "qweb-text", "qweb-xml", "csv", "excel", "xlsx"] + + +class Report(models.Model): + _inherit = "ir.actions.report" + + def report_action(self, docids, data=None, config=True): + res = super().report_action(docids, data=data, config=config) + if res["context"].get("async_process", False): + rpt_async_id = res["context"]["active_id"] + report_async = self.env["report.async"].browse(rpt_async_id) + if res["report_type"] in REPORT_TYPES: + report_async.with_delay().run_report( + res["context"].get("active_ids", []), data, self.id, self._uid + ) + return {} + return res diff --git a/report_async/models/report_async.py b/report_async/models/report_async.py new file mode 100644 index 0000000000..183e2ddb67 --- /dev/null +++ b/report_async/models/report_async.py @@ -0,0 +1,176 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) + +import base64 + +from odoo import SUPERUSER_ID, _, api, fields, models +from odoo.exceptions import UserError +from odoo.tools.safe_eval import safe_eval + +# Define all supported report_type +REPORT_TYPES_FUNC = { + "qweb-pdf": "_render_qweb_pdf", + "qweb-text": "_render_qweb_text", + "qweb-xml": "_render_qweb_xml", + "csv": "_render_csv", + "excel": "render_excel", + "xlsx": "_render_xlsx", +} + + +class ReportAsync(models.Model): + _name = "report.async" + _description = "Report Async" + + action_id = fields.Many2one( + comodel_name="ir.actions.act_window", + string="Reports", + required=True, + ) + allow_async = fields.Boolean( + default=False, + help="This is not automatic field, please check if you want to allow " + "this report in background process", + ) + name = fields.Char( + string="Name", + related="action_id.display_name", + ) + email_notify = fields.Boolean( + string="Email Notification", + help="Send email with link to report, when it is ready", + ) + group_ids = fields.Many2many( + string="Groups", + comodel_name="res.groups", + help="Only user in selected groups can use this report." + "If left blank, everyone can use", + ) + job_ids = fields.Many2many( + comodel_name="queue.job", + compute="_compute_job", + help="List all jobs related to this running report", + ) + job_status = fields.Selection( + selection=[ + ("pending", "Pending"), + ("enqueued", "Enqueued"), + ("started", "Started"), + ("done", "Done"), + ("failed", "Failed"), + ], + compute="_compute_job", + help="Latest Job Status", + ) + job_info = fields.Text( + compute="_compute_job", + help="Latest Job Error Message", + ) + file_ids = fields.Many2many( + comodel_name="ir.attachment", + compute="_compute_file", + help="List all files created by this report background process", + ) + + def _compute_job(self): + for rec in self: + rec.job_ids = ( + self.sudo() + .env["queue.job"] + .search( + [ + ("func_string", "like", "report.async(%s,)" % rec.id), + ("user_id", "=", self._uid), + ], + order="id desc", + ) + ) + rec.job_status = rec.job_ids[0].sudo().state if rec.job_ids else False + rec.job_info = rec.job_ids[0].sudo().exc_info if rec.job_ids else False + + def _compute_file(self): + files = self.env["ir.attachment"].search( + [ + ("res_model", "=", "report.async"), + ("res_id", "in", self.ids), + ("create_uid", "=", self._uid), + ], + order="id desc", + ) + for rec in self: + rec.file_ids = files.filtered(lambda file, rec=rec: file.res_id == rec.id) + + def run_now(self): + self.ensure_one() + result = self.env[self.action_id.type]._for_xml_id(self.action_id.xml_id) + ctx = safe_eval(result.get("context", {})) + ctx.update({"async_process": False}) + result["context"] = ctx + return result + + def run_async(self): + self.ensure_one() + if not self.allow_async: + raise UserError(_("Background process not allowed.")) + result = self.env[self.action_id.type]._for_xml_id(self.action_id.xml_id) + ctx = safe_eval(result.get("context", {})) + ctx.update({"async_process": True}) + result["context"] = ctx + return result + + def view_files(self): + self.ensure_one() + result = self.env["ir.actions.act_window"]._for_xml_id( + "report_async.action_view_files" + ) + result["domain"] = [("id", "in", self.file_ids.ids)] + return result + + def view_jobs(self): + self.ensure_one() + result = self.env["ir.actions.act_window"]._for_xml_id( + "queue_job.action_queue_job" + ) + result["domain"] = [("id", "in", self.job_ids.ids)] + result["context"] = {} + return result + + @api.model + def run_report(self, docids, data, report_id, user_id): + report = self.env["ir.actions.report"].browse(report_id) + func = REPORT_TYPES_FUNC[report.report_type] + # Run report + out_file, file_ext = getattr(report, func)(report.xml_id, docids, data) + out_file = base64.b64encode(out_file) + out_name = f"{report.name}.{file_ext}" + # Save report to attachment + attachment = ( + self.env["ir.attachment"] + .with_user(SUPERUSER_ID) + .create( + { + "name": out_name, + "datas": out_file, + "type": "binary", + "res_model": "report.async", + "res_id": self.id, + } + ) + ) + self._cr.execute( + """ + UPDATE ir_attachment SET create_uid = %s, write_uid = %s + WHERE id = %s""", + (self._uid, self._uid, attachment.id), + ) + # Send email + if self.email_notify: + self._send_email(attachment) + + def _send_email(self, attachment): + template = self.env.ref("report_async.async_report_delivery") + template.send_mail( + attachment.id, + email_layout_xmlid="mail.mail_notification_light", + force_send=False, + ) diff --git a/report_async/pyproject.toml b/report_async/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/report_async/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/report_async/readme/CONTRIBUTORS.md b/report_async/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..3487150f32 --- /dev/null +++ b/report_async/readme/CONTRIBUTORS.md @@ -0,0 +1,7 @@ +- [Ecosoft](http://ecosoft.co.th): + - Kitti U. \<\> + - Saran Lim. \<\> + - Tharathip Chaweewongphan \<\> +- Opensourceintegrators + - Daniel Reis \<\> + - Nikul Chaudhary \<\> diff --git a/report_async/readme/DESCRIPTION.md b/report_async/readme/DESCRIPTION.md new file mode 100644 index 0000000000..a11e376acd --- /dev/null +++ b/report_async/readme/DESCRIPTION.md @@ -0,0 +1,18 @@ +The new menu "Report Center" is the central place to host your reports +in one place. From here, there are 2 ways to launch the report, + +1. Run Now - run report immediately as per normal. +2. Run Background - put the report execution to queue job. + +By using the queue job, option 2 is great for long running report. The +report file will be saved for later use, with the option to send report +by email as soon as it is ready. + +Notes: + +- Only user with Technical Feature rights can manage the report. +- Every internal user will have right to execute the report allowed for + his/her groups. +- The files created are owned and viewable only by the person who run + the report. +- Job queue manager can also see all jobs for each reports. diff --git a/report_async/readme/USAGE.md b/report_async/readme/USAGE.md new file mode 100644 index 0000000000..2f3be55b55 --- /dev/null +++ b/report_async/readme/USAGE.md @@ -0,0 +1,26 @@ +Menu: Dashboard \> Report Center + +As Technical Feature users, you can manage reports for Report Center. + +- **Report:** choose the report (a window action). Although the option + show all window actions it only make sense for window actions that + launch reports. +- **Allow Async:** check this, if you want the report to run in + background too, suitable for report that return file as result, i.e., + pdf/xlsx/csv/txt. +- **Email Notification:** if checked, once the background process is + completed, email with link to download report will be sent. +- **Groups:** select user groups allowed to use this report. If left + blank, all user can use. + +As normal user, you can run your reports from Report Center + +- **Run Now button:** to run report immediately as per normal. +- **Run Background button:** to run report asynchronously. Fall back to + run now, if not report that produce file. +- **Job Status:** show status of the latest run job. If job fail, + exception error will also shown +- **Files:** show all files being produced by the job as run by the + user. +- **Jobs:** show all jobs triggered by this report as run by the user. + Only job queue manager have access to this button. diff --git a/report_async/security/ir.model.access.csv b/report_async/security/ir.model.access.csv new file mode 100644 index 0000000000..6e84086764 --- /dev/null +++ b/report_async/security/ir.model.access.csv @@ -0,0 +1,4 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +access_report_async,report.async.user,model_report_async,base.group_user,1,0,0,0 +access_report_async_sudo,report.async.sudo,model_report_async,base.group_no_one,1,1,1,1 +access_print_report_wizard,print.report.wizard,model_print_report_wizard,base.group_user,1,1,1,1 diff --git a/report_async/security/ir_rule.xml b/report_async/security/ir_rule.xml new file mode 100644 index 0000000000..b551c92cba --- /dev/null +++ b/report_async/security/ir_rule.xml @@ -0,0 +1,25 @@ + + + + Report Async by Groups + + + + + + + ['|', ('group_ids', '=', False), ('group_ids', 'in', [g.id for g in user.groups_id])] + + + Report Async by Groups + + + + + + + [(1,'=', 1)] + + diff --git a/report_async/static/description/icon.png b/report_async/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/report_async/static/description/icon.png differ diff --git a/report_async/static/description/index.html b/report_async/static/description/index.html new file mode 100644 index 0000000000..606d453d30 --- /dev/null +++ b/report_async/static/description/index.html @@ -0,0 +1,482 @@ + + + + + +Report Async + + + +
+

Report Async

+ + +

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

+

The new menu “Report Center” is the central place to host your reports +in one place. From here, there are 2 ways to launch the report,

+
    +
  1. Run Now - run report immediately as per normal.
  2. +
  3. Run Background - put the report execution to queue job.
  4. +
+

By using the queue job, option 2 is great for long running report. The +report file will be saved for later use, with the option to send report +by email as soon as it is ready.

+

Notes:

+
    +
  • Only user with Technical Feature rights can manage the report.
  • +
  • Every internal user will have right to execute the report allowed for +his/her groups.
  • +
  • The files created are owned and viewable only by the person who run +the report.
  • +
  • Job queue manager can also see all jobs for each reports.
  • +
+

Table of contents

+ +
+

Usage

+

Menu: Dashboard > Report Center

+

As Technical Feature users, you can manage reports for Report Center.

+
    +
  • Report: choose the report (a window action). Although the option +show all window actions it only make sense for window actions that +launch reports.
  • +
  • Allow Async: check this, if you want the report to run in +background too, suitable for report that return file as result, i.e., +pdf/xlsx/csv/txt.
  • +
  • Email Notification: if checked, once the background process is +completed, email with link to download report will be sent.
  • +
  • Groups: select user groups allowed to use this report. If left +blank, all user can use.
  • +
+

As normal user, you can run your reports from Report Center

+
    +
  • Run Now button: to run report immediately as per normal.
  • +
  • Run Background button: to run report asynchronously. Fall back to +run now, if not report that produce file.
  • +
  • Job Status: show status of the latest run job. If job fail, +exception error will also shown
  • +
  • Files: show all files being produced by the job as run by the +user.
  • +
  • Jobs: show all jobs triggered by this report as run by the user. +Only job queue manager have access to this button.
  • +
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Ecosoft
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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.

+

Current maintainer:

+

kittiu

+

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/report_async/tests/__init__.py b/report_async/tests/__init__.py new file mode 100644 index 0000000000..86bbfd13b2 --- /dev/null +++ b/report_async/tests/__init__.py @@ -0,0 +1 @@ +from . import test_report_async diff --git a/report_async/tests/test_report_async.py b/report_async/tests/test_report_async.py new file mode 100644 index 0000000000..e2b0282f28 --- /dev/null +++ b/report_async/tests/test_report_async.py @@ -0,0 +1,57 @@ +# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) +from odoo.exceptions import UserError +from odoo.tests import common +from odoo.tests.common import Form + + +class TestJobChannel(common.TransactionCase): + def setUp(self): + super().setUp() + self.print_doc = self.env.ref("report_async.report_async_print_document") + self.test_rec = self.env.ref("base.module_mail") + self.test_rpt = self.env.ref("base.ir_module_reference_print") + + def _print_wizard(self, res): + obj = self.env[res["res_model"]] + with Form( + obj.with_context( + active_model=self.print_doc._name, + active_id=self.print_doc.id, + async_process=res["context"].get("async_process"), + ) + ) as form: + form.reference = f"{self.test_rec._name},{self.test_rec.id}" + form.action_report_id = self.test_rpt + print_wizard = form.save() + return print_wizard + + def test_1_run_now(self): + """Run now will return report action as normal""" + res = self.print_doc.run_now() + report_action = self._print_wizard(res).print_report() + self.assertEqual(report_action["type"], "ir.actions.report") + + def test_2_run_async(self): + """Run background will return nothing, job started""" + self.print_doc.write({"allow_async": False}) + with self.assertRaises(UserError): + self.print_doc.run_async() + self.print_doc.write({"allow_async": True, "email_notify": True}) + res = self.print_doc.run_async() + print_wizard = self._print_wizard(res) + report_action = print_wizard.print_report() + self.assertEqual(report_action, {}) # Do not run report yet + self.assertEqual(self.print_doc.job_status, "pending") # Job started + # Test produce file (as queue will not run in test mode) + docids = [print_wizard.reference.id] + data = None + report_id = self.test_rpt.id + user_id = self.env.user.id + self.print_doc.run_report(docids, data, report_id, user_id) + # Check name of the newly producted file + # Note: on env with test-enable, always fall back to render_qweb_html + self.assertIn(self.test_rpt.name, self.print_doc.file_ids[0].name) + # View fileds/jobs + self.print_doc.view_files() + self.print_doc.view_jobs() diff --git a/report_async/views/report_async.xml b/report_async/views/report_async.xml new file mode 100644 index 0000000000..b2ce077df9 --- /dev/null +++ b/report_async/views/report_async.xml @@ -0,0 +1,166 @@ + + + + report.async.tree + report.async + + + +