Minor fix in path
diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.js b/erpnext/accounts/doctype/sales_invoice/sales_invoice.js
index 1a1fa9f..2362f3f 100644
--- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.js
+++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.js
@@ -241,8 +241,8 @@
 
 cur_frm.cscript.mode_of_payment = function(doc) {
 	return cur_frm.call({
-		method: "get_bank_cash_account",
-		args: { mode_of_payment: doc.mode_of_payment }
+		method: "erpnext.accounts.doctype.sales_invoice.sales_invoice.get_bank_cash_account",
+		args: { mode_of_payment: doc.mode_of_payment },
 	});
 }
 
@@ -255,9 +255,6 @@
 	if (doc.is_opening == 'Yes') unhide_field('aging_date');
 }
 
-//Make Delivery Note Button
-//-----------------------------
-
 cur_frm.cscript['Make Delivery Note'] = function() {
 	wn.model.open_mapped_doc({
 		method: "erpnext.accounts.doctype.sales_invoice.sales_invoice.make_delivery_note",