mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
Merge pull request #16049 from rohitwaghchaure/incorrect_stock_value_difference_calculation
[Fix] Incorrect stock value difference because of negative stock
This commit is contained in:
@@ -176,7 +176,11 @@ class update_entries_after(object):
|
|||||||
# rounding as per precision
|
# rounding as per precision
|
||||||
self.stock_value = flt(self.stock_value, self.precision)
|
self.stock_value = flt(self.stock_value, self.precision)
|
||||||
|
|
||||||
stock_value_difference = self.stock_value - self.prev_stock_value
|
if self.prev_stock_value < 0 and self.stock_value >= 0:
|
||||||
|
stock_value_difference = sle.actual_qty * self.valuation_rate
|
||||||
|
else:
|
||||||
|
stock_value_difference = self.stock_value - self.prev_stock_value
|
||||||
|
|
||||||
self.prev_stock_value = self.stock_value
|
self.prev_stock_value = self.stock_value
|
||||||
|
|
||||||
# update current sle
|
# update current sle
|
||||||
|
|||||||
Reference in New Issue
Block a user