Pos item view: show item name and item code
diff --git a/erpnext/public/js/pos/pos_item.html b/erpnext/public/js/pos/pos_item.html
index 7f412d6..1235db9 100644
--- a/erpnext/public/js/pos/pos_item.html
+++ b/erpnext/public/js/pos/pos_item.html
@@ -3,7 +3,7 @@
 		 style="{% if (item_image) { %} background-image: {%= item_image %} {% } %}">
 	</div>
 	<div class="pos-item-text">
-		<h6 class="item-code text-ellipsis">{%= item_code %}</h6>
+		<h6 class="item-code text-ellipsis">{%= item_name ? (item_name + " (" + item_code + ")") : item_code %}</h6>
 		<div class="small text-ellipsis">{%= item_price %}</div>
 	</div>
 </div>