[fix]Stock UOM Replace Utility: Multiply Qty after Transaction by conversion factor as well, as there is no qty mentioned for stock reconciliation

This commit is contained in:
Nabin Hait 2015-08-21 13:04:15 +05:30
parent b5d9ab24ec
commit 7c2901fb56

View File

@ -93,7 +93,7 @@ def update_stock_ledger_entry(item_code, new_stock_uom, conversion_factor):
actual_qty = ifnull(actual_qty,0) * %s, actual_qty = ifnull(actual_qty,0) * %s,
qty_after_transaction = ifnull(qty_after_transaction, 0) * %s qty_after_transaction = ifnull(qty_after_transaction, 0) * %s
where item_code = %s""", where item_code = %s""",
(new_stock_uom, conversion_factor, item_code)) (new_stock_uom, conversion_factor, conversion_factor, item_code))
else: else:
frappe.db.sql("""update `tabStock Ledger Entry` set stock_uom=%s frappe.db.sql("""update `tabStock Ledger Entry` set stock_uom=%s
where item_code=%s""", (new_stock_uom, item_code)) where item_code=%s""", (new_stock_uom, item_code))