fix: Remove unnecessary condition

(cherry picked from commit c7ffe3a7b4)
This commit is contained in:
GangaManoj
2021-11-16 02:36:58 +05:30
committed by mergify-bot
parent 85bf2574be
commit e9f599de5d

View File

@@ -254,7 +254,7 @@ class GrossProfitGenerator(object):
row.qty += flt(returned_item_row.qty)
row.base_amount += flt(returned_item_row.base_amount, self.currency_precision)
row.buying_amount = flt(flt(row.qty) * flt(row.buying_rate), self.currency_precision)
if (flt(row.qty) or row.base_amount) and self.is_not_invoice_row(row):
if (flt(row.qty) or row.base_amount):
row = self.set_average_rate(row)
self.grouped_data.append(row)
self.add_to_totals(row)