mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 15:42:52 +00:00
fix: get credit limit
This commit is contained in:
@@ -335,12 +335,13 @@ def get_credit_limit(customer, company):
|
|||||||
c.name = %s
|
c.name = %s
|
||||||
AND c.name = ccl.parent
|
AND c.name = ccl.parent
|
||||||
AND ccl.company = %s
|
AND ccl.company = %s
|
||||||
""", (customer, company), as_dict=1)
|
""", (customer, company))
|
||||||
|
|
||||||
credit_limit = credit_record.credit_limit
|
if credit_record:
|
||||||
|
customer_group, credit_limit = credit_record[0]
|
||||||
|
|
||||||
if not credit_limit:
|
if not credit_limit and customer_group:
|
||||||
credit_limit = frappe.get_cached_value("Customer Group", credit_record.customer_group, "credit_limit")
|
credit_limit = frappe.get_cached_value("Customer Group", customer_group, "credit_limit")
|
||||||
|
|
||||||
if not credit_limit:
|
if not credit_limit:
|
||||||
credit_limit = frappe.get_cached_value('Company', company, "credit_limit")
|
credit_limit = frappe.get_cached_value('Company', company, "credit_limit")
|
||||||
|
|||||||
Reference in New Issue
Block a user