Index: trunk/grails-app/views/inventoryItemDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 574)
+++ trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 575)
@@ -42,6 +42,16 @@
                     <richui:tabLabel selected="${showTab.inventory}" title="Inventory Item" />
                     <richui:tabLabel selected="${showTab.detail}" title="Detail" />
-                    <richui:tabLabel selected="${showTab.movement}" title="Movement" />
-                    <richui:tabLabel selected="${showTab.purchasing}" title="Purchasing" />
+                    <g:if test="${!inventoryMovementList.isEmpty()}">
+                        <richui:tabLabel selected="${showTab.movement}" title="Movement (${inventoryMovementList.size()})" />
+                    </g:if>
+                    <g:else>
+                        <richui:tabLabel selected="${showTab.movement}" title="Movement" />
+                    </g:else>
+                    <g:if test="${!inventoryItemPurchases.isEmpty()}">
+                        <richui:tabLabel selected="${showTab.purchasing}" title="Purchasing (${inventoryItemPurchases.size()})" />
+                    </g:if>
+                    <g:else>
+                        <richui:tabLabel selected="${showTab.purchasing}" title="Purchasing" />
+                    </g:else>
                 </richui:tabLabels>
 
