- Timestamp:
- Apr 21, 2011, 5:57:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/purchaseOrders/grails-app/domain/InventoryItemPurchase.groovy
r891 r892 1 1 class InventoryItemPurchase { 2 2 3 PurchaseOrder purchaseOrder 3 4 Person enteredBy 4 5 Person lastUpdatedBy … … 14 15 15 16 Integer quantity 16 PurchaseOrder purchaseOrder17 17 BigDecimal orderValueAmount 18 18 Currency orderValueCurrency … … 29 29 static constraints = { 30 30 quantity(min:0) 31 /// @todo: check constraints. 31 32 // purchaseOrderNumber(blank:false, maxSize:50, validator: {val, obj -> 32 33 // // For orders the purchaseOrderNumber must be unique for an inventoryItem.
Note: See TracChangeset
for help on using the changeset viewer.