Changeset 405 for trunk/grails-app/domain
- Timestamp:
- Feb 23, 2010, 10:14:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/InventoryItem.groovy
r182 r405 9 9 String description = "" 10 10 String manufacturersPartNumber 11 BigDecimal estimatedUnitPriceAmount 12 Currency estimatedUnitPriceCurrency 11 13 String suppliersPartNumber 12 14 Integer unitsInStock = 0 … … 36 38 unitsInStock(min:0) 37 39 unitOfMeasure() 40 estimatedUnitPriceAmount(nullable:true, max: new BigDecimal(999999999999)) 41 estimatedUnitPriceCurrency(nullable:true) 38 42 reorderPoint() 39 43 enableReorder()
Note: See TracChangeset
for help on using the changeset viewer.