Browse Source

Aug 22: [FIX] Bug Fixed 'pos_receipt_invoice_send_whatsapp'

pull/313/merge
Risvana Cybro 4 weeks ago
parent
commit
99c350ebb4
  1. 2
      pos_receipt_invoice_send_whatsapp/__manifest__.py
  2. 7
      pos_receipt_invoice_send_whatsapp/doc/RELEASE_NOTES.md
  3. 2
      pos_receipt_invoice_send_whatsapp/static/src/xml/receipt_screen_templates.xml

2
pos_receipt_invoice_send_whatsapp/__manifest__.py

@ -21,7 +21,7 @@
###############################################################################
{
'name': 'Send POS Receipt and Invoice via WhatsApp',
'version': '17.0.1.0.0',
'version': '17.0.1.0.1',
'category': 'Point of Sale',
'summary': 'This module facilitates sending POS receipts and invoices '
'through WhatsApp during POS sessions.',

7
pos_receipt_invoice_send_whatsapp/doc/RELEASE_NOTES.md

@ -18,3 +18,10 @@
- Updated the module: Encountered a null case when no customer is selected. Fixed the error by checking null case in
receipt and payment screen.
## Module <pos_receipt_invoice_send_whatsapp>
#### 19.08.2025
#### Version 17.0.1.0.1
##### BUGFIX
- Updated the module: Encountered a null case when a customer was selected. Fixed the error by
handling the null case in the receipt and payment screens.

2
pos_receipt_invoice_send_whatsapp/static/src/xml/receipt_screen_templates.xml

@ -15,7 +15,6 @@
<button class="button print btn btn-lg btn-secondary w-100 py-3"
t-on-click="sendInvoiceOnWhatsapp">
<i class="fa fa-whatsapp me-2"
t-ref="order-print-receipt-button"
t-if="!orderUiState.isInvoiceSending"/>
<i class="fa fa-spinner fa-spin me-2"
t-if="orderUiState.isInvoiceSending"/>
@ -34,7 +33,6 @@
<button class="button print btn btn-lg btn-secondary w-100 py-3"
t-on-click="sendReceiptOnWhatsapp">
<i class="fa fa-whatsapp ms-2"
t-ref="order-print-receipt-button"
t-if="!orderUiState.isReceiptSending"/>
<i class="fa fa-spinner fa-spin me-2"
t-if="orderUiState.isReceiptSending"/>

Loading…
Cancel
Save