odoo-addon-base-report-to-printer 15.0.1.2.0.1__py3-none-any.whl → 15.0.1.2.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 +8 -1
- odoo/addons/base_report_to_printer/__manifest__.py +1 -1
- odoo/addons/base_report_to_printer/i18n/am.po +18 -1
- odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot +18 -1
- odoo/addons/base_report_to_printer/i18n/bg.po +18 -1
- odoo/addons/base_report_to_printer/i18n/ca.po +18 -1
- odoo/addons/base_report_to_printer/i18n/de.po +18 -1
- odoo/addons/base_report_to_printer/i18n/el_GR.po +18 -1
- odoo/addons/base_report_to_printer/i18n/es.po +36 -50
- odoo/addons/base_report_to_printer/i18n/es_AR.po +18 -1
- odoo/addons/base_report_to_printer/i18n/es_ES.po +18 -1
- odoo/addons/base_report_to_printer/i18n/fi.po +18 -1
- odoo/addons/base_report_to_printer/i18n/fr.po +18 -1
- odoo/addons/base_report_to_printer/i18n/gl.po +18 -1
- odoo/addons/base_report_to_printer/i18n/hr.po +18 -1
- odoo/addons/base_report_to_printer/i18n/hr_HR.po +18 -1
- odoo/addons/base_report_to_printer/i18n/it.po +18 -1
- odoo/addons/base_report_to_printer/i18n/nl.po +18 -1
- odoo/addons/base_report_to_printer/i18n/nl_NL.po +18 -1
- odoo/addons/base_report_to_printer/i18n/pt.po +18 -1
- odoo/addons/base_report_to_printer/i18n/pt_BR.po +18 -1
- odoo/addons/base_report_to_printer/i18n/pt_PT.po +18 -1
- odoo/addons/base_report_to_printer/i18n/sl.po +18 -1
- odoo/addons/base_report_to_printer/i18n/sv.po +18 -1
- odoo/addons/base_report_to_printer/i18n/tr.po +18 -1
- odoo/addons/base_report_to_printer/i18n/zh_CN.po +18 -1
- odoo/addons/base_report_to_printer/models/ir_actions_report.py +7 -1
- odoo/addons/base_report_to_printer/readme/ROADMAP.rst +3 -0
- odoo/addons/base_report_to_printer/static/description/index.html +26 -17
- odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js +52 -14
- {odoo_addon_base_report_to_printer-15.0.1.2.0.1.dist-info → odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info}/METADATA +9 -2
- {odoo_addon_base_report_to_printer-15.0.1.2.0.1.dist-info → odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info}/RECORD +34 -33
- {odoo_addon_base_report_to_printer-15.0.1.2.0.1.dist-info → odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info}/WHEEL +0 -0
- {odoo_addon_base_report_to_printer-15.0.1.2.0.1.dist-info → odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info}/top_level.txt +0 -0
|
@@ -59,6 +59,8 @@ class IrActionsReport(models.Model):
|
|
|
59
59
|
"skip_printer_exception"
|
|
60
60
|
):
|
|
61
61
|
serializable_result["printer_exception"] = True
|
|
62
|
+
if self.env.context.get("force_print_to_client"):
|
|
63
|
+
serializable_result["action"] = "client"
|
|
62
64
|
return serializable_result
|
|
63
65
|
|
|
64
66
|
def _get_user_default_print_behaviour(self):
|
|
@@ -135,7 +137,10 @@ class IrActionsReport(models.Model):
|
|
|
135
137
|
|
|
136
138
|
return True
|
|
137
139
|
else:
|
|
138
|
-
|
|
140
|
+
try:
|
|
141
|
+
return self.print_document(record_ids, data=data)
|
|
142
|
+
except Exception:
|
|
143
|
+
return
|
|
139
144
|
|
|
140
145
|
def print_document_threaded(self, report_id, record_ids, data):
|
|
141
146
|
with registry(self._cr.dbname).cursor() as cr:
|
|
@@ -171,6 +176,7 @@ class IrActionsReport(models.Model):
|
|
|
171
176
|
else:
|
|
172
177
|
title = self.report_name
|
|
173
178
|
behaviour["title"] = title
|
|
179
|
+
behaviour["res_ids"] = record_ids
|
|
174
180
|
# TODO should we use doc_format instead of report_type
|
|
175
181
|
return printer.print_document(
|
|
176
182
|
self, document, doc_format=self.report_type, **behaviour
|
|
@@ -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:d01e7484148b791ad16131189bac95c50224b19a7bff27f4720ab76fa22d1efd
|
|
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>
|
|
@@ -396,16 +396,17 @@ preprinted paper such as payment slip.</p>
|
|
|
396
396
|
<li><a class="reference internal" href="#installation" id="toc-entry-1">Installation</a></li>
|
|
397
397
|
<li><a class="reference internal" href="#configuration" id="toc-entry-2">Configuration</a></li>
|
|
398
398
|
<li><a class="reference internal" href="#usage" id="toc-entry-3">Usage</a></li>
|
|
399
|
-
<li><a class="reference internal" href="#
|
|
400
|
-
<li><a class="reference internal" href="#
|
|
401
|
-
<li><a class="reference internal" href="#section-
|
|
399
|
+
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-4">Known issues / Roadmap</a></li>
|
|
400
|
+
<li><a class="reference internal" href="#changelog" id="toc-entry-5">Changelog</a><ul>
|
|
401
|
+
<li><a class="reference internal" href="#section-1" id="toc-entry-6">13.0.1.0.0 (2019-09-30)</a></li>
|
|
402
|
+
<li><a class="reference internal" href="#section-2" id="toc-entry-7">12.0.1.0.0 (2018-02-04)</a></li>
|
|
402
403
|
</ul>
|
|
403
404
|
</li>
|
|
404
|
-
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-
|
|
405
|
-
<li><a class="reference internal" href="#credits" id="toc-entry-
|
|
406
|
-
<li><a class="reference internal" href="#authors" id="toc-entry-
|
|
407
|
-
<li><a class="reference internal" href="#contributors" id="toc-entry-
|
|
408
|
-
<li><a class="reference internal" href="#maintainers" id="toc-entry-
|
|
405
|
+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-8">Bug Tracker</a></li>
|
|
406
|
+
<li><a class="reference internal" href="#credits" id="toc-entry-9">Credits</a><ul>
|
|
407
|
+
<li><a class="reference internal" href="#authors" id="toc-entry-10">Authors</a></li>
|
|
408
|
+
<li><a class="reference internal" href="#contributors" id="toc-entry-11">Contributors</a></li>
|
|
409
|
+
<li><a class="reference internal" href="#maintainers" id="toc-entry-12">Maintainers</a></li>
|
|
409
410
|
</ul>
|
|
410
411
|
</li>
|
|
411
412
|
</ul>
|
|
@@ -456,23 +457,31 @@ change these in <em>Settings > Printing > Reports</em> in
|
|
|
456
457
|
<p>When no tray is configured for a report and a user, the
|
|
457
458
|
default tray setup on the CUPS server is used.</p>
|
|
458
459
|
</div>
|
|
460
|
+
<div class="section" id="known-issues-roadmap">
|
|
461
|
+
<h1><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h1>
|
|
462
|
+
<ul class="simple">
|
|
463
|
+
<li>With threaded printing there’s no download fallback when the issue isn’t detected by
|
|
464
|
+
the CUPS Odoo backend. To able to do it, we would need to notify the bus or use
|
|
465
|
+
web_notify for it.</li>
|
|
466
|
+
</ul>
|
|
467
|
+
</div>
|
|
459
468
|
<div class="section" id="changelog">
|
|
460
|
-
<h1><a class="toc-backref" href="#toc-entry-
|
|
469
|
+
<h1><a class="toc-backref" href="#toc-entry-5">Changelog</a></h1>
|
|
461
470
|
<div class="section" id="section-1">
|
|
462
|
-
<h2><a class="toc-backref" href="#toc-entry-
|
|
471
|
+
<h2><a class="toc-backref" href="#toc-entry-6">13.0.1.0.0 (2019-09-30)</a></h2>
|
|
463
472
|
<ul class="simple">
|
|
464
473
|
<li>[RELEASE] Port from V12.</li>
|
|
465
474
|
</ul>
|
|
466
475
|
</div>
|
|
467
476
|
<div class="section" id="section-2">
|
|
468
|
-
<h2><a class="toc-backref" href="#toc-entry-
|
|
477
|
+
<h2><a class="toc-backref" href="#toc-entry-7">12.0.1.0.0 (2018-02-04)</a></h2>
|
|
469
478
|
<ul class="simple">
|
|
470
479
|
<li>[RELEASE] Port from V11.</li>
|
|
471
480
|
</ul>
|
|
472
481
|
</div>
|
|
473
482
|
</div>
|
|
474
483
|
<div class="section" id="bug-tracker">
|
|
475
|
-
<h1><a class="toc-backref" href="#toc-entry-
|
|
484
|
+
<h1><a class="toc-backref" href="#toc-entry-8">Bug Tracker</a></h1>
|
|
476
485
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/report-print-send/issues">GitHub Issues</a>.
|
|
477
486
|
In case of trouble, please check there if your issue has already been reported.
|
|
478
487
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -480,9 +489,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
480
489
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
481
490
|
</div>
|
|
482
491
|
<div class="section" id="credits">
|
|
483
|
-
<h1><a class="toc-backref" href="#toc-entry-
|
|
492
|
+
<h1><a class="toc-backref" href="#toc-entry-9">Credits</a></h1>
|
|
484
493
|
<div class="section" id="authors">
|
|
485
|
-
<h2><a class="toc-backref" href="#toc-entry-
|
|
494
|
+
<h2><a class="toc-backref" href="#toc-entry-10">Authors</a></h2>
|
|
486
495
|
<ul class="simple">
|
|
487
496
|
<li>Agile Business Group & Domsense</li>
|
|
488
497
|
<li>Pegueroles SCP</li>
|
|
@@ -493,7 +502,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
493
502
|
</ul>
|
|
494
503
|
</div>
|
|
495
504
|
<div class="section" id="contributors">
|
|
496
|
-
<h2><a class="toc-backref" href="#toc-entry-
|
|
505
|
+
<h2><a class="toc-backref" href="#toc-entry-11">Contributors</a></h2>
|
|
497
506
|
<ul class="simple">
|
|
498
507
|
<li>Ferran Pegueroles <<a class="reference external" href="mailto:ferran@pegueroles.com">ferran@pegueroles.com</a>></li>
|
|
499
508
|
<li>Albert Cervera i Areny <<a class="reference external" href="mailto:albert@nan-tic.com">albert@nan-tic.com</a>></li>
|
|
@@ -518,7 +527,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
518
527
|
</ul>
|
|
519
528
|
</div>
|
|
520
529
|
<div class="section" id="maintainers">
|
|
521
|
-
<h2><a class="toc-backref" href="#toc-entry-
|
|
530
|
+
<h2><a class="toc-backref" href="#toc-entry-12">Maintainers</a></h2>
|
|
522
531
|
<p>This module is maintained by the OCA.</p>
|
|
523
532
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
524
533
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/** @odoo-module */
|
|
2
|
+
import {Markup} from "web.utils";
|
|
2
3
|
import {registry} from "@web/core/registry";
|
|
3
4
|
|
|
4
5
|
async function cupsReportActionHandler(action, options, env) {
|
|
@@ -8,13 +9,12 @@ async function cupsReportActionHandler(action, options, env) {
|
|
|
8
9
|
const print_action = await orm.call(
|
|
9
10
|
"ir.actions.report",
|
|
10
11
|
"print_action_for_report_name",
|
|
11
|
-
[action.report_name]
|
|
12
|
+
[action.report_name],
|
|
13
|
+
{context: {force_print_to_client: action.context.force_print_to_client}}
|
|
12
14
|
);
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
!print_action.printer_exception
|
|
17
|
-
) {
|
|
15
|
+
var printer_exception = print_action.printer_exception;
|
|
16
|
+
if (print_action && print_action.action === "server" && !printer_exception) {
|
|
17
|
+
// The Odoo CUPS backend is ok. We try to print into the printer
|
|
18
18
|
const result = await orm.call(
|
|
19
19
|
"ir.actions.report",
|
|
20
20
|
"print_document_client_action",
|
|
@@ -24,20 +24,58 @@ async function cupsReportActionHandler(action, options, env) {
|
|
|
24
24
|
env.services.notification.add(env._t("Successfully sent to printer!"), {
|
|
25
25
|
type: "success",
|
|
26
26
|
});
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
});
|
|
27
|
+
return true;
|
|
28
|
+
// In case of exception during the job, we won't get any response. So we
|
|
29
|
+
// should flag the exception and notify the user
|
|
31
30
|
}
|
|
32
|
-
|
|
31
|
+
env.services.notification.add(env._t("Could not sent to printer!"), {
|
|
32
|
+
type: "danger",
|
|
33
|
+
});
|
|
34
|
+
printer_exception = true;
|
|
33
35
|
}
|
|
34
|
-
if (print_action.printer_exception) {
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
if (print_action && print_action.action === "server" && printer_exception) {
|
|
37
|
+
// Just so the translation engine detects them as it doesn't do it inside
|
|
38
|
+
// template strings
|
|
39
|
+
const terms = {
|
|
40
|
+
the_report: env._t("The report"),
|
|
41
|
+
couldnt_be_printed: env._t(
|
|
42
|
+
"couldn't be printed. Click on the button below to download it"
|
|
43
|
+
),
|
|
44
|
+
issue_on: env._t("Issue on"),
|
|
45
|
+
};
|
|
46
|
+
const notificationRemove = env.services.notification.add(
|
|
47
|
+
Markup(
|
|
48
|
+
`<p>${terms.the_report} <strong>${action.name}</strong> ${terms.couldnt_be_printed}</p>`
|
|
49
|
+
),
|
|
37
50
|
{
|
|
51
|
+
title: `${terms.issue_on} ${print_action.printer_name}`,
|
|
38
52
|
type: "warning",
|
|
53
|
+
sticky: true,
|
|
54
|
+
messageIsHtml: true,
|
|
55
|
+
buttons: [
|
|
56
|
+
{
|
|
57
|
+
name: env._t("Print"),
|
|
58
|
+
primary: true,
|
|
59
|
+
icon: "fa-print",
|
|
60
|
+
onClick: async () => {
|
|
61
|
+
const context = {
|
|
62
|
+
force_print_to_client: true,
|
|
63
|
+
must_skip_send_to_printer: true,
|
|
64
|
+
};
|
|
65
|
+
env.services.user.updateContext(context);
|
|
66
|
+
await env.services.action.doAction(
|
|
67
|
+
{type: "ir.actions.report", ...action},
|
|
68
|
+
{
|
|
69
|
+
additionalContext: context,
|
|
70
|
+
}
|
|
71
|
+
);
|
|
72
|
+
notificationRemove();
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
],
|
|
39
76
|
}
|
|
40
77
|
);
|
|
78
|
+
return true;
|
|
41
79
|
}
|
|
42
80
|
}
|
|
43
81
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-base_report_to_printer
|
|
3
|
-
Version: 15.0.1.2.
|
|
3
|
+
Version: 15.0.1.2.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
|
|
@@ -23,7 +23,7 @@ Report to printer
|
|
|
23
23
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
24
|
!! changes will be overwritten. !!
|
|
25
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
26
|
+
!! source digest: sha256:d01e7484148b791ad16131189bac95c50224b19a7bff27f4720ab76fa22d1efd
|
|
27
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
28
|
|
|
29
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -122,6 +122,13 @@ Guidelines for use:
|
|
|
122
122
|
When no tray is configured for a report and a user, the
|
|
123
123
|
default tray setup on the CUPS server is used.
|
|
124
124
|
|
|
125
|
+
Known issues / Roadmap
|
|
126
|
+
======================
|
|
127
|
+
|
|
128
|
+
- With threaded printing there's no download fallback when the issue isn't detected by
|
|
129
|
+
the CUPS Odoo backend. To able to do it, we would need to notify the bus or use
|
|
130
|
+
web_notify for it.
|
|
131
|
+
|
|
125
132
|
Changelog
|
|
126
133
|
=========
|
|
127
134
|
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
odoo/addons/base_report_to_printer/README.rst,sha256=
|
|
1
|
+
odoo/addons/base_report_to_printer/README.rst,sha256=EehFgVzF2VdbjYmVXdtdTi2CiitymkkV-ZYi91VcYBk,6389
|
|
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=7QY5iRMRiMiwm-v3e89UeHg7h0Hjy7d--O1s999J_uE,1478
|
|
4
4
|
odoo/addons/base_report_to_printer/data/printing_data.xml,sha256=_D1pBsEJ8oQ2JvO0lFKaAM7yypZloLcyOaG9OFYVyIM,1476
|
|
5
|
-
odoo/addons/base_report_to_printer/i18n/am.po,sha256=
|
|
6
|
-
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=
|
|
7
|
-
odoo/addons/base_report_to_printer/i18n/bg.po,sha256=
|
|
8
|
-
odoo/addons/base_report_to_printer/i18n/ca.po,sha256=
|
|
9
|
-
odoo/addons/base_report_to_printer/i18n/de.po,sha256=
|
|
10
|
-
odoo/addons/base_report_to_printer/i18n/el_GR.po,sha256=
|
|
11
|
-
odoo/addons/base_report_to_printer/i18n/es.po,sha256=
|
|
12
|
-
odoo/addons/base_report_to_printer/i18n/es_AR.po,sha256=
|
|
13
|
-
odoo/addons/base_report_to_printer/i18n/es_ES.po,sha256=
|
|
14
|
-
odoo/addons/base_report_to_printer/i18n/fi.po,sha256=
|
|
15
|
-
odoo/addons/base_report_to_printer/i18n/fr.po,sha256=
|
|
16
|
-
odoo/addons/base_report_to_printer/i18n/gl.po,sha256=
|
|
17
|
-
odoo/addons/base_report_to_printer/i18n/hr.po,sha256=
|
|
18
|
-
odoo/addons/base_report_to_printer/i18n/hr_HR.po,sha256=
|
|
19
|
-
odoo/addons/base_report_to_printer/i18n/it.po,sha256=
|
|
20
|
-
odoo/addons/base_report_to_printer/i18n/nl.po,sha256
|
|
21
|
-
odoo/addons/base_report_to_printer/i18n/nl_NL.po,sha256=
|
|
22
|
-
odoo/addons/base_report_to_printer/i18n/pt.po,sha256=
|
|
23
|
-
odoo/addons/base_report_to_printer/i18n/pt_BR.po,sha256=
|
|
24
|
-
odoo/addons/base_report_to_printer/i18n/pt_PT.po,sha256=
|
|
25
|
-
odoo/addons/base_report_to_printer/i18n/sl.po,sha256=
|
|
26
|
-
odoo/addons/base_report_to_printer/i18n/sv.po,sha256
|
|
27
|
-
odoo/addons/base_report_to_printer/i18n/tr.po,sha256
|
|
28
|
-
odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=
|
|
5
|
+
odoo/addons/base_report_to_printer/i18n/am.po,sha256=icdbwTl4m9h5TlblvcEenS8E2VkaggbpC4FpFBJmMg8,39333
|
|
6
|
+
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=rdX_0h45gqoCv0GBX1mlj3YYwB0yoS15rrZpskW8sbA,38963
|
|
7
|
+
odoo/addons/base_report_to_printer/i18n/bg.po,sha256=9KCGcvNdXbzhpm3ouf3hQGq-WnpyWAtvNr9ppCm0nQU,39432
|
|
8
|
+
odoo/addons/base_report_to_printer/i18n/ca.po,sha256=XEmMJoF4pR1s-fooxdgjlFQ82oEcN-DOB4Z1icU-f84,39332
|
|
9
|
+
odoo/addons/base_report_to_printer/i18n/de.po,sha256=NoV6ytYK8Mc2t6fmtA3hkJ4D1laKE4Mi3OlJs7XqxMg,42955
|
|
10
|
+
odoo/addons/base_report_to_printer/i18n/el_GR.po,sha256=CHPBIzAourxcLGbxPcYd34E_s53eih2pvvTfNNRND7o,39451
|
|
11
|
+
odoo/addons/base_report_to_printer/i18n/es.po,sha256=shMW_TQiEm3z5DhgxRnxA8rAbcollxsHICgA_7eRuGQ,43655
|
|
12
|
+
odoo/addons/base_report_to_printer/i18n/es_AR.po,sha256=i0ZkUFbo6s2KOVJjG03ip5wObR7TR55fvaskX0ZjDrA,43121
|
|
13
|
+
odoo/addons/base_report_to_printer/i18n/es_ES.po,sha256=YU0stfKss_6omg4VIcW5_r3DNAzFr-clTUTk1DiEIrs,39351
|
|
14
|
+
odoo/addons/base_report_to_printer/i18n/fi.po,sha256=RRmskK23l-303GU1DufnI_RKKBpl6P_LDjP5stHFlDU,39338
|
|
15
|
+
odoo/addons/base_report_to_printer/i18n/fr.po,sha256=9O-mK4eWBYQY_RkEZCDNnGbxn7dMab7tGw3OJerPDFU,40662
|
|
16
|
+
odoo/addons/base_report_to_printer/i18n/gl.po,sha256=depe5T_NM0G1utiU5QSiOMi0_nzcDEmlhFdMVUM_KY0,39335
|
|
17
|
+
odoo/addons/base_report_to_printer/i18n/hr.po,sha256=uE2UfJZBiVwsRGGaO-iyFiumyVqQvP2DFfEjT5SKGWE,41891
|
|
18
|
+
odoo/addons/base_report_to_printer/i18n/hr_HR.po,sha256=Y__s3-qhTnYJgCtmwsvAuOnDDEYNoNoIWfNQMBI5Koo,39431
|
|
19
|
+
odoo/addons/base_report_to_printer/i18n/it.po,sha256=350YySRdsA4cszZgZGlWbnQO8Al-Jv-xs-rsV0EA7BM,39946
|
|
20
|
+
odoo/addons/base_report_to_printer/i18n/nl.po,sha256=83V7M2dGB8OH_7hmtgI2pmRgVPpXpr3gIF8xrnXRxqw,39297
|
|
21
|
+
odoo/addons/base_report_to_printer/i18n/nl_NL.po,sha256=l4oT80FfDsIMyCrnAzMRyhvSuj0CGD9SWQKMkqMk3I4,39908
|
|
22
|
+
odoo/addons/base_report_to_printer/i18n/pt.po,sha256=xOXrD9HUOf2qtLegS9yIym0Gfb8uVM6yof6MmTaZNA8,39347
|
|
23
|
+
odoo/addons/base_report_to_printer/i18n/pt_BR.po,sha256=lk3a7_7-GqwU7_CluRdhkMyasLcsJWfxC58I5C33M0E,39406
|
|
24
|
+
odoo/addons/base_report_to_printer/i18n/pt_PT.po,sha256=bD8_4ux6wqw2YX9XsT7Ef9HXbTSB1j5Lq82ThBZO-F0,39367
|
|
25
|
+
odoo/addons/base_report_to_printer/i18n/sl.po,sha256=Xly5ha_jYDLpcGF9ymUQDyLfGzeMje6gJh4ZHH5669A,39434
|
|
26
|
+
odoo/addons/base_report_to_printer/i18n/sv.po,sha256=og8b8gaCtGCFuKLoO0MsizeB-MTWCTjBRxnykzvA4-A,42589
|
|
27
|
+
odoo/addons/base_report_to_printer/i18n/tr.po,sha256=YGb7L7y5pgIpYcgcmciofD0rGkaBWy8iq_z1rB5njkg,39316
|
|
28
|
+
odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=yQL7xBzTcNhBCgqce1O3ApUUpInJ6MqJ5gFnwGtG8f8,39328
|
|
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=h5iQG_nbXUgzi_nx4E8giDBlRjvA5afpJCsKtPNwNSY,9245
|
|
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=HR4xit5ieC6pxxYfXFx2Km2eJIdGg-VZ_FDmKs54nAI,8840
|
|
@@ -40,12 +40,13 @@ odoo/addons/base_report_to_printer/readme/CONTRIBUTORS.rst,sha256=PLRVqJh9yMBe9V
|
|
|
40
40
|
odoo/addons/base_report_to_printer/readme/DESCRIPTION.rst,sha256=r9bWH-rEGsBaJM0owPnSZwPLCaji7FSopDvM9_Hf63Y,767
|
|
41
41
|
odoo/addons/base_report_to_printer/readme/HISTORY.rst,sha256=ABtERQPm9HZB_R6jXIUgVKFWsAsN-DcRr96SX9foXZ4,153
|
|
42
42
|
odoo/addons/base_report_to_printer/readme/INSTALL.rst,sha256=t2YpmitUkax9UiKn1geUUjPCNvf-uMR3oiyYdBWOXpg,246
|
|
43
|
+
odoo/addons/base_report_to_printer/readme/ROADMAP.rst,sha256=mR5-Z4p6Mr9qB24NLMpbiiNP-SsQmHjdffeWgQOJ_Zo,190
|
|
43
44
|
odoo/addons/base_report_to_printer/readme/USAGE.rst,sha256=__mLAaeK28z7E4PnK7L038QJFltllISiWXO_gT6JhK0,593
|
|
44
45
|
odoo/addons/base_report_to_printer/security/ir.model.access.csv,sha256=tIjk4kiES-JnJ_vgM7QrBSkuldIfvqUH5mZAKYPnY08,194
|
|
45
46
|
odoo/addons/base_report_to_printer/security/security.xml,sha256=O00e1bSgh_Wla57UQRbRSGRKdVip4WWi8NT1dIk7j0o,7438
|
|
46
47
|
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=
|
|
48
|
+
odoo/addons/base_report_to_printer/static/description/index.html,sha256=PVjswPZzAxbvfvAvg-_74-ER1g9hkoGiWIT8ocW2aoo,19313
|
|
49
|
+
odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=Wp1cRqIdRqYVaZE4hzPt5Ts04v8MU8MPHmahsyIHbdU,3596
|
|
49
50
|
odoo/addons/base_report_to_printer/tests/__init__.py,sha256=tpUyFuG96289zrpY1fTMi-moLC2KFq_93_NjuDCw1Rg,458
|
|
50
51
|
odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py,sha256=IoFRIJLCy2NIA_op7TvD5V6DBy9aj_cCYlWEasVyxjI,12086
|
|
51
52
|
odoo/addons/base_report_to_printer/tests/test_printing_job.py,sha256=z7LZ9eJeloIE9jHCH1x-trsU6ZzWIjKyo7xiohL_jQY,2129
|
|
@@ -68,7 +69,7 @@ odoo/addons/base_report_to_printer/wizards/print_attachment_report.py,sha256=fhS
|
|
|
68
69
|
odoo/addons/base_report_to_printer/wizards/print_attachment_report.xml,sha256=nniCofH1YSOj_HeD4zTV1ilGTjhjCgdZUqK9lfBz2K4,2214
|
|
69
70
|
odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard.py,sha256=l58Nk3BAVydb9Yi_fbh7FIpA-UDyTnvK7xIYvEr742c,895
|
|
70
71
|
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.2.
|
|
72
|
-
odoo_addon_base_report_to_printer-15.0.1.2.
|
|
73
|
-
odoo_addon_base_report_to_printer-15.0.1.2.
|
|
74
|
-
odoo_addon_base_report_to_printer-15.0.1.2.
|
|
72
|
+
odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info/METADATA,sha256=yMS8IJs3tR_0ioVBVHpKXkIK0RpyUQRZjg23Ivg3TH0,7023
|
|
73
|
+
odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
74
|
+
odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
75
|
+
odoo_addon_base_report_to_printer-15.0.1.2.1.2.dist-info/RECORD,,
|
|
File without changes
|