fix: Remove Item Code and Item Name columns
diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py
index d202d86..842e32e 100644
--- a/erpnext/accounts/report/gross_profit/gross_profit.py
+++ b/erpnext/accounts/report/gross_profit/gross_profit.py
@@ -46,6 +46,8 @@
 
 		# to display item as Item Code: Item Name
 		columns[0] = 'Sales Invoice:Link/Item:300'
+		# removing Item Code and Item Name columns
+		del columns[4:6]
 
 		for src in gross_profit_data.si_list:	
 			row = frappe._dict()