fix: Display Items in the format Item Code: Item Name
diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py
index 87053a0..d202d86 100644
--- a/erpnext/accounts/report/gross_profit/gross_profit.py
+++ b/erpnext/accounts/report/gross_profit/gross_profit.py
@@ -44,6 +44,9 @@
 	if filters.group_by == 'Invoice':
 		column_names = get_column_names()
 
+		# to display item as Item Code: Item Name
+		columns[0] = 'Sales Invoice:Link/Item:300'
+
 		for src in gross_profit_data.si_list:	
 			row = frappe._dict()
 			row.indent = src.indent