source:
trunk/grails-app/domain/InventoryLocation.groovy
@
579
Last change on this file since 579 was 562, checked in by , 14 years ago | |
---|---|
File size: 442 bytes |
Rev | Line | |
---|---|---|
[175] | 1 | class InventoryLocation { |
[116] | 2 | |
3 | InventoryStore inventoryStore | |
[175] | 4 | String name |
[116] | 5 | Boolean isActive = true |
6 | ||
[175] | 7 | static hasMany = [inventoryItems: InventoryItem] |
[116] | 8 | |
[175] | 9 | // static belongsTo = [InventoryStore] |
[116] | 10 | |
11 | static constraints = { | |
[175] | 12 | name(maxSize:50) |
[116] | 13 | } |
14 | ||
15 | String toString() { | |
[389] | 16 | "${this.name}" |
[116] | 17 | } |
[562] | 18 | |
19 | static searchable = { | |
20 | root false // only index as a component of InventoryItem. | |
21 | only = ['name'] | |
22 | } | |
23 | ||
[116] | 24 | } |
Note: See TracBrowser
for help on using the repository browser.