From 239f0d529e3450bba6cf516bdfaced2d4302c405 Mon Sep 17 00:00:00 2001 From: byugandhara <53554836+byugandhara@users.noreply.github.com> Date: Tue, 21 Jan 2020 15:47:27 +0530 Subject: [PATCH] Fix: Spelling correction in throw message of stock entry(#20337) (#20353) --- erpnext/stock/doctype/stock_entry/stock_entry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index a43ac853dc7..ce11a236e2e 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -614,7 +614,7 @@ class StockEntry(StockController): if self.work_order and self.purpose == "Manufacture": allowed_qty = wo_qty + (allowance_percentage/100 * wo_qty) if self.fg_completed_qty > allowed_qty: - frappe.throw(_("For quantity {0} should not be grater than work order quantity {1}") + frappe.throw(_("For quantity {0} should not be greater than work order quantity {1}") .format(flt(self.fg_completed_qty), wo_qty)) if production_item not in items_with_target_warehouse: