Browse Source

Merge pull request #26324 from deepeshgarg007/bank_statement_import_fix_develop

fix: Bank statement import
develop
Deepesh Garg 3 years ago
committed by GitHub
parent
commit
a62f94379b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py

2
erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py

@ -51,7 +51,7 @@ class BankStatementImport(DataImport):
self.import_file, self.google_sheets_url
)
if 'Bank Account' not in json.dumps(preview):
if 'Bank Account' not in json.dumps(preview['columns']):
frappe.throw(_("Please add the Bank Account column"))
from frappe.core.page.background_jobs.background_jobs import get_info

Loading…
Cancel
Save