Browse Source

Oct 30 [FIX] : 'custom_receipts_for_pos'

pull/396/merge
AjmalCybro 4 days ago
parent
commit
abd373570c
  1. 2
      custom_receipts_for_pos/__manifest__.py
  2. 7
      custom_receipts_for_pos/doc/RELEASE_NOTES.md
  3. 4
      custom_receipts_for_pos/static/src/js/receipt_design.js

2
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 "

7
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.
- 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.

4
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;
}
});

Loading…
Cancel
Save