fix: TypeError while concatenating account number and name in COA (#22886)

This commit is contained in:
Rucha Mahabal
2020-08-03 15:51:39 +05:30
committed by GitHub
parent ec46b8c73b
commit 4f6a25539a

View File

@@ -225,7 +225,7 @@ def build_tree_from_json(chart_template, chart_data=None):
account['parent_account'] = parent
account['expandable'] = True if identify_is_group(child) else False
account['value'] = (child.get('account_number') + ' - ' + account_name) \
account['value'] = (cstr(child.get('account_number')).strip() + ' - ' + account_name) \
if child.get('account_number') else account_name
accounts.append(account)
_import_accounts(child, account['value'])