diff --git a/erpnext/templates/emails/reorder_item.html b/erpnext/templates/emails/reorder_item.html
index c1aa8970385..05af3167bac 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 %}