odoo-addon-base-report-to-printer 15.0.1.1.1.3__py3-none-any.whl → 15.0.1.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-base-report-to-printer might be problematic. Click here for more details.
- odoo/addons/base_report_to_printer/README.rst +1 -1
- odoo/addons/base_report_to_printer/__manifest__.py +1 -1
- odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot +7 -0
- odoo/addons/base_report_to_printer/models/ir_actions_report.py +25 -1
- odoo/addons/base_report_to_printer/static/description/index.html +8 -6
- odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js +19 -3
- odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py +8 -6
- odoo/addons/base_report_to_printer/tests/test_report.py +3 -1
- {odoo_addon_base_report_to_printer-15.0.1.1.1.3.dist-info → odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info}/METADATA +3 -6
- {odoo_addon_base_report_to_printer-15.0.1.1.1.3.dist-info → odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info}/RECORD +12 -12
- {odoo_addon_base_report_to_printer-15.0.1.1.1.3.dist-info → odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info}/WHEEL +0 -0
- {odoo_addon_base_report_to_printer-15.0.1.1.1.3.dist-info → odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Report to printer
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:e756f026e6e8e8768d04a137cfe86fb489a70d7385f99d8ecc83c0c7b0af01d8
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -818,6 +818,13 @@ msgstr ""
|
|
|
818
818
|
msgid "The id of the job must be unique per server !"
|
|
819
819
|
msgstr ""
|
|
820
820
|
|
|
821
|
+
#. module: base_report_to_printer
|
|
822
|
+
#. openerp-web
|
|
823
|
+
#: code:addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js:0
|
|
824
|
+
#, python-format
|
|
825
|
+
msgid "The printer couldn't be reached. Downloading document instead"
|
|
826
|
+
msgstr ""
|
|
827
|
+
|
|
821
828
|
#. module: base_report_to_printer
|
|
822
829
|
#: model:ir.model.fields,help:base_report_to_printer.field_ir_actions_report__printing_action_ids
|
|
823
830
|
msgid "This field allows configuring action and printer on a per user basis"
|
|
@@ -53,6 +53,10 @@ class IrActionsReport(models.Model):
|
|
|
53
53
|
"action": result["action"],
|
|
54
54
|
"printer_name": result["printer"].name,
|
|
55
55
|
}
|
|
56
|
+
if result.get("printer_exception") and not self.env.context.get(
|
|
57
|
+
"skip_printer_exception"
|
|
58
|
+
):
|
|
59
|
+
serializable_result["printer_exception"] = True
|
|
56
60
|
return serializable_result
|
|
57
61
|
|
|
58
62
|
def _get_user_default_print_behaviour(self):
|
|
@@ -97,6 +101,21 @@ class IrActionsReport(models.Model):
|
|
|
97
101
|
# For some reason design takes report defaults over
|
|
98
102
|
# False action entries so we must allow for that here
|
|
99
103
|
result.update({k: v for k, v in print_action.behaviour().items() if v})
|
|
104
|
+
printer = result.get("printer")
|
|
105
|
+
if printer:
|
|
106
|
+
# When no printer is available we can fallback to the default behavior
|
|
107
|
+
# letting the user to manually print the reports.
|
|
108
|
+
try:
|
|
109
|
+
printer.server_id._open_connection(raise_on_error=True)
|
|
110
|
+
printer_exception = printer.status in [
|
|
111
|
+
"error",
|
|
112
|
+
"server-error",
|
|
113
|
+
"unavailable",
|
|
114
|
+
]
|
|
115
|
+
except Exception:
|
|
116
|
+
printer_exception = True
|
|
117
|
+
if printer_exception and not self.env.context.get("skip_printer_exception"):
|
|
118
|
+
result["printer_exception"] = True
|
|
100
119
|
return result
|
|
101
120
|
|
|
102
121
|
def print_document(self, record_ids, data=None):
|
|
@@ -140,7 +159,12 @@ class IrActionsReport(models.Model):
|
|
|
140
159
|
"""
|
|
141
160
|
if self.env.context.get("must_skip_send_to_printer"):
|
|
142
161
|
return False
|
|
143
|
-
if
|
|
162
|
+
if (
|
|
163
|
+
behaviour["action"] == "server"
|
|
164
|
+
and printer
|
|
165
|
+
and document
|
|
166
|
+
and not behaviour.get("printer_exception")
|
|
167
|
+
):
|
|
144
168
|
return True
|
|
145
169
|
return False
|
|
146
170
|
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
2
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
3
|
<head>
|
|
@@ -9,10 +8,11 @@
|
|
|
9
8
|
|
|
10
9
|
/*
|
|
11
10
|
:Author: David Goodger (goodger@python.org)
|
|
12
|
-
:Id: $Id: html4css1.css
|
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
|
13
12
|
:Copyright: This stylesheet has been placed in the public domain.
|
|
14
13
|
|
|
15
14
|
Default cascading style sheet for the HTML output of Docutils.
|
|
15
|
+
Despite the name, some widely supported CSS2 features are used.
|
|
16
16
|
|
|
17
17
|
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
|
18
18
|
customize this style sheet.
|
|
@@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
|
275
275
|
margin-left: 2em ;
|
|
276
276
|
margin-right: 2em }
|
|
277
277
|
|
|
278
|
-
pre.code .ln { color:
|
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
|
279
279
|
pre.code, code { background-color: #eeeeee }
|
|
280
280
|
pre.code .comment, code .comment { color: #5C6576 }
|
|
281
281
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
|
@@ -301,7 +301,7 @@ span.option {
|
|
|
301
301
|
span.pre {
|
|
302
302
|
white-space: pre }
|
|
303
303
|
|
|
304
|
-
span.problematic {
|
|
304
|
+
span.problematic, pre.problematic {
|
|
305
305
|
color: red }
|
|
306
306
|
|
|
307
307
|
span.section-subtitle {
|
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:e756f026e6e8e8768d04a137cfe86fb489a70d7385f99d8ecc83c0c7b0af01d8
|
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/report-print-send/tree/15.0/base_report_to_printer"><img alt="OCA/report-print-send" src="https://img.shields.io/badge/github-OCA%2Freport--print--send-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/report-print-send-15-0/report-print-send-15-0-base_report_to_printer"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/report-print-send&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
373
|
<p>This module allows users to send reports to a printer attached to the server.</p>
|
|
@@ -515,7 +515,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
515
515
|
<div class="section" id="maintainers">
|
|
516
516
|
<h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2>
|
|
517
517
|
<p>This module is maintained by the OCA.</p>
|
|
518
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
|
518
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
519
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
520
|
+
</a>
|
|
519
521
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
520
522
|
mission is to support the collaborative development of Odoo features and
|
|
521
523
|
promote its widespread use.</p>
|
|
@@ -10,19 +10,35 @@ async function cupsReportActionHandler(action, options, env) {
|
|
|
10
10
|
"print_action_for_report_name",
|
|
11
11
|
[action.report_name]
|
|
12
12
|
);
|
|
13
|
-
if (
|
|
13
|
+
if (
|
|
14
|
+
print_action &&
|
|
15
|
+
print_action.action === "server" &&
|
|
16
|
+
!print_action.printer_exception
|
|
17
|
+
) {
|
|
14
18
|
const result = await orm.call("ir.actions.report", "print_document", [
|
|
15
19
|
action.id,
|
|
16
20
|
action.context.active_ids,
|
|
17
21
|
action.data,
|
|
18
22
|
]);
|
|
19
23
|
if (result) {
|
|
20
|
-
env.services.notification.add(env._t("Successfully sent to printer!")
|
|
24
|
+
env.services.notification.add(env._t("Successfully sent to printer!"), {
|
|
25
|
+
type: "success",
|
|
26
|
+
});
|
|
21
27
|
} else {
|
|
22
|
-
env.services.notification.add(env._t("Could not sent to printer!")
|
|
28
|
+
env.services.notification.add(env._t("Could not sent to printer!"), {
|
|
29
|
+
type: "danger",
|
|
30
|
+
});
|
|
23
31
|
}
|
|
24
32
|
return true;
|
|
25
33
|
}
|
|
34
|
+
if (print_action.printer_exception) {
|
|
35
|
+
env.services.notification.add(
|
|
36
|
+
env._t("The printer couldn't be reached. Downloading document instead"),
|
|
37
|
+
{
|
|
38
|
+
type: "warning",
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
}
|
|
26
42
|
}
|
|
27
43
|
}
|
|
28
44
|
|
|
@@ -12,10 +12,12 @@ model = "odoo.addons.base.models.ir_actions_report.IrActionsReport"
|
|
|
12
12
|
class TestIrActionsReportXml(TransactionCase):
|
|
13
13
|
def setUp(self):
|
|
14
14
|
super(TestIrActionsReportXml, self).setUp()
|
|
15
|
-
self.Model = self.env["ir.actions.report"]
|
|
15
|
+
self.Model = self.env["ir.actions.report"].with_context(
|
|
16
|
+
skip_printer_exception=True
|
|
17
|
+
)
|
|
16
18
|
self.vals = {}
|
|
17
19
|
|
|
18
|
-
self.report = self.
|
|
20
|
+
self.report = self.Model.search([], limit=1)
|
|
19
21
|
self.server = self.env["printing.server"].create({})
|
|
20
22
|
|
|
21
23
|
def new_action(self):
|
|
@@ -153,7 +155,7 @@ class TestIrActionsReportXml(TransactionCase):
|
|
|
153
155
|
self.env.user.printing_action = "client"
|
|
154
156
|
printing_action = self.new_printing_action()
|
|
155
157
|
printing_action.user_id = self.env.user
|
|
156
|
-
printing_action.report_id = self.
|
|
158
|
+
printing_action.report_id = self.Model.search(
|
|
157
159
|
[("id", "!=", report.id)], limit=1
|
|
158
160
|
)
|
|
159
161
|
self.assertEqual(
|
|
@@ -213,7 +215,7 @@ class TestIrActionsReportXml(TransactionCase):
|
|
|
213
215
|
"""
|
|
214
216
|
It should return the correct tray
|
|
215
217
|
"""
|
|
216
|
-
report = self.
|
|
218
|
+
report = self.Model.search([], limit=1)
|
|
217
219
|
action = self.env["printing.report.xml.action"].create(
|
|
218
220
|
{"user_id": self.env.user.id, "report_id": report.id, "action": "server"}
|
|
219
221
|
)
|
|
@@ -266,7 +268,7 @@ class TestIrActionsReportXml(TransactionCase):
|
|
|
266
268
|
self.assertEqual("Action tray", report.behaviour()["tray"])
|
|
267
269
|
|
|
268
270
|
def test_onchange_printer_tray_id_empty(self):
|
|
269
|
-
action = self.
|
|
271
|
+
action = self.Model.new({"printer_tray_id": False})
|
|
270
272
|
action.onchange_printing_printer_id()
|
|
271
273
|
self.assertFalse(action.printer_tray_id)
|
|
272
274
|
|
|
@@ -289,7 +291,7 @@ class TestIrActionsReportXml(TransactionCase):
|
|
|
289
291
|
{"name": "Tray", "system_name": "TrayName", "printer_id": printer.id}
|
|
290
292
|
)
|
|
291
293
|
|
|
292
|
-
action = self.
|
|
294
|
+
action = self.Model.new({"printer_tray_id": tray.id})
|
|
293
295
|
self.assertEqual(action.printer_tray_id, tray)
|
|
294
296
|
action.onchange_printing_printer_id()
|
|
295
297
|
self.assertFalse(action.printer_tray_id)
|
|
@@ -11,7 +11,9 @@ from odoo.tests import common
|
|
|
11
11
|
class TestReport(common.HttpCase):
|
|
12
12
|
def setUp(self):
|
|
13
13
|
super(TestReport, self).setUp()
|
|
14
|
-
self.Model = self.env["ir.actions.report"]
|
|
14
|
+
self.Model = self.env["ir.actions.report"].with_context(
|
|
15
|
+
skip_printer_exception=True
|
|
16
|
+
)
|
|
15
17
|
self.server = self.env["printing.server"].create({})
|
|
16
18
|
self.report_vals = {
|
|
17
19
|
"name": "Test Report",
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name: odoo-addon-
|
|
3
|
-
Version: 15.0.1.1.
|
|
2
|
+
Name: odoo-addon-base_report_to_printer
|
|
3
|
+
Version: 15.0.1.1.2
|
|
4
4
|
Summary: Report to printer
|
|
5
5
|
Home-page: https://github.com/OCA/report-print-send
|
|
6
6
|
Author: Agile Business Group & Domsense, Pegueroles SCP, NaN, LasLabs, Camptocamp, Odoo Community Association (OCA), Open for Small Business Ltd
|
|
7
7
|
Author-email: support@odoo-community.org
|
|
8
8
|
License: AGPL-3
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: Programming Language :: Python
|
|
11
10
|
Classifier: Framework :: Odoo
|
|
12
11
|
Classifier: Framework :: Odoo :: 15.0
|
|
@@ -24,7 +23,7 @@ Report to printer
|
|
|
24
23
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
24
|
!! changes will be overwritten. !!
|
|
26
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
26
|
+
!! source digest: sha256:e756f026e6e8e8768d04a137cfe86fb489a70d7385f99d8ecc83c0c7b0af01d8
|
|
28
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
28
|
|
|
30
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -194,5 +193,3 @@ promote its widespread use.
|
|
|
194
193
|
This module is part of the `OCA/report-print-send <https://github.com/OCA/report-print-send/tree/15.0/base_report_to_printer>`_ project on GitHub.
|
|
195
194
|
|
|
196
195
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
197
|
-
|
|
198
|
-
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
odoo/addons/base_report_to_printer/README.rst,sha256=
|
|
1
|
+
odoo/addons/base_report_to_printer/README.rst,sha256=gLF3vozKltcoBWEreRF7E3dqKfzJBSlxmbaNtx1CIqM,6071
|
|
2
2
|
odoo/addons/base_report_to_printer/__init__.py,sha256=Ldk9I_2g8cYtB7aM2jrf7Si9uWQbxTyaUwq31rv-X1E,439
|
|
3
|
-
odoo/addons/base_report_to_printer/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/base_report_to_printer/__manifest__.py,sha256=VmjByyqpsEwJukJRmfis2Iz_gOkWOkmD4FcMv0peOhc,1478
|
|
4
4
|
odoo/addons/base_report_to_printer/data/printing_data.xml,sha256=_D1pBsEJ8oQ2JvO0lFKaAM7yypZloLcyOaG9OFYVyIM,1476
|
|
5
5
|
odoo/addons/base_report_to_printer/i18n/am.po,sha256=1PV8UOhYkqilXnhnAil3bGhc5lA2ITfsldFuESTdAUc,38369
|
|
6
|
-
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=
|
|
6
|
+
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=q3zgnf-uZcAylc2RhEXiUtybVGlwdKkhax-wFvqjh08,38227
|
|
7
7
|
odoo/addons/base_report_to_printer/i18n/bg.po,sha256=4OUeb77_mUoxmQx5NGAwuj4-5ZeMRddn2JqVM4CH7d8,38468
|
|
8
8
|
odoo/addons/base_report_to_printer/i18n/ca.po,sha256=ZjCDBQ5M-LEWafd7nn921TW517DxJ3TUr2TnPyMNA3E,38368
|
|
9
9
|
odoo/addons/base_report_to_printer/i18n/de.po,sha256=WAlGlG4Y_aHx5rS-RKJ9TZIUj9ZsMabSUL3SELBZxlk,41991
|
|
@@ -27,7 +27,7 @@ odoo/addons/base_report_to_printer/i18n/sv.po,sha256=OHnMYun2fgSP-JspVX4UwRiSaVO
|
|
|
27
27
|
odoo/addons/base_report_to_printer/i18n/tr.po,sha256=szRAHFXNBt0lb7rP1fxhKoZ9jp40iVB3PF7NEdAvd2w,38352
|
|
28
28
|
odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=wqw_Ljnuo-0ogSMRwbw1CZ0WILPf2_THj_E_V4Vv2XA,38364
|
|
29
29
|
odoo/addons/base_report_to_printer/models/__init__.py,sha256=y92zKlKN-X-KT04jwLi8XgUsY8HAbDiRvdPKDWCpvGo,243
|
|
30
|
-
odoo/addons/base_report_to_printer/models/ir_actions_report.py,sha256=
|
|
30
|
+
odoo/addons/base_report_to_printer/models/ir_actions_report.py,sha256=iiek3Mwbg3ir1d6qvZioUZ7hYSSefiur_o3bMgHqEDE,8053
|
|
31
31
|
odoo/addons/base_report_to_printer/models/printing_action.py,sha256=5i1Vdd-59RxfMoJSI_24BwpHb2BXKm7brRmO17zzsF8,912
|
|
32
32
|
odoo/addons/base_report_to_printer/models/printing_job.py,sha256=jDAQABz5oDnSMW4VGJj-8J-1q3ug_EXeqERG8SNhK00,4923
|
|
33
33
|
odoo/addons/base_report_to_printer/models/printing_printer.py,sha256=14RU0GMK6BZ4xFmSHzbA2c2QXTG4TQwtGgpHNNIkfnE,8550
|
|
@@ -44,10 +44,10 @@ odoo/addons/base_report_to_printer/readme/USAGE.rst,sha256=__mLAaeK28z7E4PnK7L03
|
|
|
44
44
|
odoo/addons/base_report_to_printer/security/ir.model.access.csv,sha256=tIjk4kiES-JnJ_vgM7QrBSkuldIfvqUH5mZAKYPnY08,194
|
|
45
45
|
odoo/addons/base_report_to_printer/security/security.xml,sha256=O00e1bSgh_Wla57UQRbRSGRKdVip4WWi8NT1dIk7j0o,7438
|
|
46
46
|
odoo/addons/base_report_to_printer/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
47
|
-
odoo/addons/base_report_to_printer/static/description/index.html,sha256=
|
|
48
|
-
odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=
|
|
47
|
+
odoo/addons/base_report_to_printer/static/description/index.html,sha256=uY5b9b9xLcXnVMb28TtVzW3aeFliGLOxMdbs1Q4CtEo,18700
|
|
48
|
+
odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=a2esH7zBV50whiuWiHTgieRxty2kVctDNt8xEr5UJSs,1509
|
|
49
49
|
odoo/addons/base_report_to_printer/tests/__init__.py,sha256=tpUyFuG96289zrpY1fTMi-moLC2KFq_93_NjuDCw1Rg,458
|
|
50
|
-
odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py,sha256=
|
|
50
|
+
odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py,sha256=O7x-XjP3ShbnApyjVQ7dWIptIVYe-W_EoNLDVgjA19A,11412
|
|
51
51
|
odoo/addons/base_report_to_printer/tests/test_printing_job.py,sha256=z7LZ9eJeloIE9jHCH1x-trsU6ZzWIjKyo7xiohL_jQY,2129
|
|
52
52
|
odoo/addons/base_report_to_printer/tests/test_printing_printer.py,sha256=W81b_kDStLnjWGnEbKj9k9L7dUAe-J9_sMcsYNNmAn0,7131
|
|
53
53
|
odoo/addons/base_report_to_printer/tests/test_printing_printer_tray.py,sha256=Xr6g4x60Munkux9gDbir11U1QIHvepJUJu7kDgpxD_4,9004
|
|
@@ -55,7 +55,7 @@ odoo/addons/base_report_to_printer/tests/test_printing_printer_wizard.py,sha256=
|
|
|
55
55
|
odoo/addons/base_report_to_printer/tests/test_printing_report_xml_action.py,sha256=n3tgmex7wwiudvUqBjvVAmyu8s1AF2uOAyHbSyz9ICw,3191
|
|
56
56
|
odoo/addons/base_report_to_printer/tests/test_printing_server.py,sha256=IUf1cgZYq-g9w2otj64u9syV6jrSHSfOzDRgGxuuwd0,7571
|
|
57
57
|
odoo/addons/base_report_to_printer/tests/test_printing_tray.py,sha256=eHJNMyZPalNgOpHWUPkXAdAJBBMpj2fociDTc3V0Tlk,1787
|
|
58
|
-
odoo/addons/base_report_to_printer/tests/test_report.py,sha256=
|
|
58
|
+
odoo/addons/base_report_to_printer/tests/test_report.py,sha256=bJSP3s16dSYDSmzURhroG8voNJzkmKv7eaBZl6wEXgg,6379
|
|
59
59
|
odoo/addons/base_report_to_printer/tests/test_res_users.py,sha256=Q_wqWEE7FvuLC5CPeYc8VQ12uyLV6rTlOhH8nQv9rOE,1983
|
|
60
60
|
odoo/addons/base_report_to_printer/views/ir_actions_report.xml,sha256=CP_pykwKIJRjy39X1sp9CPOMaMpnt0PK8OR9-2DascU,890
|
|
61
61
|
odoo/addons/base_report_to_printer/views/printing_job.xml,sha256=L25kmiDDl5bS0nvrA0rdkC_1_2U2JgiAD-7z_zwSdoY,1852
|
|
@@ -68,7 +68,7 @@ odoo/addons/base_report_to_printer/wizards/print_attachment_report.py,sha256=fhS
|
|
|
68
68
|
odoo/addons/base_report_to_printer/wizards/print_attachment_report.xml,sha256=nniCofH1YSOj_HeD4zTV1ilGTjhjCgdZUqK9lfBz2K4,2214
|
|
69
69
|
odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard.py,sha256=l58Nk3BAVydb9Yi_fbh7FIpA-UDyTnvK7xIYvEr742c,895
|
|
70
70
|
odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard_view.xml,sha256=UbN9xjc12hI57ojjs84hPgQOfqPbuD_XThPyvyMxp-Y,1399
|
|
71
|
-
odoo_addon_base_report_to_printer-15.0.1.1.
|
|
72
|
-
odoo_addon_base_report_to_printer-15.0.1.1.
|
|
73
|
-
odoo_addon_base_report_to_printer-15.0.1.1.
|
|
74
|
-
odoo_addon_base_report_to_printer-15.0.1.1.
|
|
71
|
+
odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info/METADATA,sha256=ft84hjX7j2ojabmFxv5xpINXq1uh-bJ4kd-T2l8sMPc,6704
|
|
72
|
+
odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
73
|
+
odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
74
|
+
odoo_addon_base_report_to_printer-15.0.1.1.2.dist-info/RECORD,,
|
|
File without changes
|