odoo-addon-base-report-to-printer 18.0.1.1.6__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.
Files changed (77) hide show
  1. odoo/addons/base_report_to_printer/README.rst +205 -0
  2. odoo/addons/base_report_to_printer/__init__.py +9 -0
  3. odoo/addons/base_report_to_printer/__manifest__.py +39 -0
  4. odoo/addons/base_report_to_printer/data/neutralize.sql +2 -0
  5. odoo/addons/base_report_to_printer/data/printing_data.xml +27 -0
  6. odoo/addons/base_report_to_printer/i18n/am.po +936 -0
  7. odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot +932 -0
  8. odoo/addons/base_report_to_printer/i18n/bg.po +939 -0
  9. odoo/addons/base_report_to_printer/i18n/ca.po +936 -0
  10. odoo/addons/base_report_to_printer/i18n/de.po +994 -0
  11. odoo/addons/base_report_to_printer/i18n/el_GR.po +937 -0
  12. odoo/addons/base_report_to_printer/i18n/es.po +1004 -0
  13. odoo/addons/base_report_to_printer/i18n/es_AR.po +987 -0
  14. odoo/addons/base_report_to_printer/i18n/es_ES.po +937 -0
  15. odoo/addons/base_report_to_printer/i18n/fi.po +939 -0
  16. odoo/addons/base_report_to_printer/i18n/fr.po +999 -0
  17. odoo/addons/base_report_to_printer/i18n/gl.po +936 -0
  18. odoo/addons/base_report_to_printer/i18n/hr.po +966 -0
  19. odoo/addons/base_report_to_printer/i18n/hr_HR.po +941 -0
  20. odoo/addons/base_report_to_printer/i18n/it.po +985 -0
  21. odoo/addons/base_report_to_printer/i18n/nl.po +939 -0
  22. odoo/addons/base_report_to_printer/i18n/nl_NL.po +950 -0
  23. odoo/addons/base_report_to_printer/i18n/pt.po +936 -0
  24. odoo/addons/base_report_to_printer/i18n/pt_BR.po +940 -0
  25. odoo/addons/base_report_to_printer/i18n/pt_PT.po +937 -0
  26. odoo/addons/base_report_to_printer/i18n/sl.po +943 -0
  27. odoo/addons/base_report_to_printer/i18n/sv.po +983 -0
  28. odoo/addons/base_report_to_printer/i18n/tr.po +936 -0
  29. odoo/addons/base_report_to_printer/i18n/zh_CN.po +958 -0
  30. odoo/addons/base_report_to_printer/models/__init__.py +8 -0
  31. odoo/addons/base_report_to_printer/models/ir_actions_report.py +253 -0
  32. odoo/addons/base_report_to_printer/models/printing_action.py +26 -0
  33. odoo/addons/base_report_to_printer/models/printing_job.py +131 -0
  34. odoo/addons/base_report_to_printer/models/printing_printer.py +268 -0
  35. odoo/addons/base_report_to_printer/models/printing_report_xml_action.py +48 -0
  36. odoo/addons/base_report_to_printer/models/printing_server.py +275 -0
  37. odoo/addons/base_report_to_printer/models/printing_tray.py +21 -0
  38. odoo/addons/base_report_to_printer/models/res_users.py +55 -0
  39. odoo/addons/base_report_to_printer/readme/CONFIGURE.md +13 -0
  40. odoo/addons/base_report_to_printer/readme/CONTRIBUTORS.md +18 -0
  41. odoo/addons/base_report_to_printer/readme/CREDITS.md +1 -0
  42. odoo/addons/base_report_to_printer/readme/DESCRIPTION.md +27 -0
  43. odoo/addons/base_report_to_printer/readme/HISTORY.md +7 -0
  44. odoo/addons/base_report_to_printer/readme/INSTALL.md +10 -0
  45. odoo/addons/base_report_to_printer/readme/ROADMAP.md +3 -0
  46. odoo/addons/base_report_to_printer/readme/USAGE.md +15 -0
  47. odoo/addons/base_report_to_printer/security/ir.model.access.csv +2 -0
  48. odoo/addons/base_report_to_printer/security/security.xml +151 -0
  49. odoo/addons/base_report_to_printer/static/description/icon.png +0 -0
  50. odoo/addons/base_report_to_printer/static/description/index.html +561 -0
  51. odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js +92 -0
  52. odoo/addons/base_report_to_printer/tests/__init__.py +13 -0
  53. odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py +350 -0
  54. odoo/addons/base_report_to_printer/tests/test_printing_job.py +70 -0
  55. odoo/addons/base_report_to_printer/tests/test_printing_printer.py +198 -0
  56. odoo/addons/base_report_to_printer/tests/test_printing_printer_tray.py +256 -0
  57. odoo/addons/base_report_to_printer/tests/test_printing_printer_wizard.py +94 -0
  58. odoo/addons/base_report_to_printer/tests/test_printing_report_xml_action.py +98 -0
  59. odoo/addons/base_report_to_printer/tests/test_printing_server.py +219 -0
  60. odoo/addons/base_report_to_printer/tests/test_printing_tray.py +49 -0
  61. odoo/addons/base_report_to_printer/tests/test_report.py +226 -0
  62. odoo/addons/base_report_to_printer/tests/test_res_users.py +53 -0
  63. odoo/addons/base_report_to_printer/views/ir_actions_report.xml +21 -0
  64. odoo/addons/base_report_to_printer/views/printing_job.xml +46 -0
  65. odoo/addons/base_report_to_printer/views/printing_printer.xml +147 -0
  66. odoo/addons/base_report_to_printer/views/printing_report.xml +39 -0
  67. odoo/addons/base_report_to_printer/views/printing_server.xml +79 -0
  68. odoo/addons/base_report_to_printer/views/res_users.xml +33 -0
  69. odoo/addons/base_report_to_printer/wizards/__init__.py +2 -0
  70. odoo/addons/base_report_to_printer/wizards/print_attachment_report.py +80 -0
  71. odoo/addons/base_report_to_printer/wizards/print_attachment_report.xml +56 -0
  72. odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard.py +27 -0
  73. odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard_view.xml +37 -0
  74. odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/METADATA +222 -0
  75. odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/RECORD +77 -0
  76. odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/WHEEL +5 -0
  77. odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/top_level.txt +1 -0
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" ?>
2
+ <odoo>
3
+ <record model="ir.ui.view" id="view_users_form">
4
+ <field name="name">res.users.form (in base_report_to_printer)</field>
5
+ <field name="model">res.users</field>
6
+ <field name="inherit_id" ref="base.view_users_form" />
7
+ <field name="arch" type="xml">
8
+ <group name="preferences" position="after">
9
+ <group string="Printing" name="printing">
10
+ <field name="printing_action" />
11
+ <field name="printing_printer_id" options="{'no_create': True}" />
12
+ </group>
13
+ </group>
14
+ </field>
15
+ </record>
16
+ <record model="ir.ui.view" id="view_users_form_simple_modif">
17
+ <field name="name">res.users.form.simple (in base_report_to_printer)</field>
18
+ <field name="model">res.users</field>
19
+ <field name="inherit_id" ref="base.view_users_form_simple_modif" />
20
+ <field name="arch" type="xml">
21
+ <group name="preferences" position="inside">
22
+ <group name="printing">
23
+ <field name="printing_action" readonly="0" />
24
+ <field
25
+ name="printing_printer_id"
26
+ readonly="0"
27
+ options="{'no_create': True}"
28
+ />
29
+ </group>
30
+ </group>
31
+ </field>
32
+ </record>
33
+ </odoo>
@@ -0,0 +1,2 @@
1
+ from . import print_attachment_report
2
+ from . import printing_printer_update_wizard
@@ -0,0 +1,80 @@
1
+ # Copyright 2020 Camptocamp SA
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
3
+ import base64
4
+
5
+ from odoo import _, fields, models
6
+
7
+
8
+ class PrintAttachment(models.TransientModel):
9
+ _name = "wizard.print.attachment"
10
+ _description = "Print Attachment"
11
+
12
+ printer_id = fields.Many2one(
13
+ comodel_name="printing.printer",
14
+ string="Printer",
15
+ required=True,
16
+ help="Printer used to print the attachments.",
17
+ )
18
+ attachment_line_ids = fields.One2many(
19
+ "wizard.print.attachment.line",
20
+ "wizard_id",
21
+ string="Attachments to print",
22
+ )
23
+
24
+ def print_attachments(self):
25
+ """Prints a label per selected record"""
26
+ self.ensure_one()
27
+ errors = []
28
+ for att_line in self.attachment_line_ids:
29
+ data = att_line.attachment_id.datas
30
+ title = att_line.attachment_id.name
31
+ if not data:
32
+ errors.append(att_line)
33
+ continue
34
+ content = base64.b64decode(data)
35
+ content_format = att_line.get_format()
36
+ self.printer_id.print_document(
37
+ None,
38
+ content=content,
39
+ format=content_format,
40
+ copies=att_line.copies,
41
+ title=title,
42
+ )
43
+ if errors:
44
+ return {
45
+ "warning": _("Following attachments could not be printed:\n\n%s")
46
+ % "\n".join(
47
+ [
48
+ _("{name} ({copies} copies)").format(
49
+ name=err.record_name, copies=err.copies
50
+ )
51
+ for err in errors
52
+ ]
53
+ )
54
+ }
55
+
56
+
57
+ class PrintAttachmentLine(models.TransientModel):
58
+ _name = "wizard.print.attachment.line"
59
+ _description = "Print Attachment line"
60
+
61
+ wizard_id = fields.Many2one("wizard.print.attachment")
62
+ attachment_id = fields.Many2one(
63
+ "ir.attachment",
64
+ required=True,
65
+ domain=[
66
+ "|",
67
+ ("mimetype", "=", "application/pdf"),
68
+ ("mimetype", "=", "application/octet-stream"),
69
+ ],
70
+ )
71
+ record_name = fields.Char(related="attachment_id.res_name", readonly=True)
72
+ copies = fields.Integer(default=1)
73
+
74
+ def get_format(self):
75
+ self.ensure_one()
76
+ mimetype = self.attachment_id.mimetype
77
+ if mimetype == "application/pdf":
78
+ return "pdf"
79
+ else:
80
+ return "raw"
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <odoo>
3
+ <record id="wizard_print_attachment_form" model="ir.ui.view">
4
+ <field name="name">wizard.print.attachment</field>
5
+ <field name="model">wizard.print.attachment</field>
6
+ <field name="arch" type="xml">
7
+ <form>
8
+ <group>
9
+ <field name="printer_id" />
10
+ <field name="attachment_line_ids">
11
+ <list editable="top">
12
+ <field name="attachment_id" create="0" />
13
+ <field name="record_name" />
14
+ <field name="copies" />
15
+ </list>
16
+ </field>
17
+ </group>
18
+ <footer>
19
+ <button
20
+ name="print_attachments"
21
+ type="object"
22
+ string="Print"
23
+ class="btn-primary"
24
+ />
25
+ <button string="Cancel" class="btn-secondary" special="cancel" />
26
+ </footer>
27
+ </form>
28
+ </field>
29
+ </record>
30
+ <record id="wizard_print_attachment_line_form" model="ir.ui.view">
31
+ <field name="name">wizard.print.attachment.line.form</field>
32
+ <field name="model">wizard.print.attachment.line</field>
33
+ <field name="arch" type="xml">
34
+ <form>
35
+ <group>
36
+ <field name="attachment_id" create="0" />
37
+ <field name="record_name" />
38
+ <field name="copies" />
39
+ </group>
40
+ </form>
41
+ </field>
42
+ </record>
43
+ <record id="action_wizard_print_attachment" model="ir.actions.act_window">
44
+ <field name="name">Print Attachments</field>
45
+ <field name="type">ir.actions.act_window</field>
46
+ <field name="res_model">wizard.print.attachment</field>
47
+ <field name="view_mode">form</field>
48
+ <field name="target">new</field>
49
+ </record>
50
+ <menuitem
51
+ id="menu_action_wizard_print_attachment"
52
+ action="action_wizard_print_attachment"
53
+ sequence="50"
54
+ parent="printing_menu"
55
+ />
56
+ </odoo>
@@ -0,0 +1,27 @@
1
+ # Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
2
+ # Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
3
+ # Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
4
+ # Copyright (C) 2014 Camptocamp (<http://www.camptocamp.com>)
5
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
6
+
7
+ import logging
8
+
9
+ from odoo import models
10
+
11
+ _logger = logging.getLogger(__name__)
12
+
13
+
14
+ class PrintingPrinterUpdateWizard(models.TransientModel):
15
+ _name = "printing.printer.update.wizard"
16
+ _description = "Printing Printer Update Wizard"
17
+
18
+ def action_ok(self):
19
+ self.env["printing.server"].search([]).update_printers(raise_on_error=True)
20
+
21
+ return {
22
+ "name": "Printers",
23
+ "view_mode": "list,form",
24
+ "res_model": "printing.printer",
25
+ "type": "ir.actions.act_window",
26
+ "target": "current",
27
+ }
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" ?>
2
+ <odoo>
3
+ <record id="printer_update_wizard" model="ir.ui.view">
4
+ <field name="name">printing.printer.update.wizard</field>
5
+ <field name="model">printing.printer.update.wizard</field>
6
+ <field name="arch" type="xml">
7
+ <form string="Update Printers from CUPS">
8
+ <div name="introduction">
9
+ <p>
10
+ This process will create all missing printers from the current CUPS server."
11
+ </p>
12
+ </div>
13
+ <footer>
14
+ <button
15
+ name="action_ok"
16
+ string="Ok"
17
+ type="object"
18
+ class="btn-primary"
19
+ />
20
+ <button string="Cancel" class="btn-default" special="cancel" />
21
+ </footer>
22
+ </form>
23
+ </field>
24
+ </record>
25
+ <record id="action_printer_update_wizard" model="ir.actions.act_window">
26
+ <field name="name">Update Printers from CUPS</field>
27
+ <field name="res_model">printing.printer.update.wizard</field>
28
+ <field name="view_mode">form</field>
29
+ <field name="target">new</field>
30
+ </record>
31
+ <menuitem
32
+ action="action_printer_update_wizard"
33
+ sequence="40"
34
+ id="menu_printer_update_wizard"
35
+ parent="printing_menu"
36
+ />
37
+ </odoo>
@@ -0,0 +1,222 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-base_report_to_printer
3
+ Version: 18.0.1.1.6
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: odoo==18.0.*
6
+ Requires-Dist: pycups
7
+ Summary: Report to printer
8
+ Home-page: https://github.com/OCA/report-print-send
9
+ License: AGPL-3
10
+ Author: Agile Business Group & Domsense, Pegueroles SCP, NaN, LasLabs, Camptocamp, Odoo Community Association (OCA), Open for Small Business Ltd
11
+ Author-email: support@odoo-community.org
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Framework :: Odoo
14
+ Classifier: Framework :: Odoo :: 18.0
15
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
16
+ Description-Content-Type: text/x-rst
17
+
18
+ .. image:: https://odoo-community.org/readme-banner-image
19
+ :target: https://odoo-community.org/get-involved?utm_source=readme
20
+ :alt: Odoo Community Association
21
+
22
+ =================
23
+ Report to printer
24
+ =================
25
+
26
+ ..
27
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
+ !! This file is generated by oca-gen-addon-readme !!
29
+ !! changes will be overwritten. !!
30
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
31
+ !! source digest: sha256:ef1f57f3e22ab9d930c27fab82b161d0a1b27cf559525979ccc8300cca95fcc5
32
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
33
+
34
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
35
+ :target: https://odoo-community.org/page/development-status
36
+ :alt: Beta
37
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
38
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
39
+ :alt: License: AGPL-3
40
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freport--print--send-lightgray.png?logo=github
41
+ :target: https://github.com/OCA/report-print-send/tree/18.0/base_report_to_printer
42
+ :alt: OCA/report-print-send
43
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
44
+ :target: https://translation.odoo-community.org/projects/report-print-send-18-0/report-print-send-18-0-base_report_to_printer
45
+ :alt: Translate me on Weblate
46
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
47
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/report-print-send&target_branch=18.0
48
+ :alt: Try me on Runboat
49
+
50
+ |badge1| |badge2| |badge3| |badge4| |badge5|
51
+
52
+ This module allows users to send reports to a printer attached to the
53
+ server.
54
+
55
+ It adds an optional behaviour on reports to send it directly to a
56
+ printer.
57
+
58
+ - Send to Client is the default behaviour providing you a downloadable
59
+ PDF
60
+ - Send to Printer prints the report on selected printer
61
+
62
+ It detects trays on printers installation plus permits to select the
63
+ paper source on which you want to print directly.
64
+
65
+ Report behaviour is defined by settings.
66
+
67
+ You will find this option on default user config, on default report
68
+ config and on specific config per user per report.
69
+
70
+ This allows you to dedicate a specific paper source for example for
71
+ preprinted paper such as payment slip.
72
+
73
+ Settings can be configured:
74
+
75
+ - globally
76
+ - per user
77
+ - per report
78
+ - per user and report
79
+
80
+ **Table of contents**
81
+
82
+ .. contents::
83
+ :local:
84
+
85
+ Installation
86
+ ============
87
+
88
+ To install this module, you need to:
89
+
90
+ 1. Install PyCups - https://pypi.python.org/pypi/pycups
91
+
92
+ .. code:: bash
93
+
94
+ sudo apt-get install cups
95
+ sudo apt-get install libcups2-dev
96
+ sudo apt-get install python3-dev
97
+ sudo pip install pycups
98
+
99
+ Configuration
100
+ =============
101
+
102
+ To configure this module, you need to:
103
+
104
+ 1. Enable the "Printing / Print User" option under access rights to give
105
+ users the ability to view the print menu.
106
+
107
+ The jobs will be sent to the printer with a name matching the
108
+ print_report_name of the report (truncated at 80 characters). By default
109
+ this will not be displayed by CUPS web interface or in Odoo. To see this
110
+ information, you need to change the configuration of your CUPS server
111
+ and set the JobPrivateValue directive to "none" (or some other list of
112
+ values which does not include "job-name") , and reload the server. See
113
+ cupsd.conf(5)
114
+ <`https://www.cups.org/doc/man-cupsd.conf.html\\> <https://www.cups.org/doc/man-cupsd.conf.html\>>`__
115
+ for details.
116
+
117
+ Usage
118
+ =====
119
+
120
+ Guidelines for use:
121
+
122
+ - To update the CUPS printers in *Settings > Printing > Update
123
+ Printers from CUPS*
124
+ - To print a report on a specific printer or tray, you can change
125
+ these in *Settings > Printing > Reports* to define default
126
+ behaviour.
127
+ - To print a report on a specific printer and/or tray for a user, you
128
+ can change these in *Settings > Printing > Reports* in *Specific
129
+ actions per user*
130
+ - Users may also select a default action, printer or tray in their
131
+ preferences.
132
+
133
+ When no tray is configured for a report and a user, the default tray
134
+ setup on the CUPS server is used.
135
+
136
+ Known issues / Roadmap
137
+ ======================
138
+
139
+ - With threaded printing there's no download fallback when the issue
140
+ isn't detected by the CUPS Odoo backend. To able to do it, we would
141
+ need to notify the bus or use web_notify for it.
142
+
143
+ Changelog
144
+ =========
145
+
146
+ 13.0.1.0.0 (2019-09-30)
147
+ -----------------------
148
+
149
+ - [RELEASE] Port from V12.
150
+
151
+ 12.0.1.0.0 (2018-02-04)
152
+ -----------------------
153
+
154
+ - [RELEASE] Port from V11.
155
+
156
+ Bug Tracker
157
+ ===========
158
+
159
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/report-print-send/issues>`_.
160
+ In case of trouble, please check there if your issue has already been reported.
161
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
162
+ `feedback <https://github.com/OCA/report-print-send/issues/new?body=module:%20base_report_to_printer%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
163
+
164
+ Do not contact contributors directly about support or help with technical issues.
165
+
166
+ Credits
167
+ =======
168
+
169
+ Authors
170
+ -------
171
+
172
+ * Agile Business Group & Domsense
173
+ * Pegueroles SCP
174
+ * NaN
175
+ * LasLabs
176
+ * Camptocamp
177
+ * Open for Small Business Ltd
178
+
179
+ Contributors
180
+ ------------
181
+
182
+ - Ferran Pegueroles <ferran@pegueroles.com>
183
+ - Albert Cervera i Areny <albert@nan-tic.com>
184
+ - Davide Corio <davide.corio@agilebg.com>
185
+ - Lorenzo Battistini <lorenzo.battistini@agilebg.com>
186
+ - Yannick Vaucher <yannick.vaucher@camptocamp.com>
187
+ - Lionel Sausin <ls@numerigraphe.com>
188
+ - Guewen Baconnier <guewen.baconnier@camptocamp.com>
189
+ - Dave Lasley <dave@laslabs.com>
190
+ - Sylvain Garancher <sylvain.garancher@syleam.fr>
191
+ - Jairo Llopis <jairo.llopis@tecnativa.com>
192
+ - Graeme Gellatly <graeme@o4sb.com>
193
+ - Rod Schouteden <rod@schout-it.be>
194
+ - Alexandre Fayolle <alexandre.fayolle@camptocamp.com>
195
+ - Matias Peralta <mnp@adhoc.com.ar>
196
+ - Hughes Damry <hughes.damry@acsone.eu>
197
+ - Akim Juillerat <akim.juillerat@camptocamp.com>
198
+ - Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
199
+ - Tris Doan <tridm@trobz.com>
200
+
201
+ Other credits
202
+ -------------
203
+
204
+ The migration of this module from 17.0 to 18.0 was financially supported
205
+ by Camptocamp.
206
+
207
+ Maintainers
208
+ -----------
209
+
210
+ This module is maintained by the OCA.
211
+
212
+ .. image:: https://odoo-community.org/logo.png
213
+ :alt: Odoo Community Association
214
+ :target: https://odoo-community.org
215
+
216
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
217
+ mission is to support the collaborative development of Odoo features and
218
+ promote its widespread use.
219
+
220
+ This module is part of the `OCA/report-print-send <https://github.com/OCA/report-print-send/tree/18.0/base_report_to_printer>`_ project on GitHub.
221
+
222
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -0,0 +1,77 @@
1
+ odoo/addons/base_report_to_printer/README.rst,sha256=r8RU-TlrV1rypTNP_VH40KfvFJrcdMLIrbzKcpTtULo,6778
2
+ odoo/addons/base_report_to_printer/__init__.py,sha256=Ldk9I_2g8cYtB7aM2jrf7Si9uWQbxTyaUwq31rv-X1E,439
3
+ odoo/addons/base_report_to_printer/__manifest__.py,sha256=ktqFrRWGlzkwpdy0AkHY4AYdqyuDkP_IR9wMB3CLbek,1478
4
+ odoo/addons/base_report_to_printer/data/neutralize.sql,sha256=ED9Je55ll3LB7G6W2Wjm9daqurleECxpmLe68DjCoWc,83
5
+ odoo/addons/base_report_to_printer/data/printing_data.xml,sha256=UULb0SZ21TRW0r7xOXxUK94XxSqMD5c6OGaUTKCFb1Y,1157
6
+ odoo/addons/base_report_to_printer/i18n/am.po,sha256=mr70sWctOe-KoOdyEu2KwZqLGsYhNo06H_wqAeIRK5o,37362
7
+ odoo/addons/base_report_to_printer/i18n/base_report_to_printer.pot,sha256=c5brfI-uoAW0E77ASlOCL-_a7Gl8Ebjt7WwvpseBqMU,36992
8
+ odoo/addons/base_report_to_printer/i18n/bg.po,sha256=9ddUs1RR0gmRXvjj0RwQdJw52w5aDfY1P2k30lJp9rY,37503
9
+ odoo/addons/base_report_to_printer/i18n/ca.po,sha256=7TGdoBZfQbYOnVKl4EP0I1ffmQuNNS3wlKP6QHuyT3U,37361
10
+ odoo/addons/base_report_to_printer/i18n/de.po,sha256=aFry3dutvY6WzDCiqClj-pufkD1T5wX7LL6eZllNloo,41396
11
+ odoo/addons/base_report_to_printer/i18n/el_GR.po,sha256=BqbKJFRW40eEGQw6zmthERANjKhXiOBAIiMxqCo0ic8,37480
12
+ odoo/addons/base_report_to_printer/i18n/es.po,sha256=9THT8SrKnvBbwfxcBlGism5g2mB8YyQvDhXyrwVBVFM,43106
13
+ odoo/addons/base_report_to_printer/i18n/es_AR.po,sha256=MlK920LH6cfAe-dBGLMV00W_ruY3fM3-LL72s0Yj1gk,41562
14
+ odoo/addons/base_report_to_printer/i18n/es_ES.po,sha256=P6xPYYaJZXTdSN72vBiflFhyqNYNN9Zdd8QpHjXMz-Q,37380
15
+ odoo/addons/base_report_to_printer/i18n/fi.po,sha256=bLksMAihL_Yki0QaAn261sFRcA2G50VGVOlf6smsngo,37409
16
+ odoo/addons/base_report_to_printer/i18n/fr.po,sha256=kRvFQJbIj0ZmJ96m9uKP3QJcpfipKFZzhP39osNu8As,42857
17
+ odoo/addons/base_report_to_printer/i18n/gl.po,sha256=k6x3Prs-XjxZ4H3gtWOnQOtfMQpN4EhVyU0NSXp1UmI,37364
18
+ odoo/addons/base_report_to_printer/i18n/hr.po,sha256=AHO752jqiq6sI0QeL-gcZj4SpDvo5xlA9Ta0mXutMKo,40136
19
+ odoo/addons/base_report_to_printer/i18n/hr_HR.po,sha256=IaY7uiZAGSutILrHdXOFBbDsy3QMtLhLWqRWPBr7x7M,37502
20
+ odoo/addons/base_report_to_printer/i18n/it.po,sha256=AtnUrVoqoQNR0ARFI49DHdvolIbRNvhT_6xXUWrH2P8,42209
21
+ odoo/addons/base_report_to_printer/i18n/nl.po,sha256=z0_TVKgkjeY0u5bUWHTTo4MGaA59TWAMtTnhsu1ug84,37368
22
+ odoo/addons/base_report_to_printer/i18n/nl_NL.po,sha256=v6mYXWe7nLbiIX1w-hgnjQ8GrHHjkQI-OrwpJkrw9DI,38039
23
+ odoo/addons/base_report_to_printer/i18n/pt.po,sha256=hJXtSwrBtocqZBb019IgzbKCkZF-KB0Vm9S-mAVEVvo,37376
24
+ odoo/addons/base_report_to_printer/i18n/pt_BR.po,sha256=TxaWhFrcw41EI4H3hxWSi4VD2roLASJeu4MLLLfhjZY,37477
25
+ odoo/addons/base_report_to_printer/i18n/pt_PT.po,sha256=TDNysQoq-1oxiVn1EkZW5895EFRD2CUD2GbNATRJBUE,37396
26
+ odoo/addons/base_report_to_printer/i18n/sl.po,sha256=SI4p0w8JsAU-uyYfu-SXxKqZNdsX6oudpLJo5XQeTVs,37536
27
+ odoo/addons/base_report_to_printer/i18n/sv.po,sha256=Kjdiq7PY70kU2pIi8z7ZkReuQMtjOLx5SIVFrM1Zhv8,42015
28
+ odoo/addons/base_report_to_printer/i18n/tr.po,sha256=FBZU6J0mqU2UTZkFOtJXWMv3tyl8M93pDdOorK2jAcs,37345
29
+ odoo/addons/base_report_to_printer/i18n/zh_CN.po,sha256=medO9VtsFUnjZk7o1eJlzqZkouUFK2F8Em65VSmX1M4,40735
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=M6aVQ69suES-vlQ6CKGEapb4Kq_3T1DEDewhc1k8aaE,9604
32
+ odoo/addons/base_report_to_printer/models/printing_action.py,sha256=Y8ZUpeZFYb4tGM8Wwqd0ZQVDBHD-sNXywepm_TFcqBs,906
33
+ odoo/addons/base_report_to_printer/models/printing_job.py,sha256=DBQSIqYhGVeqa2DgC_PWtoRAXbyLLvBKnNHn5G9XLWE,5029
34
+ odoo/addons/base_report_to_printer/models/printing_printer.py,sha256=ULj3XrOh6TqzkpcoGbQvAs0BL1H2fQe0BS1nslnvzS4,8940
35
+ odoo/addons/base_report_to_printer/models/printing_report_xml_action.py,sha256=psGmwsumPPOlao3j2OmpgujGL51qUnUfpheX2YASnO8,1629
36
+ odoo/addons/base_report_to_printer/models/printing_server.py,sha256=1EXGvgnDwKQjDqgnttTsltmpy40kqiFzF77EYfR8kwg,10574
37
+ odoo/addons/base_report_to_printer/models/printing_tray.py,sha256=tmSwhwdwiJIIRefDOQnLUG1k0tqAj96Pvh6T3zeYgzM,566
38
+ odoo/addons/base_report_to_printer/models/res_users.py,sha256=xN9faiF3NYRZ-ih2bjphnGhycapInUGD0_7pQauCaig,1873
39
+ odoo/addons/base_report_to_printer/readme/CONFIGURE.md,sha256=dCI7EMlKK2OPYuN7VCqkX-G9iddKWBLmK3dumfeKp1Q,657
40
+ odoo/addons/base_report_to_printer/readme/CONTRIBUTORS.md,sha256=Wu_ffGRpyIAyWH6Wgy96dgsKYSSWU64N68hYUPiJiME,855
41
+ odoo/addons/base_report_to_printer/readme/CREDITS.md,sha256=iBbhXVnE2APvLFeXl0Bdd-uXfNXH21qo0HnEDi8tVNI,88
42
+ odoo/addons/base_report_to_printer/readme/DESCRIPTION.md,sha256=iyIjrNhUHuelUc0p3D_Ye_h-__8-S7wQRHdz1Fi4UhA,765
43
+ odoo/addons/base_report_to_printer/readme/HISTORY.md,sha256=60aUga9zXMM4ku3CVKUqjDZmlMmCQdlGgCeUq86FYGY,115
44
+ odoo/addons/base_report_to_printer/readme/INSTALL.md,sha256=_AzvskY0An_rpz0vjWp4KnhACStV2yaSKhJgoFxCiCA,228
45
+ odoo/addons/base_report_to_printer/readme/ROADMAP.md,sha256=fcdQsLCglw89JfrVV4U5vWQgn9XB7196ZAyJSGNQuPw,190
46
+ odoo/addons/base_report_to_printer/readme/USAGE.md,sha256=wHHBzN6pbyQdWYdGtAis2Byp4_B9fM1ceEeU2jejsxQ,615
47
+ odoo/addons/base_report_to_printer/security/ir.model.access.csv,sha256=tIjk4kiES-JnJ_vgM7QrBSkuldIfvqUH5mZAKYPnY08,194
48
+ odoo/addons/base_report_to_printer/security/security.xml,sha256=wnrjXp2w6bgVUt0c4kPfc8XOP3hPOox8jA2FdL0wdxw,7481
49
+ odoo/addons/base_report_to_printer/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
50
+ odoo/addons/base_report_to_printer/static/description/index.html,sha256=E2r3DV-tOJc0hdBW9v8JQnwOciW_g1XFcSHuxLaE3I0,20127
51
+ odoo/addons/base_report_to_printer/static/src/js/qweb_action_manager.esm.js,sha256=JUyY2phDDvgk32ODtXeLY7pMHas5OGxWGjEyejYmN-4,3884
52
+ odoo/addons/base_report_to_printer/tests/__init__.py,sha256=tpUyFuG96289zrpY1fTMi-moLC2KFq_93_NjuDCw1Rg,458
53
+ odoo/addons/base_report_to_printer/tests/test_ir_actions_report.py,sha256=tNE9IKR1_u16U-OvNlBLBqPRX9kY_A9jJM6x-p3KtcM,13586
54
+ odoo/addons/base_report_to_printer/tests/test_printing_job.py,sha256=QsvtP3eKlRxVq12FUbaR2HKuqLhrM3-Y4GyxHdCHIU4,2362
55
+ odoo/addons/base_report_to_printer/tests/test_printing_printer.py,sha256=n5HCdlYK6Hnl44WTqTpgSNCWxHmcj28ib3cZEhfMeRU,7826
56
+ odoo/addons/base_report_to_printer/tests/test_printing_printer_tray.py,sha256=63Y0NpK8O0W23xAAEvfMLi5uN-AqQ20YxwglUvqckgA,8961
57
+ odoo/addons/base_report_to_printer/tests/test_printing_printer_wizard.py,sha256=-UrEXSzq-RG-Tm7aBV34gPiTOgfieZNuGAtKvHLLe7E,3616
58
+ odoo/addons/base_report_to_printer/tests/test_printing_report_xml_action.py,sha256=pfZ6Ak6bwvrW6jrBeC0GokJpRzxUOVpcbWWxQ8yoq8c,3158
59
+ odoo/addons/base_report_to_printer/tests/test_printing_server.py,sha256=2VXKWQsBtiGQQKfcM62ZBpNMoBxVIoAqqlrPZtRnqYg,8019
60
+ odoo/addons/base_report_to_printer/tests/test_printing_tray.py,sha256=4TMb5mmkh4I6os2OBwMjN2uCEL_KRhIF9E_3PTkuRqM,1765
61
+ odoo/addons/base_report_to_printer/tests/test_report.py,sha256=vTAXZNG4Agjz3tZfNnSAGeSR9gw8EN3EXl2Wf0L-1k4,8447
62
+ odoo/addons/base_report_to_printer/tests/test_res_users.py,sha256=7SDSYcx61fxLx42C-8htFDW3CzSx7P1OH-zYWOKDTWw,1965
63
+ odoo/addons/base_report_to_printer/views/ir_actions_report.xml,sha256=CP_pykwKIJRjy39X1sp9CPOMaMpnt0PK8OR9-2DascU,890
64
+ odoo/addons/base_report_to_printer/views/printing_job.xml,sha256=K-uL4-ZNErnQGE4L44qWkbspDAMjQ5KSDq8OfgNFDwc,1816
65
+ odoo/addons/base_report_to_printer/views/printing_printer.xml,sha256=1JrqmzMpOJ9Pwk4MBelpbdd1eADwD-HHtABPcacGdgE,5872
66
+ odoo/addons/base_report_to_printer/views/printing_report.xml,sha256=XEUS-mE9E-yDHGWHz-Hus3EGSJ17YOtiifFcM7WU_gg,1408
67
+ odoo/addons/base_report_to_printer/views/printing_server.xml,sha256=Qmv6ME2quAkoEmuBjx9DFR8OEzr9GEy78vJkBXr4wSc,2970
68
+ odoo/addons/base_report_to_printer/views/res_users.xml,sha256=IIi8W930iAEp1jknTsZ5MxBP2qiRJE4DNMI6yME9G-c,1392
69
+ odoo/addons/base_report_to_printer/wizards/__init__.py,sha256=MvgzXHSqDX2nGpbYkjyXSuv1iHe2ECwuPaAJdz5zitc,83
70
+ odoo/addons/base_report_to_printer/wizards/print_attachment_report.py,sha256=VS7FZ4Gz6ZjsUrsNXHqx2YBmagGWq-FnJJ5Wl64uaFY,2478
71
+ odoo/addons/base_report_to_printer/wizards/print_attachment_report.xml,sha256=liPNHCG-Cm6r8asC8iVZkGAl-MPK_KLwZkyR0NbUKCo,2187
72
+ odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard.py,sha256=a1ZGzHWINb3OlVOaDqZ8w9UEI3CxqCPunEHTGZiiCJk,895
73
+ odoo/addons/base_report_to_printer/wizards/printing_printer_update_wizard_view.xml,sha256=UbN9xjc12hI57ojjs84hPgQOfqPbuD_XThPyvyMxp-Y,1399
74
+ odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/METADATA,sha256=PBPUqY1TSb2BkQfz-R_4VVXtBlESX-Wqbq9451cMipA,7440
75
+ odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
76
+ odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
77
+ odoo_addon_base_report_to_printer-18.0.1.1.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: Whool 1.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+