mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-17 11:44:27 +00:00
valuation rate mandatory if item is transacting for the first time
This commit is contained in:
@@ -153,8 +153,8 @@ class StockReconciliation(StockController):
|
||||
if row.valuation_rate in ("", None):
|
||||
row.valuation_rate = previous_sle.get("valuation_rate")
|
||||
|
||||
# if row.qty and not row.valuation_rate:
|
||||
# frappe.throw(_("Valuation Rate required for Item {0}").format(row.item_code))
|
||||
if row.qty and not row.valuation_rate:
|
||||
frappe.throw(_("Valuation Rate required for Item {0}").format(row.item_code))
|
||||
|
||||
self.insert_entries(row)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user