Skip to content

Commit

Permalink
[IMP] stock_inventory_valuation_report: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
solo4games committed Nov 22, 2023
1 parent 22c87ba commit 7913f1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _compute_results(self):
"stock_value": product.qty_available * standard_price,
"cost_method": product.cost_method,
}
if product.quantity_svl != 0:
if product.qty_available != 0:
self.results += ReportLine.new(line)

def print_report(self, report_type="qweb"):
Expand Down

0 comments on commit 7913f1d

Please sign in to comment.