fix: List invoices in Payment Reconciliation Payment

Invoices are not listed in the Payment Reconciliation Payment table due to a typo in the code
This commit is contained in:
Vignesh S 2021-04-29 22:39:42 +05:30 committed by GitHub
parent 7bf25b4cef
commit 7783a56c08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -234,7 +234,7 @@ erpnext.accounts.PaymentReconciliationController = frappe.ui.form.Controller.ext
});
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")
);