Merge pull request #18385 from rohitwaghchaure/offline_pos_syncing_issue_for_customer_develop
fix: offline pos syncing issue for customer
diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py
index e41c74c..8f1dfbc 100644
--- a/erpnext/accounts/utils.py
+++ b/erpnext/accounts/utils.py
@@ -730,7 +730,6 @@
parent_fieldname = 'parent_' + doctype.lower().replace(' ', '_')
fields = [
'name as value',
- 'root_type',
'is_group as expandable'
]
filters = [['docstatus', '<', 2]]
@@ -738,11 +737,11 @@
filters.append(['ifnull(`{0}`,"")'.format(parent_fieldname), '=', '' if is_root else parent])
if is_root:
- fields += ['report_type', 'account_currency'] if doctype == 'Account' else []
+ fields += ['root_type', 'report_type', 'account_currency'] if doctype == 'Account' else []
filters.append(['company', '=', company])
else:
- fields += ['account_currency'] if doctype == 'Account' else []
+ fields += ['root_type', 'account_currency'] if doctype == 'Account' else []
fields += [parent_fieldname + ' as parent']
acc = frappe.get_list(doctype, fields=fields, filters=filters)