mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-16 13:25:10 +00:00
committed by
Mergify
parent
379def5f0f
commit
40504b8da2
@@ -883,7 +883,10 @@ class update_entries_after:
|
|||||||
self.wh_data.valuation_rate
|
self.wh_data.valuation_rate
|
||||||
)
|
)
|
||||||
|
|
||||||
if sle.actual_qty < 0 and self.wh_data.qty_after_transaction != 0:
|
if (
|
||||||
|
sle.actual_qty < 0
|
||||||
|
and flt(self.wh_data.qty_after_transaction, self.flt_precision) != 0
|
||||||
|
):
|
||||||
self.wh_data.valuation_rate = flt(
|
self.wh_data.valuation_rate = flt(
|
||||||
self.wh_data.stock_value, self.currency_precision
|
self.wh_data.stock_value, self.currency_precision
|
||||||
) / flt(self.wh_data.qty_after_transaction, self.flt_precision)
|
) / flt(self.wh_data.qty_after_transaction, self.flt_precision)
|
||||||
|
|||||||
Reference in New Issue
Block a user