From 8cbc22062bc74478a1c9ef2cf5553f7865773c0b Mon Sep 17 00:00:00 2001 From: deepeshgarg007 Date: Mon, 15 Jul 2019 18:35:19 +0530 Subject: [PATCH] fix: Remove cost center filter from customer credit balance report --- .../report/customer_credit_balance/customer_credit_balance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py index 2e0d4ed9066..ee0d72be7bb 100644 --- a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py +++ b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py @@ -5,7 +5,7 @@ from __future__ import unicode_literals import frappe from frappe import _ from frappe.utils import flt -from erpnext.selling.doctype.customer.customer importget_customer_outstanding, get_credit_limit +from erpnext.selling.doctype.customer.customer import get_customer_outstanding, get_credit_limit def execute(filters=None): if not filters: filters = {}