fix: bypass_credit_limit_check in credit balance report (#29401)
This commit is contained in:
@@ -23,19 +23,24 @@ def execute(filters=None):
|
|||||||
row = []
|
row = []
|
||||||
|
|
||||||
outstanding_amt = get_customer_outstanding(d.name, filters.get("company"),
|
outstanding_amt = get_customer_outstanding(d.name, filters.get("company"),
|
||||||
ignore_outstanding_sales_order=d.bypass_credit_limit_check_at_sales_order)
|
ignore_outstanding_sales_order=d.bypass_credit_limit_check)
|
||||||
|
|
||||||
credit_limit = get_credit_limit(d.name, filters.get("company"))
|
credit_limit = get_credit_limit(d.name, filters.get("company"))
|
||||||
|
|
||||||
bal = flt(credit_limit) - flt(outstanding_amt)
|
bal = flt(credit_limit) - flt(outstanding_amt)
|
||||||
|
|
||||||
if customer_naming_type == "Naming Series":
|
if customer_naming_type == "Naming Series":
|
||||||
row = [d.name, d.customer_name, credit_limit, outstanding_amt, bal,
|
row = [
|
||||||
d.bypass_credit_limit_check, d.is_frozen,
|
d.name, d.customer_name, credit_limit,
|
||||||
d.disabled]
|
outstanding_amt, bal, d.bypass_credit_limit_check,
|
||||||
|
d.is_frozen, d.disabled
|
||||||
|
]
|
||||||
else:
|
else:
|
||||||
row = [d.name, credit_limit, outstanding_amt, bal,
|
row = [
|
||||||
d.bypass_credit_limit_check_at_sales_order, d.is_frozen, d.disabled]
|
d.name, credit_limit, outstanding_amt, bal,
|
||||||
|
d.bypass_credit_limit_check, d.is_frozen,
|
||||||
|
d.disabled
|
||||||
|
]
|
||||||
|
|
||||||
if credit_limit:
|
if credit_limit:
|
||||||
data.append(row)
|
data.append(row)
|
||||||
|
|||||||
Reference in New Issue
Block a user