source: trunk/grails-app/domain/InventoryLocation.groovy @ 175

Last change on this file since 175 was 175, checked in by gav, 14 years ago

Substantial refactor of the Inventory domain.
InventoryItems can now be added to tasks, no quantity adjustments done yet.
Removed StoredItem and with it the ability to store an inventoryItem in multiple places, just too complex right now.
Svn move StoreLocation to InventoryLocation.

File size: 318 bytes
Line 
1class InventoryLocation {
2
3    InventoryStore inventoryStore
4    String name
5    Boolean isActive = true
6
7    static hasMany = [inventoryItems: InventoryItem]
8
9//     static belongsTo = [InventoryStore]
10
11    static constraints = {
12        name(maxSize:50)
13    }
14
15    String toString() {
16        "${this.name}"
17    }
18}
Note: See TracBrowser for help on using the repository browser.