diff --git a/custom_receipts_for_pos/__manifest__.py b/custom_receipts_for_pos/__manifest__.py index 23160ed80..d4b9a9723 100644 --- a/custom_receipts_for_pos/__manifest__.py +++ b/custom_receipts_for_pos/__manifest__.py @@ -22,7 +22,7 @@ ################################################################################ { 'name': 'POS Receipt Design', - 'version': '18.0.1.0.3', + 'version': '18.0.1.0.4', 'category': 'Point of Sale', 'live_test_url': 'https://www.youtube.com/watch?v=sHQUam5F5Qs', 'summary': "POS Receipt, Receipt Design, POS Receipt Template, Design " diff --git a/custom_receipts_for_pos/doc/RELEASE_NOTES.md b/custom_receipts_for_pos/doc/RELEASE_NOTES.md index 39badcede..817740e52 100644 --- a/custom_receipts_for_pos/doc/RELEASE_NOTES.md +++ b/custom_receipts_for_pos/doc/RELEASE_NOTES.md @@ -18,4 +18,9 @@ #### 06.08.2025 #### Version 18.0.1.0.3 ##### BUG FIX -- Fixed the issues in the custom receipts which show error while loading the POS receipts screen. \ No newline at end of file +- Fixed the issues in the custom receipts which show error while loading the POS receipts screen. + +#### 29.10.2025 +#### Version 18.0.1.0.4 +##### BUG FIX +- Fixed the POS issue displaying the default receipt despite a selected custom design. \ No newline at end of file diff --git a/custom_receipts_for_pos/static/src/js/receipt_design.js b/custom_receipts_for_pos/static/src/js/receipt_design.js index 415e444c9..f94de13e6 100644 --- a/custom_receipts_for_pos/static/src/js/receipt_design.js +++ b/custom_receipts_for_pos/static/src/js/receipt_design.js @@ -30,8 +30,8 @@ patch(OrderReceipt.prototype, { }, get isTrue() { if (this.env.services.pos.config.is_custom_receipt == false) { - return false; + return true; } - return true; + return false; } });