Ignore:
Timestamp:
May 4, 2009, 1:59:11 PM (15 years ago)
Author:
gav
Message:

Detail controller and views for Asset, AssetExtendedAttribute?, PlannedMaintenance?, MaintenanceAction?, RecurringSchedule?, SystemSection?.
Some minor work on Task controller and views.
Change PlannedMaintenance? relationship, adjust ERD, Bootstrap and Domain classes to suite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/AssetExtendedAttribute.groovy

    r122 r124  
    11class AssetExtendedAttribute {
    22
    3     AssetType assetType
     3    Asset asset
    44    AssetExtendedAttributeType assetExtendedAttributeType
    55
     
    99//     static hasMany = []
    1010
    11     static belongsTo = [AssetType]
     11    static belongsTo = [Asset]
    1212
    1313//     static constraints = {
     
    1616
    1717    String toString() {
    18         "${this.value}"
     18        "${assetExtendedAttributeType.name}: ${this.value}"
    1919    }
    2020}
Note: See TracChangeset for help on using the changeset viewer.