commit | 86aeacf3936cdf2e792c458ef7b281e2764a48f6 | [log] [tgz] |
---|---|---|
author | NandhiniDevi <95607404+Nandhinidevi123@users.noreply.github.com> | Fri Nov 24 14:18:44 2023 +0530 |
committer | GitHub <noreply@github.com> | Fri Nov 24 14:18:44 2023 +0530 |
tree | b5ee6882c748f7bb373b8003a6cf656f5818d455 | |
parent | f09c5f32cf4bd80dabb030d5910a2290365805ec [diff] |
add condition
diff --git a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py index d6e1be4..8dd0da9 100644 --- a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py +++ b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py
@@ -112,7 +112,7 @@ if as_dict: data.append({frappe.scrub(header): row[index] for index, header in enumerate(headers)}) else: - if not row[1]: + if not row[1] and len(row) > 1: row[1] = row[0] row[3] = row[2] data.append(row)