Index: /trunk/grails-app/domain/InventoryItem.groovy
===================================================================
--- /trunk/grails-app/domain/InventoryItem.groovy	(revision 615)
+++ /trunk/grails-app/domain/InventoryItem.groovy	(revision 616)
@@ -21,5 +21,5 @@
     boolean isActive = true
     boolean isObsolete = false
-    boolean enableReorder = true /// @todo: rename to enableReorderListing.
+    boolean enableReorderListing = true
 
     static mapping = {
@@ -45,5 +45,5 @@
         estimatedUnitPriceCurrency(nullable:true)
         reorderPoint()
-        enableReorder()
+        enableReorderListing()
         recommendedReorderPoint(nullable:true)
         isActive()
Index: /trunk/grails-app/i18n/messages.properties
===================================================================
--- /trunk/grails-app/i18n/messages.properties	(revision 615)
+++ /trunk/grails-app/i18n/messages.properties	(revision 616)
@@ -370,7 +370,7 @@
 inventoryItem.search.text.none.found=No results for: {0}
 inventoryItem.search.text.below.reorder=Below Reorder
-inventoryItem.search.text.below.reorder.description=Inventory items at or below reorder point, with reorder enabled.
+inventoryItem.search.text.below.reorder.description=Inventory items at or below reorder point.
 inventoryItem.search.text.below.reorder.all=Below Reorder (all)
-inventoryItem.search.text.below.reorder.all.description=Inventory items at or below reorder point, including reorder disabled.
+inventoryItem.search.text.below.reorder.all.description=Inventory items at or below reorder point, including reorder listing disabled.
 inventoryItem.search.text.below.reorder.none.found=No inventory items found at or below reorder point.
 inventoryItem.search.text.all.description=All inventory items.
Index: /trunk/grails-app/services/InventoryCsvService.groovy
===================================================================
--- /trunk/grails-app/services/InventoryCsvService.groovy	(revision 615)
+++ /trunk/grails-app/services/InventoryCsvService.groovy	(revision 616)
@@ -56,5 +56,5 @@
             def inventoryProperties = ["name", "description", "comment", "unitsInStock", "reorderPoint", "recommendedReorderPoint",
                                                         "unitOfMeasure", "estimatedUnitPriceAmount", "estimatedUnitPriceCurrency",
-                                                        "enableReorder", "inventoryLocation", "inventoryStore", "site",
+                                                        "enableReorderListing", "inventoryLocation", "inventoryStore", "site",
                                                         "inventoryGroup", "inventoryType", "averageDeliveryTime", "averageDeliveryPeriod",
                                                         "suppliersPartNumber", "preferredSupplier", "alternateSuppliers",
@@ -578,5 +578,5 @@
             row.add(inventoryItem.estimatedUnitPriceAmount)
             row.add(inventoryItem.estimatedUnitPriceCurrency)
-            row.add(inventoryItem.enableReorder)
+            row.add(inventoryItem.enableReorderListing)
             row.add(inventoryItem.inventoryLocation)
             row.add(inventoryItem.inventoryLocation.inventoryStore)
Index: /trunk/grails-app/services/InventoryItemSearchService.groovy
===================================================================
--- /trunk/grails-app/services/InventoryItemSearchService.groovy	(revision 615)
+++ /trunk/grails-app/services/InventoryItemSearchService.groovy	(revision 616)
@@ -100,5 +100,5 @@
                 eq("isActive", true)
                 if(onlyReorderEnabled)
-                    eq("enableReorder", true)
+                    eq("enableReorderListing", true)
                 leProperty("unitsInStock", "reorderPoint")
             } // createCriteria
Index: /trunk/grails-app/views/inventoryItemDetailed/create.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 615)
+++ /trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 616)
@@ -84,8 +84,8 @@
                             <tr class="prop">
                                 <td valign="top" class="name">
-                                    <label for="enableReorder">Enable Reorder Listing:</label>
-                                </td>
-                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorder','errors')}">
-                                    <g:checkBox name="enableReorder" value="${inventoryItemInstance?.enableReorder}" ></g:checkBox>
+                                    <label for="enableReorderListing">Enable Reorder Listing:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorderListing','errors')}">
+                                    <g:checkBox name="enableReorderListing" value="${inventoryItemInstance?.enableReorderListing}" ></g:checkBox>
                                 </td>
                             </tr>
Index: /trunk/grails-app/views/inventoryItemDetailed/edit.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 615)
+++ /trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 616)
@@ -129,8 +129,8 @@
                             <tr class="prop">
                                 <td valign="top" class="name">
-                                    <label for="enableReorder">Enable Reorder Listing:</label>
-                                </td>
-                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorder','errors')}">
-                                    <g:checkBox name="enableReorder" value="${inventoryItemInstance?.enableReorder}" ></g:checkBox>
+                                    <label for="enableReorderListing">Enable Reorder Listing:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorderListing','errors')}">
+                                    <g:checkBox name="enableReorderListing" value="${inventoryItemInstance?.enableReorderListing}" ></g:checkBox>
                                 </td>
                             </tr>
Index: /trunk/grails-app/views/inventoryItemDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 615)
+++ /trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 616)
@@ -28,5 +28,5 @@
                 </div>
             </g:if>
-            <g:if test="${!inventoryItemInstance.enableReorder}" >
+            <g:if test="${!inventoryItemInstance.enableReorderListing}" >
                 <div class="message">
                     <g:message code="inventory.item.reorder.listing.disabled" />
@@ -253,5 +253,5 @@
                                     <tr class="prop">
                                         <td valign="top" class="name">Enable Reorder Listing:</td>
-                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'enableReorder')}</td>
+                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'enableReorderListing')}</td>
                                     </tr>
 
