diff --git a/direct_print_odoo/README.rst b/direct_print_odoo/README.rst
index c8100ae85..1d7f6b860 100644
--- a/direct_print_odoo/README.rst
+++ b/direct_print_odoo/README.rst
@@ -1,5 +1,5 @@
.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg
- :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
Direct Print
@@ -26,7 +26,7 @@ Company
License
-------
General Public License, Version 3 (LGPL v3).
-(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html)
+(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
Credits
-------
diff --git a/direct_print_odoo/__manifest__.py b/direct_print_odoo/__manifest__.py
index f01b9c4fb..14f63252e 100644
--- a/direct_print_odoo/__manifest__.py
+++ b/direct_print_odoo/__manifest__.py
@@ -21,7 +21,7 @@
#############################################################################
{
'name': 'Direct Print',
- 'version': '16.0.1.0.0',
+ 'version': '16.0.1.1.1',
'summary': 'The Direct Print is a tool that connects Odoo to PrintNode, '
'a cloud-based printing service. This connector allows users to'
' send print jobs from their Odoo environment to any printer '
diff --git a/direct_print_odoo/controllers/printer.py b/direct_print_odoo/controllers/printer.py
index 1f0012e47..fdb8b6b83 100644
--- a/direct_print_odoo/controllers/printer.py
+++ b/direct_print_odoo/controllers/printer.py
@@ -70,8 +70,8 @@ class ReportControllers(ReportController):
pdf = report.with_context(context)._render_qweb_pdf(reportname,
docids,
data=data)[0]
- print_node_url = request.env[
- 'ir.config_parameter'].sudo().get_param('url_print_node')
+ # print_node_url = request.env[
+ # 'ir.config_parameter'].sudo().get_param('url_print_node')
print_node_api = request.env[
'ir.config_parameter'].sudo().get_param('api_key_print_node')
default_printer = request.env[
@@ -91,7 +91,7 @@ class ReportControllers(ReportController):
int(printer))
multi_printer_details.append(printer_details.id_of_printer)
if multiple_printers_boolean:
- gateway = Gateway(url=print_node_url, apikey=print_node_api)
+ gateway = Gateway(url='https://api.printnode.com/', apikey=print_node_api)
data_record = base64.b64encode(pdf)
ir_values = {
'name': "Customer Report",
@@ -122,7 +122,7 @@ class ReportControllers(ReportController):
raise ValidationError(_(
'please select at least one printer'))
else:
- gateway = Gateway(url=print_node_url, apikey=print_node_api)
+ gateway = Gateway(url='https://api.printnode.com/', apikey=print_node_api)
data_record = base64.b64encode(pdf)
ir_values = {
'name': "Customer Report",
diff --git a/direct_print_odoo/doc/RELEASE_NOTES.md b/direct_print_odoo/doc/RELEASE_NOTES.md
index 06460d4c4..db049add7 100644
--- a/direct_print_odoo/doc/RELEASE_NOTES.md
+++ b/direct_print_odoo/doc/RELEASE_NOTES.md
@@ -4,3 +4,8 @@
#### Version 16.0.1.0.0
#### ADD
- Initial commit for Direct Print
+
+#### 06.10.2023
+#### Version 16.0.1.1.1
+#### UPDATE
+- Update commit for Direct Print
\ No newline at end of file
diff --git a/direct_print_odoo/models/res_config_settings.py b/direct_print_odoo/models/res_config_settings.py
index d5f7cd580..b224aa6fc 100644
--- a/direct_print_odoo/models/res_config_settings.py
+++ b/direct_print_odoo/models/res_config_settings.py
@@ -19,7 +19,6 @@
# If not, see
- Direct Print
+ The Direct Print is a Tool That Connects Odoo to PrintNode