commit | 7783a56c08d343baab2e583d7f90f6e25e69a8ac | [log] [tgz] |
---|---|---|
author | Vignesh S <svignesh0308@gmail.com> | Thu Apr 29 22:39:42 2021 +0530 |
committer | GitHub <noreply@github.com> | Thu Apr 29 22:39:42 2021 +0530 |
tree | 56993ed395fd213700a17d4339572c374f7088d1 | |
parent | 7bf25b4cef611caa7465356bc82b13523917b8a2 [diff] |
fix: List invoices in Payment Reconciliation Payment Invoices are not listed in the Payment Reconciliation Payment table due to a typo in the code
diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js index 08103184..d1523cd 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js +++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js
@@ -234,7 +234,7 @@ }); if (invoices) { - this.frm.fields_dict.payment.grid.update_docfield_property( + this.frm.fields_dict.payments.grid.update_docfield_property( 'invoice_number', 'options', "\n" + invoices.join("\n") );