- Timestamp:
- May 3, 2011, 5:59:04 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/InventoryItem.groovy
r726 r919 11 11 BigDecimal estimatedUnitPriceAmount 12 12 Currency estimatedUnitPriceCurrency 13 String suppliersPartNumber 13 String suppliersPartNumber = "" 14 14 Integer unitsInStock = 0 15 15 Integer reorderPoint = 0 … … 24 24 25 25 static hasMany = [spareFor: Asset, 26 27 26 inventoryMovements: InventoryMovement, 27 alternateSuppliers: Supplier] 28 28 29 29 // static belongsTo = [] … … 46 46 estimatedUnitPriceAmount(nullable:true, max: new BigDecimal(1000000000000)) 47 47 estimatedUnitPriceCurrency(nullable:true) 48 suppliersPartNumber(blank:true, nullable:true,maxSize:50)48 suppliersPartNumber(blank:true, maxSize:50) 49 49 preferredSupplier(nullable:true) 50 50 }
Note: See TracChangeset
for help on using the changeset viewer.