Merge pull request #26287 from deepeshgarg007/bank_statement_import_fix

fix: Bank statement import
This commit is contained in:
Deepesh Garg
2021-07-04 20:34:10 +05:30
committed by GitHub

View File

@@ -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