fix: use get_list instead of get_all

This commit is contained in:
Shariq Ansari 2024-02-23 17:48:26 +05:30
parent 5ac0f30177
commit 71886cfc7f

View File

@ -185,7 +185,7 @@ def get_list_data(
if column.get("key") not in rows:
rows.append(column.get("key"))
data = frappe.get_all(
data = frappe.get_list(
doctype,
fields=rows,
filters=filters,