Changeset 397 for trunk/grails-app/domain
- Timestamp:
- Feb 22, 2010, 6:29:13 PM (15 years ago)
- Location:
- trunk/grails-app/domain
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Manufacturer.groovy
r373 r397 5 5 boolean isActive = true 6 6 7 static hasMany = [inventoryItems: InventoryItem ]7 static hasMany = [inventoryItems: InventoryItem, addresses: Address] 8 8 9 9 static belongsTo = [InventoryItem] -
trunk/grails-app/domain/Person.groovy
r343 r397 5 5 taskModifications: TaskModification, 6 6 entries: Entry, 7 tasks: Task] 7 tasks: Task, 8 addresses: Address] 8 9 9 10 static belongsTo = [Authority] -
trunk/grails-app/domain/Site.groovy
r332 r397 8 8 static hasMany = [sections: Section, 9 9 siteExtendedAttributes: SiteExtendedAttribute, 10 inventoryStores: InventoryStore] 10 inventoryStores: InventoryStore, 11 addresses: Address] 11 12 12 13 // static belongsTo = [] -
trunk/grails-app/domain/Supplier.groovy
r373 r397 5 5 boolean isActive = true 6 6 7 static hasMany = [inventoryItems: InventoryItem ]7 static hasMany = [inventoryItems: InventoryItem, addresses: Address] 8 8 9 9 static belongsTo = [InventoryItem]
Note: See TracChangeset
for help on using the changeset viewer.