Changeset 616 for trunk/grails-app/services
- Timestamp:
- Jun 28, 2010, 1:01:30 AM (15 years ago)
- Location:
- trunk/grails-app/services
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/InventoryCsvService.groovy
r462 r616 56 56 def inventoryProperties = ["name", "description", "comment", "unitsInStock", "reorderPoint", "recommendedReorderPoint", 57 57 "unitOfMeasure", "estimatedUnitPriceAmount", "estimatedUnitPriceCurrency", 58 "enableReorder ", "inventoryLocation", "inventoryStore", "site",58 "enableReorderListing", "inventoryLocation", "inventoryStore", "site", 59 59 "inventoryGroup", "inventoryType", "averageDeliveryTime", "averageDeliveryPeriod", 60 60 "suppliersPartNumber", "preferredSupplier", "alternateSuppliers", … … 578 578 row.add(inventoryItem.estimatedUnitPriceAmount) 579 579 row.add(inventoryItem.estimatedUnitPriceCurrency) 580 row.add(inventoryItem.enableReorder )580 row.add(inventoryItem.enableReorderListing) 581 581 row.add(inventoryItem.inventoryLocation) 582 582 row.add(inventoryItem.inventoryLocation.inventoryStore) -
trunk/grails-app/services/InventoryItemSearchService.groovy
r566 r616 100 100 eq("isActive", true) 101 101 if(onlyReorderEnabled) 102 eq("enableReorder ", true)102 eq("enableReorderListing", true) 103 103 leProperty("unitsInStock", "reorderPoint") 104 104 } // createCriteria
Note: See TracChangeset
for help on using the changeset viewer.