fix: Gross profit for credit notes

This commit is contained in:
Deepesh Garg 2022-02-14 22:14:17 +05:30
parent 07bcbc6c7e
commit 973f6b1bbd

View File

@ -282,8 +282,8 @@ class GrossProfitGenerator(object):
if self.filters.get("group_by") != "Invoice": if self.filters.get("group_by") != "Invoice":
if not row.get(scrub(self.filters.get("group_by", ""))): if not row.get(scrub(self.filters.get("group_by", ""))):
return True return True
elif row.get("is_return") == 1:
return True return False
def get_buying_amount_from_product_bundle(self, row, product_bundle): def get_buying_amount_from_product_bundle(self, row, product_bundle):
buying_amount = 0.0 buying_amount = 0.0