odoo-addon-base-report-to-printer 16.0.1.2.0.4__py3-none-any.whl → 16.0.1.3.0__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 +6 -2
- odoo/addons/base_report_to_printer/__manifest__.py +1 -1
- odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot +5 -0
- odoo/addons/base_report_to_printer/i18n/tr.po +1 -1
- odoo/addons/base_report_to_printer/models/printing_server.py +3 -0
- odoo/addons/base_report_to_printer/security/security.xml +21 -0
- odoo/addons/base_report_to_printer/static/description/index.html +23 -17
- odoo/addons/base_report_to_printer/views/printing_server.xml +11 -2
- {odoo_addon_base_report_to_printer-16.0.1.2.0.4.dist-info → odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info}/METADATA +7 -3
- {odoo_addon_base_report_to_printer-16.0.1.2.0.4.dist-info → odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info}/RECORD +12 -12
- {odoo_addon_base_report_to_printer-16.0.1.2.0.4.dist-info → odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info}/WHEEL +0 -0
- {odoo_addon_base_report_to_printer-16.0.1.2.0.4.dist-info → odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
=================
|
|
2
6
|
Report to printer
|
|
3
7
|
=================
|
|
@@ -7,13 +11,13 @@ Report to printer
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:78ff69d2114c8cf19cad3154f39200106b2a78baac1b30418ef8437505d0fcd7
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freport--print--send-lightgray.png?logo=github
|
|
@@ -132,6 +132,11 @@ msgstr ""
|
|
|
132
132
|
msgid "Cancelled, but printing already processed pages"
|
|
133
133
|
msgstr ""
|
|
134
134
|
|
|
135
|
+
#. module: base_report_to_printer
|
|
136
|
+
#: model:ir.model.fields,field_description:base_report_to_printer.field_printing_server__company_ids
|
|
137
|
+
msgid "Company"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
135
140
|
#. module: base_report_to_printer
|
|
136
141
|
#: model:ir.model.fields.selection,name:base_report_to_printer.selection__printing_job__job_state__completed
|
|
137
142
|
msgid "Completed"
|
|
@@ -985,4 +985,4 @@ msgstr "yazdırılamadı. İndirmek için aşağıdaki butona tıklayın"
|
|
|
985
985
|
#: code:addons/base_report_to_printer/wizards/print_attachment_report.py:0
|
|
986
986
|
#, python-format
|
|
987
987
|
msgid "{name} ({copies} copies)"
|
|
988
|
-
msgstr "{
|
|
988
|
+
msgstr "{name} ({copies} kopyalar)"
|
|
@@ -43,6 +43,9 @@ class PrintingServer(models.Model):
|
|
|
43
43
|
help="List of printers available on this server.",
|
|
44
44
|
)
|
|
45
45
|
multi_thread = fields.Boolean()
|
|
46
|
+
company_ids = fields.Many2many(
|
|
47
|
+
comodel_name="res.company",
|
|
48
|
+
)
|
|
46
49
|
|
|
47
50
|
def _open_connection(self, raise_on_error=False):
|
|
48
51
|
self.ensure_one()
|
|
@@ -148,4 +148,25 @@
|
|
|
148
148
|
<field eval="1" name="perm_write" />
|
|
149
149
|
<field eval="1" name="perm_create" />
|
|
150
150
|
</record>
|
|
151
|
+
<record id="printing_server_company_rule" model="ir.rule">
|
|
152
|
+
<field name="name">Printing Server multi-company</field>
|
|
153
|
+
<field name="model_id" ref="model_printing_server" />
|
|
154
|
+
<field name="domain_force">
|
|
155
|
+
["|", ("company_ids", "=", False), ("company_ids", "in", company_ids)]
|
|
156
|
+
</field>
|
|
157
|
+
</record>
|
|
158
|
+
<record id="printer_company_rule" model="ir.rule">
|
|
159
|
+
<field name="name">Printer multi-company</field>
|
|
160
|
+
<field name="model_id" ref="model_printing_printer" />
|
|
161
|
+
<field name="domain_force">
|
|
162
|
+
["|", ("server_id.company_ids", "=", False), ("server_id.company_ids", "in", company_ids)]
|
|
163
|
+
</field>
|
|
164
|
+
</record>
|
|
165
|
+
<record id="printing_job_company_rule" model="ir.rule">
|
|
166
|
+
<field name="name">Printing Job multi-company</field>
|
|
167
|
+
<field name="model_id" ref="model_printing_job" />
|
|
168
|
+
<field name="domain_force">
|
|
169
|
+
["|", ("server_id.company_ids", "=", False), ("server_id.company_ids", "in", company_ids)]
|
|
170
|
+
</field>
|
|
171
|
+
</record>
|
|
151
172
|
</odoo>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Report to printer</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="report-to-printer">
|
|
370
|
+
<h1>Report to printer</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:78ff69d2114c8cf19cad3154f39200106b2a78baac1b30418ef8437505d0fcd7
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
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/
|
|
377
|
+
<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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/report-print-send/tree/16.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-16-0/report-print-send-16-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=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module allows users to send reports to a printer attached to the server.</p>
|
|
374
379
|
<p>It adds an optional behaviour on reports to send it directly to a printer.</p>
|
|
375
380
|
<ul class="simple">
|
|
@@ -412,7 +417,7 @@ preprinted paper such as payment slip.</p>
|
|
|
412
417
|
</ul>
|
|
413
418
|
</div>
|
|
414
419
|
<div class="section" id="installation">
|
|
415
|
-
<
|
|
420
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Installation</a></h2>
|
|
416
421
|
<p>To install this module, you need to:</p>
|
|
417
422
|
<ol class="arabic simple">
|
|
418
423
|
<li>Install PyCups - <a class="reference external" href="https://pypi.python.org/pypi/pycups">https://pypi.python.org/pypi/pycups</a></li>
|
|
@@ -425,7 +430,7 @@ sudo<span class="w"> </span>apt-get<span class="w"> </span>install<span class="w
|
|
|
425
430
|
</pre>
|
|
426
431
|
</div>
|
|
427
432
|
<div class="section" id="configuration">
|
|
428
|
-
<
|
|
433
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Configuration</a></h2>
|
|
429
434
|
<p>To configure this module, you need to:</p>
|
|
430
435
|
<ol class="arabic simple">
|
|
431
436
|
<li>Enable the “Printing / Print User” option under access
|
|
@@ -440,7 +445,7 @@ directive to “none” (or some other list of values which does not include
|
|
|
440
445
|
<https://www.cups.org/doc/man-cupsd.conf.html></cite> for details.</p>
|
|
441
446
|
</div>
|
|
442
447
|
<div class="section" id="usage">
|
|
443
|
-
<
|
|
448
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Usage</a></h2>
|
|
444
449
|
<p>Guidelines for use:</p>
|
|
445
450
|
<blockquote>
|
|
446
451
|
<ul class="simple">
|
|
@@ -458,7 +463,7 @@ change these in <em>Settings > Printing > Reports</em> in
|
|
|
458
463
|
default tray setup on the CUPS server is used.</p>
|
|
459
464
|
</div>
|
|
460
465
|
<div class="section" id="known-issues-roadmap">
|
|
461
|
-
<
|
|
466
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h2>
|
|
462
467
|
<ul class="simple">
|
|
463
468
|
<li>With threaded printing there’s no download fallback when the issue isn’t detected by
|
|
464
469
|
the CUPS Odoo backend. To able to do it, we would need to notify the bus or use
|
|
@@ -466,22 +471,22 @@ web_notify for it.</li>
|
|
|
466
471
|
</ul>
|
|
467
472
|
</div>
|
|
468
473
|
<div class="section" id="changelog">
|
|
469
|
-
<
|
|
474
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Changelog</a></h2>
|
|
470
475
|
<div class="section" id="section-1">
|
|
471
|
-
<
|
|
476
|
+
<h3><a class="toc-backref" href="#toc-entry-6">13.0.1.0.0 (2019-09-30)</a></h3>
|
|
472
477
|
<ul class="simple">
|
|
473
478
|
<li>[RELEASE] Port from V12.</li>
|
|
474
479
|
</ul>
|
|
475
480
|
</div>
|
|
476
481
|
<div class="section" id="section-2">
|
|
477
|
-
<
|
|
482
|
+
<h3><a class="toc-backref" href="#toc-entry-7">12.0.1.0.0 (2018-02-04)</a></h3>
|
|
478
483
|
<ul class="simple">
|
|
479
484
|
<li>[RELEASE] Port from V11.</li>
|
|
480
485
|
</ul>
|
|
481
486
|
</div>
|
|
482
487
|
</div>
|
|
483
488
|
<div class="section" id="bug-tracker">
|
|
484
|
-
<
|
|
489
|
+
<h2><a class="toc-backref" href="#toc-entry-8">Bug Tracker</a></h2>
|
|
485
490
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/report-print-send/issues">GitHub Issues</a>.
|
|
486
491
|
In case of trouble, please check there if your issue has already been reported.
|
|
487
492
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -489,9 +494,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
489
494
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
490
495
|
</div>
|
|
491
496
|
<div class="section" id="credits">
|
|
492
|
-
<
|
|
497
|
+
<h2><a class="toc-backref" href="#toc-entry-9">Credits</a></h2>
|
|
493
498
|
<div class="section" id="authors">
|
|
494
|
-
<
|
|
499
|
+
<h3><a class="toc-backref" href="#toc-entry-10">Authors</a></h3>
|
|
495
500
|
<ul class="simple">
|
|
496
501
|
<li>Agile Business Group & Domsense</li>
|
|
497
502
|
<li>Pegueroles SCP</li>
|
|
@@ -502,7 +507,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
502
507
|
</ul>
|
|
503
508
|
</div>
|
|
504
509
|
<div class="section" id="contributors">
|
|
505
|
-
<
|
|
510
|
+
<h3><a class="toc-backref" href="#toc-entry-11">Contributors</a></h3>
|
|
506
511
|
<ul class="simple">
|
|
507
512
|
<li>Ferran Pegueroles <<a class="reference external" href="mailto:ferran@pegueroles.com">ferran@pegueroles.com</a>></li>
|
|
508
513
|
<li>Albert Cervera i Areny <<a class="reference external" href="mailto:albert@nan-tic.com">albert@nan-tic.com</a>></li>
|
|
@@ -529,7 +534,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
529
534
|
</ul>
|
|
530
535
|
</div>
|
|
531
536
|
<div class="section" id="maintainers">
|
|
532
|
-
<
|
|
537
|
+
<h3><a class="toc-backref" href="#toc-entry-12">Maintainers</a></h3>
|
|
533
538
|
<p>This module is maintained by the OCA.</p>
|
|
534
539
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
535
540
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -542,5 +547,6 @@ promote its widespread use.</p>
|
|
|
542
547
|
</div>
|
|
543
548
|
</div>
|
|
544
549
|
</div>
|
|
550
|
+
</div>
|
|
545
551
|
</body>
|
|
546
552
|
</html>
|
|
@@ -24,8 +24,17 @@
|
|
|
24
24
|
</h1>
|
|
25
25
|
</div>
|
|
26
26
|
<group>
|
|
27
|
-
<
|
|
28
|
-
|
|
27
|
+
<group>
|
|
28
|
+
<field name="address" />
|
|
29
|
+
<field name="port" />
|
|
30
|
+
</group>
|
|
31
|
+
<group>
|
|
32
|
+
<field
|
|
33
|
+
name="company_ids"
|
|
34
|
+
widget="many2many_tags"
|
|
35
|
+
groups="base.group_multi_company"
|
|
36
|
+
/>
|
|
37
|
+
</group>
|
|
29
38
|
</group>
|
|
30
39
|
<group>
|
|
31
40
|
<field name="user" />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-base_report_to_printer
|
|
3
|
-
Version: 16.0.1.
|
|
3
|
+
Version: 16.0.1.3.0
|
|
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
|
|
@@ -14,6 +14,10 @@ Requires-Python: >=3.10
|
|
|
14
14
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
15
15
|
Requires-Dist: pycups
|
|
16
16
|
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
19
|
+
:alt: Odoo Community Association
|
|
20
|
+
|
|
17
21
|
=================
|
|
18
22
|
Report to printer
|
|
19
23
|
=================
|
|
@@ -23,13 +27,13 @@ Report to printer
|
|
|
23
27
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
28
|
!! changes will be overwritten. !!
|
|
25
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
30
|
+
!! source digest: sha256:78ff69d2114c8cf19cad3154f39200106b2a78baac1b30418ef8437505d0fcd7
|
|
27
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
32
|
|
|
29
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
30
34
|
:target: https://odoo-community.org/page/development-status
|
|
31
35
|
:alt: Beta
|
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
33
37
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
34
38
|
:alt: License: AGPL-3
|
|
35
39
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freport--print--send-lightgray.png?logo=github
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
odoo/addons/base_report_to_printer/README.rst,sha256=
|
|
1
|
+
odoo/addons/base_report_to_printer/README.rst,sha256=5lwDyxYxZGk-Z5gUt0MYKUE2FswiZDicO7RIKshrfNI,6640
|
|
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=81YmeaIlw-e2r8SWFPvoy6akgN5GYRrTCUV12Istlsk,1478
|
|
4
4
|
odoo/addons/base_report_to_printer/data/neutralize.sql,sha256=ED9Je55ll3LB7G6W2Wjm9daqurleECxpmLe68DjCoWc,83
|
|
5
5
|
odoo/addons/base_report_to_printer/data/printing_data.xml,sha256=_D1pBsEJ8oQ2JvO0lFKaAM7yypZloLcyOaG9OFYVyIM,1476
|
|
6
6
|
odoo/addons/base_report_to_printer/i18n/am.po,sha256=gmTJ7ZRgRbbPeJwGlQMnypIJ5iSK2tY2OthCR3OH9wQ,39295
|
|
7
|
-
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=
|
|
7
|
+
odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=SXFel1IE_k0f7UYaVKAGQS649kZLxwFT5nvrhQd5yfQ,39087
|
|
8
8
|
odoo/addons/base_report_to_printer/i18n/bg.po,sha256=qPZxx6JghZ4-D6WQ009VRRDycwkrD2sSNVENN0Loia0,39394
|
|
9
9
|
odoo/addons/base_report_to_printer/i18n/ca.po,sha256=u8Uz51OlgfwmRBtMO0WmQvnTM6yPK2z0xRB4v50oo6o,39294
|
|
10
10
|
odoo/addons/base_report_to_printer/i18n/de.po,sha256=M65jsFQYOBW0vCtveOgJUys38oEgF3lbXYR4VyCQnIs,43209
|
|
@@ -25,7 +25,7 @@ odoo/addons/base_report_to_printer/i18n/pt_BR.po,sha256=TohLfKEDRuVIP0u6IO1ZQTF3
|
|
|
25
25
|
odoo/addons/base_report_to_printer/i18n/pt_PT.po,sha256=uniF9lidDJAwGtHJrIWXHRT950xLF3XFLZht74Cw8rw,39329
|
|
26
26
|
odoo/addons/base_report_to_printer/i18n/sl.po,sha256=hcGd3pjUFse4PEQ3guGES6KrPNWsyZKp_tHqfJHcDMg,39427
|
|
27
27
|
odoo/addons/base_report_to_printer/i18n/sv.po,sha256=gaD8xmRCttrBw2NO4G5avdbnoEWLgJ4tdBqmVA2EYNE,42843
|
|
28
|
-
odoo/addons/base_report_to_printer/i18n/tr.po,sha256=
|
|
28
|
+
odoo/addons/base_report_to_printer/i18n/tr.po,sha256=aO0ITH7XlENcgrrVogydlxlYxLRPEwKHk20J0McVJbc,43513
|
|
29
29
|
odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=ZIiZZKWM9Knn92HPYyilD-MTVTcNYjfVwn-Q9fA5dqk,39290
|
|
30
30
|
odoo/addons/base_report_to_printer/models/__init__.py,sha256=y92zKlKN-X-KT04jwLi8XgUsY8HAbDiRvdPKDWCpvGo,243
|
|
31
31
|
odoo/addons/base_report_to_printer/models/ir_actions_report.py,sha256=qGzleQcyCB8PQXyatJvGYs3B2QikCPWQki2BRbt2B9k,9461
|
|
@@ -33,7 +33,7 @@ odoo/addons/base_report_to_printer/models/printing_action.py,sha256=5i1Vdd-59Rxf
|
|
|
33
33
|
odoo/addons/base_report_to_printer/models/printing_job.py,sha256=DBQSIqYhGVeqa2DgC_PWtoRAXbyLLvBKnNHn5G9XLWE,5029
|
|
34
34
|
odoo/addons/base_report_to_printer/models/printing_printer.py,sha256=hUm90szJSGu_1MBe6LXTFjyu_rxSJRHvD17XcGQWcHA,8981
|
|
35
35
|
odoo/addons/base_report_to_printer/models/printing_report_xml_action.py,sha256=tHNX9cceVYXl2hsnFavKE8mCnfGpfOgTjudjkIk9PZc,1631
|
|
36
|
-
odoo/addons/base_report_to_printer/models/printing_server.py,sha256=
|
|
36
|
+
odoo/addons/base_report_to_printer/models/printing_server.py,sha256=aqw1e4JAibQlAzjsd5jc7HOdHY5EIx64VW567sMoBSQ,10630
|
|
37
37
|
odoo/addons/base_report_to_printer/models/printing_tray.py,sha256=tmSwhwdwiJIIRefDOQnLUG1k0tqAj96Pvh6T3zeYgzM,566
|
|
38
38
|
odoo/addons/base_report_to_printer/models/res_users.py,sha256=2jbOTw8zX21GcmyyspEY_S78WV9JA26m2vwM09I2HkU,1614
|
|
39
39
|
odoo/addons/base_report_to_printer/readme/CONFIGURE.rst,sha256=4iv4TSqIPqNM7_g7H8vO2oUT8zuOaySZWvTdeYfLUSM,656
|
|
@@ -44,9 +44,9 @@ odoo/addons/base_report_to_printer/readme/INSTALL.rst,sha256=t2YpmitUkax9UiKn1ge
|
|
|
44
44
|
odoo/addons/base_report_to_printer/readme/ROADMAP.rst,sha256=mR5-Z4p6Mr9qB24NLMpbiiNP-SsQmHjdffeWgQOJ_Zo,190
|
|
45
45
|
odoo/addons/base_report_to_printer/readme/USAGE.rst,sha256=__mLAaeK28z7E4PnK7L038QJFltllISiWXO_gT6JhK0,593
|
|
46
46
|
odoo/addons/base_report_to_printer/security/ir.model.access.csv,sha256=tIjk4kiES-JnJ_vgM7QrBSkuldIfvqUH5mZAKYPnY08,194
|
|
47
|
-
odoo/addons/base_report_to_printer/security/security.xml,sha256=
|
|
47
|
+
odoo/addons/base_report_to_printer/security/security.xml,sha256=dfla373wWbU9ItIXd1-0SCTAXk3I22VshWXg-sVWpno,8517
|
|
48
48
|
odoo/addons/base_report_to_printer/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
49
|
-
odoo/addons/base_report_to_printer/static/description/index.html,sha256=
|
|
49
|
+
odoo/addons/base_report_to_printer/static/description/index.html,sha256=bV9Jo4wALiC61cDkf1DL6CGDRE425m-t6_jcQ-ta9qI,19791
|
|
50
50
|
odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=Wp1cRqIdRqYVaZE4hzPt5Ts04v8MU8MPHmahsyIHbdU,3596
|
|
51
51
|
odoo/addons/base_report_to_printer/tests/__init__.py,sha256=tpUyFuG96289zrpY1fTMi-moLC2KFq_93_NjuDCw1Rg,458
|
|
52
52
|
odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py,sha256=IoFRIJLCy2NIA_op7TvD5V6DBy9aj_cCYlWEasVyxjI,12086
|
|
@@ -63,14 +63,14 @@ odoo/addons/base_report_to_printer/views/ir_actions_report.xml,sha256=CP_pykwKIJ
|
|
|
63
63
|
odoo/addons/base_report_to_printer/views/printing_job.xml,sha256=L25kmiDDl5bS0nvrA0rdkC_1_2U2JgiAD-7z_zwSdoY,1852
|
|
64
64
|
odoo/addons/base_report_to_printer/views/printing_printer.xml,sha256=0pQ978HysX2aDU0uKTzOD63y4By4qDlYivzKje9f01Q,6011
|
|
65
65
|
odoo/addons/base_report_to_printer/views/printing_report.xml,sha256=ivzOzDhs2iM1CapXuWAlgbhQ6knebj2akp1AOicI_gU,1453
|
|
66
|
-
odoo/addons/base_report_to_printer/views/printing_server.xml,sha256=
|
|
66
|
+
odoo/addons/base_report_to_printer/views/printing_server.xml,sha256=cuOOOSewj7UwxRDdovc5paJM-q4ZN80_0f8aIM18OGQ,3318
|
|
67
67
|
odoo/addons/base_report_to_printer/views/res_users.xml,sha256=IIi8W930iAEp1jknTsZ5MxBP2qiRJE4DNMI6yME9G-c,1392
|
|
68
68
|
odoo/addons/base_report_to_printer/wizards/__init__.py,sha256=MvgzXHSqDX2nGpbYkjyXSuv1iHe2ECwuPaAJdz5zitc,83
|
|
69
69
|
odoo/addons/base_report_to_printer/wizards/print_attachment_report.py,sha256=VS7FZ4Gz6ZjsUrsNXHqx2YBmagGWq-FnJJ5Wl64uaFY,2478
|
|
70
70
|
odoo/addons/base_report_to_printer/wizards/print_attachment_report.xml,sha256=nniCofH1YSOj_HeD4zTV1ilGTjhjCgdZUqK9lfBz2K4,2214
|
|
71
71
|
odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard.py,sha256=l58Nk3BAVydb9Yi_fbh7FIpA-UDyTnvK7xIYvEr742c,895
|
|
72
72
|
odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard_view.xml,sha256=UbN9xjc12hI57ojjs84hPgQOfqPbuD_XThPyvyMxp-Y,1399
|
|
73
|
-
odoo_addon_base_report_to_printer-16.0.1.
|
|
74
|
-
odoo_addon_base_report_to_printer-16.0.1.
|
|
75
|
-
odoo_addon_base_report_to_printer-16.0.1.
|
|
76
|
-
odoo_addon_base_report_to_printer-16.0.1.
|
|
73
|
+
odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info/METADATA,sha256=ewc3FgRY3Gu9aYVPeqkZmWMymOEtDcvQozDIEsrLkE8,7273
|
|
74
|
+
odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
75
|
+
odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
76
|
+
odoo_addon_base_report_to_printer-16.0.1.3.0.dist-info/RECORD,,
|
|
File without changes
|