From e55831a89c7a5baaa214eebc15a0ac2abce76f8f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 26 Feb 2018 11:38:40 +0530 Subject: [PATCH] Projected Qty in Auto reorder email --- erpnext/templates/emails/reorder_item.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/templates/emails/reorder_item.html b/erpnext/templates/emails/reorder_item.html index c1aa897038..05af3167ba 100644 --- a/erpnext/templates/emails/reorder_item.html +++ b/erpnext/templates/emails/reorder_item.html @@ -9,7 +9,7 @@ {{ _("Warehouse") }} {{ _("Quantity") }} {{ _("UOM") }} - {{ _("Balance Qty") }} + {{ _("Projected Qty") }} @@ -22,7 +22,7 @@ {{ item.warehouse }} {{ item.qty }} {{ item.uom }} - {{ item.balance_qty }} + {{ frappe.utils.flt(item.projected_qty) + frappe.utils.flt(item.qty) }} {%- endfor %}