fix: reset stock value if no qty

This commit is contained in:
Ankush Menat 2022-02-20 11:35:53 +05:30 committed by Ankush Menat
parent 35483242b3
commit 609d2fccad

View File

@ -468,6 +468,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