chore: fix typo
diff --git a/erpnext/accounts/report/purchase_register/purchase_register.py b/erpnext/accounts/report/purchase_register/purchase_register.py
index 00f6527..616dca4 100644
--- a/erpnext/accounts/report/purchase_register/purchase_register.py
+++ b/erpnext/accounts/report/purchase_register/purchase_register.py
@@ -127,7 +127,7 @@
 		row.update(
 			{
 				"total_tax": total_tax,
-				"garnd_total": inv.base_grand_total,
+				"grand_total": inv.base_grand_total,
 				"rounded_total": inv.base_rounded_total,
 				"outstanding_amount": inv.outstanding_amount,
 			}
@@ -193,6 +193,7 @@
 
 	if not include_payments:
 		columns += [
+			_("Grand Total") + ":Currency/currency:120",
 			_("Rounded Total") + ":Currency/currency:120",
 			_("Outstanding Amount") + ":Currency/currency:120",
 		]