-
-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] base_report_to_qz: new module to print with QZ Tray
- Loading branch information
1 parent
91ae430
commit b7077d3
Showing
22 changed files
with
3,989 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
================= | ||
Report to QZ Tray | ||
================= | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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%2Freport--print--send-lightgray.png?logo=github | ||
:target: https://github.com/OCA/report-print-send/tree/14.0/base_report_to_qz_tray | ||
:alt: OCA/report-print-send | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/report-print-send-14-0/report-print-send-14-0-base_report_to_qz_tray | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png | ||
:target: https://runbot.odoo-community.org/runbot/144/14.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module allows users to send reports to a printer attached to the client. | ||
|
||
It adds an optional behaviour on reports to send it directly to a printer. | ||
|
||
* `Send to Client` is the default behaviour providing you a downloadable PDF | ||
* `Send to Printer` prints the report on selected printer | ||
|
||
Report behaviour is defined by settings. | ||
|
||
You will find this option on default user config, on default report | ||
config and on specific config per user per report. | ||
|
||
This allows you to dedicate a specific paper source for example for | ||
preprinted paper such as payment slip. | ||
|
||
Settings can be configured: | ||
|
||
* globally | ||
* per user | ||
* per report | ||
* per user and report | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Installation | ||
============ | ||
|
||
To install this module, you need to: | ||
|
||
#. Install QZ Tray on client - https://qz.io/download/ | ||
|
||
#. Install pyOpenSSL | ||
|
||
PyOpenSSL is required to sign messages sent to the clients QZ Tray (and prevent warnings). | ||
|
||
.. code-block:: bash | ||
sudo pip3 install pyOpenSSL | ||
#. Generate a certificate | ||
|
||
Take care about "Common Name (e.g. server FQDN or YOUR name) []:" THIS ENTRY IS IMPORTANT, | ||
this should be your Odoo domain name, can be filled in wildcard format an example of this would be \*.my-odoo-domain.com | ||
|
||
.. code-block:: bash | ||
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650-nodes | ||
#. Set key and certificate on Odoo | ||
|
||
Go to /Settings/Technical/Parameters/System Parameters and set: | ||
- a parameter called qz.certificate with the content of the certificate. | ||
- a parameter called qz.key with the content of the key. | ||
|
||
|
||
#. Install certificate on client QZ Tray. | ||
|
||
Open QZ Tray menu /Advanced/Site Manager and drag and drop cert.pem for your Odoo domain. | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, you need to: | ||
|
||
#. Enable the "Printing / Print User" option under access | ||
rights to give users the ability to view the print menu. | ||
|
||
|
||
The jobs will be sent to the printer installed locally with a name matching the QZ Tray Printer. | ||
|
||
Usage | ||
===== | ||
|
||
Guidelines for use: | ||
|
||
* To print a report on a specific printer or tray, you can change | ||
these in *Settings > Printing > Reports* to define default behaviour. | ||
* To print a report on a specific printer and/or tray for a user, you can | ||
change these in *Settings > Printing > Reports* in | ||
*Specific actions per user* | ||
* Users may also select a default action, printer or tray in their preferences. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/report-print-send/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 <https://github.com/OCA/report-print-send/issues/new?body=module:%20base_report_to_qz_tray%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* PESOL | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Angel Moya <angel.moya@pesol.es> | ||
|
||
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. | ||
|
||
This module is part of the `OCA/report-print-send <https://github.com/OCA/report-print-send/tree/14.0/base_report_to_qz_tray>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import models | ||
from . import controllers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Report to QZ Tray", | ||
"version": "16.0.1.0.0", | ||
"category": "Generic Modules/Base", | ||
"author": "PESOL, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/report-print-send", | ||
"license": "AGPL-3", | ||
"depends": ["web", "mail"], | ||
"data": [ | ||
"security/security.xml", | ||
"views/ir_actions_report.xml", | ||
"views/res_users.xml", | ||
], | ||
"installable": True, | ||
"application": False, | ||
"external_dependencies": {"python": ["pyOpenSSL"]}, | ||
"assets": { | ||
"web.assets_backend": [ | ||
"base_report_to_qz_tray/static/src/lib/qz-tray.js", | ||
"base_report_to_qz_tray/static/src/js/qweb_action_manager.esm.js", | ||
] | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
import base64 | ||
|
||
from OpenSSL import crypto | ||
|
||
from odoo import http | ||
from odoo.http import request | ||
|
||
|
||
class SignMessage(http.Controller): | ||
@http.route("/qz-certificate/", auth="public") | ||
def qz_certificate(self, **kwargs): | ||
config_param_sudo = request.env["ir.config_parameter"].sudo() | ||
cert = config_param_sudo.get_param("qz.certificate", default=False) | ||
return request.make_response(cert, [("Content-Type", "text/plain")]) | ||
|
||
@http.route("/qz-sign-message/", auth="public") | ||
def qz_sign_message(self, **kwargs): | ||
config_param_sudo = request.env["ir.config_parameter"].sudo() | ||
key = config_param_sudo.get_param("qz.key", default=False) | ||
password = None | ||
pkey = crypto.load_privatekey(crypto.FILETYPE_PEM, key, password) | ||
sign = crypto.sign( | ||
pkey, bytes(kwargs.get("request", ""), encoding="utf-8"), "sha512" | ||
) | ||
data_base64 = base64.b64encode(sign) | ||
return request.make_response(data_base64, [("Content-Type", "text/plain")]) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import ir_actions_report | ||
from . import printing_report_qz_tray | ||
from . import res_users | ||
from . import mail_template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
import base64 | ||
|
||
from odoo import api, fields, models | ||
|
||
|
||
class IrActionsReport(models.Model): | ||
_inherit = "ir.actions.report" | ||
|
||
printing_report_qz_tray_ids = fields.One2many( | ||
comodel_name="printing.report.qz.tray", | ||
inverse_name="report_id", | ||
string="Default Actions", | ||
help="This field allows configuring action and printer on a per " "user basis", | ||
) | ||
|
||
@api.model | ||
def qz_tray_for_report_name(self, report_name): | ||
"""Returns if the action is a direct print or pdf | ||
Called from js | ||
""" | ||
report = self._get_report_from_name(report_name) | ||
|
||
if not report or self.env.context.get("must_skip_send_to_printer"): | ||
return {"action": "download", "printer_name": self.env.user.qz_tray_printer} | ||
|
||
# get values for specific report and user | ||
report_action_values = report.get_default_report_action(user_id=self.env.uid) | ||
if report_action_values: | ||
return report_action_values | ||
|
||
# get values for specific report, for all users | ||
report_action_values = report.get_default_report_action() | ||
if report_action_values: | ||
return report_action_values | ||
|
||
# get values for user or download | ||
return { | ||
"id": report.id, | ||
"action": self.env.user.report_default_action or "download", | ||
"printer_name": self.env.user.qz_tray_printer or False, | ||
} | ||
|
||
def get_default_report_action(self, user_id=False): | ||
self.ensure_one() | ||
printing_act_obj = self.env["printing.report.qz.tray"] | ||
printing_report_qz_tray = printing_act_obj.search( | ||
# [ | ||
# ("report_id", "=", self.id), | ||
# ("user_id", "=", user_id), | ||
# ], | ||
[ | ||
("report_id", "=", self.id), | ||
"|", | ||
("user_id", "=", user_id), | ||
("user_id", "=", False), | ||
], | ||
limit=1, | ||
) | ||
if not printing_report_qz_tray: | ||
return False | ||
return { | ||
"id": self.id, | ||
"action": printing_report_qz_tray.action, | ||
"printer_name": printing_report_qz_tray.qz_tray_printer, | ||
} | ||
|
||
def get_qz_tray_data(self, res_ids, report_type="pdf", report_name="", data=None): | ||
if report_type == "pdf": | ||
# Pre V16 | ||
# result = self._render_qweb_pdf(res_ids, data) | ||
# Post V16 | ||
result = self.env["ir.actions.report"]._render_qweb_pdf( | ||
report_name, res_ids, data | ||
) | ||
data = [ | ||
{ | ||
"type": "pixel", | ||
"format": "pdf", | ||
"flavor": "base64", | ||
"data": base64.b64encode(result[0]), | ||
} | ||
] | ||
elif report_type == "text": | ||
# Pre V16 | ||
# result = self._render_qweb_text(res_ids, data) | ||
# Post V16 | ||
result = self.env["ir.actions.report"]._render_qweb_text( | ||
report_name, res_ids, data | ||
) | ||
data = [result[0].replace(b"\n", b"").decode("unicode_escape")] | ||
else: | ||
data = [] | ||
return data | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from odoo import models | ||
|
||
|
||
class MailTemplate(models.Model): | ||
_inherit = "mail.template" | ||
|
||
def _generate_template(self, res_ids, fields=None): | ||
# Pre-V17 | ||
return super( | ||
MailTemplate, self.with_context(must_skip_send_to_printer=True) | ||
).generate_email(res_ids, fields=fields) | ||
# V17 onwards | ||
# return super( | ||
# MailTemplate, self.with_context(must_skip_send_to_printer=True) | ||
# )._generate_template( | ||
# res_ids, | ||
# render_fields=render_fields, | ||
# find_or_create_partners=find_or_create_partners, | ||
# ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from odoo import fields, models | ||
|
||
|
||
class PrintingReportQzTray(models.Model): | ||
_name = "printing.report.qz.tray" | ||
_description = "Printing Report Qz Tray" | ||
|
||
report_id = fields.Many2one( | ||
comodel_name="ir.actions.report", | ||
string="Report", | ||
required=True, | ||
) | ||
user_id = fields.Many2one( | ||
comodel_name="res.users", required=False, ondelete="cascade" | ||
) | ||
action = fields.Selection([("print", "Print"), ("download", "Download")]) | ||
# TODO: Use js to show local printers and select one | ||
qz_tray_printer = fields.Char(string="QZ Tray Printer") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (C) 2022 PESOL (<http://www.camptocamp.com>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from odoo import fields, models | ||
|
||
|
||
class ResUsers(models.Model): | ||
_inherit = "res.users" | ||
|
||
report_default_action = fields.Selection( | ||
[("print", "Print"), ("download", "Download")], | ||
default="download", | ||
string="Report Action", | ||
) | ||
# TODO: Use js to show local printers and select one | ||
qz_tray_printer = fields.Char(string="QZ Tray Printer") | ||
|
||
printing_report_qz_tray_ids = fields.One2many( | ||
comodel_name="printing.report.qz.tray", | ||
inverse_name="user_id", | ||
string="Default Report Actions", | ||
help="This field allows configuring action and printer on a per " "user basis", | ||
) |
Oops, something went wrong.