minor fix in credit limit

This commit is contained in:
Nabin Hait 2015-10-06 14:28:41 +05:30
parent 0bc3ca02f3
commit 54ecc8ebba

View File

@ -212,7 +212,7 @@ def get_customer_outstanding(customer, company):
from `tabSales Invoice Item`
where dn_detail = %s and docstatus = 1""", dn_item.name)[0][0]
if flt(dn_item.amount) > flt(si_amount):
if flt(dn_item.amount) > flt(si_amount) and dn_item.base_net_total:
outstanding_based_on_dn += ((flt(dn_item.amount) - flt(si_amount)) \
/ dn_item.base_net_total) * dn_item.base_grand_total