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/MaintenanceAction.groovy

    r122 r124  
    88    SubAssembly subAssembly
    99    ComponentItem componentItem
    10     String description
     10    String maintenanceAction
    1111    String reasoning = ""
     12    Integer pmStepNumber
    1213    boolean isActive = true
    1314
     
    2324        subAssembly(blank:true, nullable:true)
    2425        componentItem(blank:true, nullable:true)
     26        pmStepNumber(blank:true, nullable:true)
    2527    }
    2628
    2729    String toString() {
    28         "${this.description}"
     30        "${this.action}"
    2931    }
    3032}
Note: See TracChangeset for help on using the changeset viewer.