source:
trunk/grails-app/domain/StoredItem.groovy
@
144
Last change on this file since 144 was 125, checked in by , 16 years ago | |
---|---|
File size: 334 bytes |
Rev | Line | |
---|---|---|
[116] | 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() { | |
[125] | 14 | "${this.quantity} item(s) at ${storeLocation} in ${storeLocation.inventoryStore}" |
[116] | 15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.