odoo-addon-base-report-to-printer 16.0.1.1.7__py3-none-any.whl → 16.0.1.1.8__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.

@@ -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:eee0b79c69c9fe1f8218f1635923fd10e6a4682391133575d1239a58d53e822e
10
+ !! source digest: sha256:9d9b0362fdecf578e230c992110f6a674fe46b63b185f38b5c180e2ea86c8cb5
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -7,7 +7,7 @@
7
7
 
8
8
  {
9
9
  "name": "Report to printer",
10
- "version": "16.0.1.1.7",
10
+ "version": "16.0.1.1.8",
11
11
  "category": "Generic Modules/Base",
12
12
  "author": "Agile Business Group & Domsense, Pegueroles SCP, NaN,"
13
13
  " LasLabs, Camptocamp, Odoo Community Association (OCA),"
@@ -836,6 +836,13 @@ msgstr ""
836
836
  msgid "The id of the job must be unique per server !"
837
837
  msgstr ""
838
838
 
839
+ #. module: base_report_to_printer
840
+ #. odoo-javascript
841
+ #: code:addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js:0
842
+ #, python-format
843
+ msgid "The printer couldn't be reached. Downloading document instead"
844
+ msgstr ""
845
+
839
846
  #. module: base_report_to_printer
840
847
  #: model:ir.model.fields,help:base_report_to_printer.field_ir_actions_report__printing_action_ids
841
848
  msgid "This field allows configuring action and printer on a per user basis"
@@ -9,7 +9,7 @@ msgstr ""
9
9
  "Project-Id-Version: Odoo Server 11.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2017-12-19 03:38+0000\n"
12
- "PO-Revision-Date: 2024-02-01 12:36+0000\n"
12
+ "PO-Revision-Date: 2024-05-23 09:38+0000\n"
13
13
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
14
14
  "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
15
15
  "Language: it\n"
@@ -737,7 +737,7 @@ msgstr "Motivo dell'attuale stato lavoro."
737
737
  #. module: base_report_to_printer
738
738
  #: model:ir.model.fields,field_description:base_report_to_printer.field_printing_report_xml_action__report_id
739
739
  msgid "Report"
740
- msgstr "Report"
740
+ msgstr "Resoconto"
741
741
 
742
742
  #. module: base_report_to_printer
743
743
  #: model:ir.model,name:base_report_to_printer.model_ir_actions_report
@@ -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 behaviour["action"] == "server" and printer and document:
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
 
@@ -8,10 +8,11 @@
8
8
 
9
9
  /*
10
10
  :Author: David Goodger (goodger@python.org)
11
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11
+ :Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
12
12
  :Copyright: This stylesheet has been placed in the public domain.
13
13
 
14
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
15
16
 
16
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
17
18
  customize this style sheet.
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
274
275
  margin-left: 2em ;
275
276
  margin-right: 2em }
276
277
 
277
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
278
279
  pre.code, code { background-color: #eeeeee }
279
280
  pre.code .comment, code .comment { color: #5C6576 }
280
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@ span.option {
300
301
  span.pre {
301
302
  white-space: pre }
302
303
 
303
- span.problematic {
304
+ span.problematic, pre.problematic {
304
305
  color: red }
305
306
 
306
307
  span.section-subtitle {
@@ -366,7 +367,7 @@ ul.auto-toc {
366
367
  !! This file is generated by oca-gen-addon-readme !!
367
368
  !! changes will be overwritten. !!
368
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:eee0b79c69c9fe1f8218f1635923fd10e6a4682391133575d1239a58d53e822e
370
+ !! source digest: sha256:9d9b0362fdecf578e230c992110f6a674fe46b63b185f38b5c180e2ea86c8cb5
370
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
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/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&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372
373
  <p>This module allows users to send reports to a printer attached to the server.</p>
@@ -516,7 +517,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
516
517
  <div class="section" id="maintainers">
517
518
  <h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2>
518
519
  <p>This module is maintained by the OCA.</p>
519
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
520
+ <a class="reference external image-reference" href="https://odoo-community.org">
521
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
522
+ </a>
520
523
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
521
524
  mission is to support the collaborative development of Odoo features and
522
525
  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 (print_action && print_action.action === "server") {
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 send to printer!"));
28
+ env.services.notification.add(env._t("Could not send 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.env["ir.actions.report"].search([], limit=1)
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.env["ir.actions.report"].search(
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.env["ir.actions.report"].search([], limit=1)
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.env["ir.actions.report"].new({"printer_tray_id": False})
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.env["ir.actions.report"].new({"printer_tray_id": tray.id})
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,18 +1,17 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-base-report-to-printer
3
- Version: 16.0.1.1.7
2
+ Name: odoo-addon-base_report_to_printer
3
+ Version: 16.0.1.1.8
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 :: 16.0
13
12
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
13
  Requires-Python: >=3.10
15
- Requires-Dist: odoo <16.1dev,>=16.0a
14
+ Requires-Dist: odoo<16.1dev,>=16.0a
16
15
  Requires-Dist: pycups
17
16
 
18
17
  =================
@@ -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:eee0b79c69c9fe1f8218f1635923fd10e6a4682391133575d1239a58d53e822e
26
+ !! source digest: sha256:9d9b0362fdecf578e230c992110f6a674fe46b63b185f38b5c180e2ea86c8cb5
28
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
28
 
30
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -196,5 +195,3 @@ promote its widespread use.
196
195
  This module is part of the `OCA/report-print-send <https://github.com/OCA/report-print-send/tree/16.0/base_report_to_printer>`_ project on GitHub.
197
196
 
198
197
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
199
-
200
-
@@ -1,10 +1,10 @@
1
- odoo/addons/base_report_to_printer/README.rst,sha256=enkDIiLC3J4xK-9k43_UU0gnqKg8kLFqQ_KX--3vJhM,6157
1
+ odoo/addons/base_report_to_printer/README.rst,sha256=n63cYWzhUhFWNf-NOf7SWj2p1K66rFthKIWQfX27lRc,6157
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=6FUQcK5FZHyTJdokp0WRxvBTr4cYw5-mcgGoSjDQTfA,1438
3
+ odoo/addons/base_report_to_printer/__manifest__.py,sha256=CEqAYGeeFt3vH0mxxvuDO3Ni_6lJAOo-XFt-ZgoECEc,1438
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=AOHWFCobnF5TyzbE03VPDlyWxo43XYzlqiuri_YWJP4,38315
7
- odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=SbyA1SxmAgC6i7lWl7C2XcN785B6dvyFmfdSkWYdhdI,37945
7
+ odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=iRqBECD-ojbqfl8eH4UwLGXvLB4HrfovVUfFBEboPaU,38177
8
8
  odoo/addons/base_report_to_printer/i18n/bg.po,sha256=ifBlxS_bAB0T7nJ8KSyYinaXE0ZlbGfP_KmZIL8-uUA,38414
9
9
  odoo/addons/base_report_to_printer/i18n/ca.po,sha256=1cEZmCLKBxL2uuv4WdnQo5rmIAwAUm6GmZvFN9Arp8E,38314
10
10
  odoo/addons/base_report_to_printer/i18n/de.po,sha256=v3R0ETIWUmD9UcMDHhcgqx4gKyhcpHgWK5BloCX8SKM,42229
@@ -17,7 +17,7 @@ odoo/addons/base_report_to_printer/i18n/fr.po,sha256=GC7Ph7IG0SmVojGdYP7HSq7A_8t
17
17
  odoo/addons/base_report_to_printer/i18n/gl.po,sha256=FMNM6XV0RZF11TZ6fJECut794DnhZnGG3gaZFPc5VTE,38317
18
18
  odoo/addons/base_report_to_printer/i18n/hr.po,sha256=zO3xmGETgnc1EqGxRxqbCeT4rQY0zrrDTxOidlZEhvM,40969
19
19
  odoo/addons/base_report_to_printer/i18n/hr_HR.po,sha256=Iba-_cMHBQLi9Mv3cHfUJpFc9aN5qAgrbErn49b6fFs,38413
20
- odoo/addons/base_report_to_printer/i18n/it.po,sha256=UZFUal4ngZgCeN1MwdKyCe-ZjC2TwOlHh9JaXCSSUn8,42979
20
+ odoo/addons/base_report_to_printer/i18n/it.po,sha256=lDrkeDU8WyF-Ef3wXWfWgwqHlipTgdBEzNR-AJKIHjY,42982
21
21
  odoo/addons/base_report_to_printer/i18n/nl.po,sha256=4SK9ziYjKW66AVihFHQ-ZcXUHvH1S691iIguIYh7eVA,38279
22
22
  odoo/addons/base_report_to_printer/i18n/nl_NL.po,sha256=RlzFOxC8KDb2yDUGy6oUuAeNV9NT87Dnxa40Yu4Yl4c,38921
23
23
  odoo/addons/base_report_to_printer/i18n/pt.po,sha256=8ADL73uPEfo4keJP_IEgRJ7gZELHa8B9hxV9qWUoH2k,38329
@@ -28,7 +28,7 @@ odoo/addons/base_report_to_printer/i18n/sv.po,sha256=W0BYGjudXSVnOF7uVqk7fPACVI7
28
28
  odoo/addons/base_report_to_printer/i18n/tr.po,sha256=sgO_fK1JAom9nTeNhjOqX8VfaubbGRfIiBEmVsGuH60,38298
29
29
  odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=f7jv8v9bz7ONsbj4FUvbHrNnPdII6JiWg5mB0sT1PcA,38310
30
30
  odoo/addons/base_report_to_printer/models/__init__.py,sha256=y92zKlKN-X-KT04jwLi8XgUsY8HAbDiRvdPKDWCpvGo,243
31
- odoo/addons/base_report_to_printer/models/ir_actions_report.py,sha256=c63wUgwAj6rq1nF7z5yY9BvPqaOxYclGWwVwJH9h9KE,7306
31
+ odoo/addons/base_report_to_printer/models/ir_actions_report.py,sha256=5HhTLi4MzL3RlGkR2kCgp0jjeaTya8EJiDRML8wToD4,8269
32
32
  odoo/addons/base_report_to_printer/models/printing_action.py,sha256=5i1Vdd-59RxfMoJSI_24BwpHb2BXKm7brRmO17zzsF8,912
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=3avOPIsqTHUpu6H4dgJvmrCEQrSI3_8wUH-_BKj4wog,8678
@@ -44,10 +44,10 @@ odoo/addons/base_report_to_printer/readme/INSTALL.rst,sha256=t2YpmitUkax9UiKn1ge
44
44
  odoo/addons/base_report_to_printer/readme/USAGE.rst,sha256=__mLAaeK28z7E4PnK7L038QJFltllISiWXO_gT6JhK0,593
45
45
  odoo/addons/base_report_to_printer/security/security.xml,sha256=wnrjXp2w6bgVUt0c4kPfc8XOP3hPOox8jA2FdL0wdxw,7481
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=geNiqLnVABsQsME_YYEc8Pfjm0z6T766z96GERg9EIc,18875
48
- odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=DmP275NSoA92RU0oOwHe1E62xcWm_4my6t4OlduizhM,1037
47
+ odoo/addons/base_report_to_printer/static/description/index.html,sha256=Oro7tb53-Khxuw-Q0ThzMfAuZT7WIz7_uKfOiWAVhJk,18958
48
+ odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=r6v4w6oXjQdLQHSDB46zJyJlWx03KtJEah5qSQNSNnU,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=F80ZLfRgtH8pKTGbppBlS1qL9UIiQXb_fab68oWoIB0,11443
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=RTKJy2hB7yRKg4q32oH2_SUxiiFQemVP7nmgKRcgw54,8917
@@ -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=GekYiElVfCCDdByeuZUu0tBsT1IqYyX9eH0O8-ppJZU,7580
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=en7Z6rR9gHYzF_naG1GF3CqfF2z7F99ZLxO3_UNc4EA,7492
58
+ odoo/addons/base_report_to_printer/tests/test_report.py,sha256=FjvSL5NCXL_pwGlcnU4XvHjUn63mVKak_PtyCJLc7qM,7556
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=VS7
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-16.0.1.1.7.dist-info/METADATA,sha256=ZQIGPsmVS3E_Jx7bgyT6Y39CgJANpkt2MC5R97lQXEs,6811
72
- odoo_addon_base_report_to_printer-16.0.1.1.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
73
- odoo_addon_base_report_to_printer-16.0.1.1.7.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
74
- odoo_addon_base_report_to_printer-16.0.1.1.7.dist-info/RECORD,,
71
+ odoo_addon_base_report_to_printer-16.0.1.1.8.dist-info/METADATA,sha256=cjipMwgTFodeTbkLkxvn8U00Jb4Xvqv0YmweGKJAsS4,6790
72
+ odoo_addon_base_report_to_printer-16.0.1.1.8.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
73
+ odoo_addon_base_report_to_printer-16.0.1.1.8.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
74
+ odoo_addon_base_report_to_printer-16.0.1.1.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.44.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5