commit | d3c6000904387f64605fdb316412f1ee1948bd86 | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Sun Oct 08 13:16:28 2023 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Sun Oct 08 13:16:28 2023 +0530 |
tree | 6d80775ad6fb2d780a8e0dd9707ab931ffcc6ba0 | |
parent | aad77b133b9a5609767b144e7c828f4d8cd30790 [diff] |
fix: exception on exporting errored rows
diff --git a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js index 04af323..a70af7a 100644 --- a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js +++ b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js
@@ -352,10 +352,11 @@ export_errored_rows(frm) { open_url_post( - "/api/method/frappe.core.doctype.data_import.data_import.download_errored_template", + "/api/method/erpnext.accounts.doctype.bank_statement_import.bank_statement_import.download_errored_template", { data_import_name: frm.doc.name, - } + }, + true ); },