source:
trunk/grails-app/domain/StoredItem.groovy
@
127
| Last change on this file since 127 was 125, checked in by , 17 years ago | |
|---|---|
| File size: 334 bytes | |
| Line | |
|---|---|
| 1 | class StoredItem { |
| 2 | |
| 3 | InventoryItem inventoryItem |
| 4 | StoreLocation storeLocation |
| 5 | Integer quantity = 0 |
| 6 | |
| 7 | static belongsTo = [InventoryItem] |
| 8 | |
| 9 | static constraints = { |
| 10 | quantity(minSize:0) |
| 11 | } |
| 12 | |
| 13 | String toString() { |
| 14 | "${this.quantity} item(s) at ${storeLocation} in ${storeLocation.inventoryStore}" |
| 15 | } |
| 16 | } |
Note: See TracBrowser
for help on using the repository browser.
