fix: inv status

This commit is contained in:
Nabin Hait 2019-07-02 17:55:26 +05:30
parent 3bbcd491e4
commit 05fee62314

View File

@ -1210,7 +1210,7 @@ class SalesInvoice(SellingController):
self.status = "Unpaid and Discounted"
elif self.outstanding_amount > 0 and getdate(self.due_date) >= getdate(nowdate()):
self.status = "Unpaid"
elif self.outstanding_amount < 0 and self.is_return==0 and get_value('Sales Invoice', {'is_return': 1, 'return_against': self.name, 'docstatus': 1}):
elif self.outstanding_amount < 0 and self.is_return==0 and frappe.db.get_value('Sales Invoice', {'is_return': 1, 'return_against': self.name, 'docstatus': 1}):
self.status = "Credit Note Issued"
elif self.outstanding_amount<=0 and self.is_return==0:
self.status = "Paid"