fix: reset stock value if no qty

This commit is contained in:
Ankush Menat
2022-02-23 11:34:01 +05:30
committed by Ankush Menat
parent 6d354edb6b
commit 37ba3666ac

View File

@@ -458,6 +458,8 @@ class update_entries_after(object):
# rounding as per precision
self.wh_data.stock_value = flt(self.wh_data.stock_value, self.precision)
if not self.wh_data.qty_after_transaction:
self.wh_data.stock_value = 0.0
stock_value_difference = self.wh_data.stock_value - self.wh_data.prev_stock_value
self.wh_data.prev_stock_value = self.wh_data.stock_value