- Timestamp:
- Jan 25, 2011, 7:00:23 PM (14 years ago)
- Location:
- branches/features/taskProcedureRework/grails-app
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/taskProcedureRework/grails-app/domain/MaintenanceAction.groovy
r268 r756 10 10 String reasoning = "" 11 11 Integer procedureStepNumber 12 boolean isActive = true13 12 14 13 // static hasMany = [] 15 14 16 // static belongsTo = []15 static belongsTo = [TaskProcedure] 17 16 18 17 static constraints = { … … 22 21 maintenancePolicy(nullable:true) 23 22 procedureStepNumber(nullable:true) 24 description( )23 description(blank:false) 25 24 reasoning() 26 isActive()27 25 } 28 26 -
branches/features/taskProcedureRework/grails-app/views/maintenanceActionDetailed/create.gsp
r410 r756 90 90 <tr class="prop"> 91 91 <td valign="top" class="name"> 92 <label for="isActive">Is Active:</label>93 </td>94 <td valign="top" class="value ${hasErrors(bean:maintenanceActionInstance,field:'isActive','errors')}">95 <g:checkBox name="isActive" value="${maintenanceActionInstance?.isActive}" ></g:checkBox>96 </td>97 </tr>98 99 <tr class="prop">100 <td valign="top" class="name">101 92 <label for="taskProcedure">Task Procedure:</label> 102 93 </td> -
branches/features/taskProcedureRework/grails-app/views/maintenanceActionDetailed/edit.gsp
r368 r756 92 92 <tr class="prop"> 93 93 <td valign="top" class="name"> 94 <label for="isActive">Is Active:</label>95 </td>96 <td valign="top" class="value ${hasErrors(bean:maintenanceActionInstance,field:'isActive','errors')}">97 <g:checkBox name="isActive" value="${maintenanceActionInstance?.isActive}" ></g:checkBox>98 </td>99 </tr>100 101 <tr class="prop">102 <td valign="top" class="name">103 94 <label for="taskProcedure">Task Procedure:</label> 104 95 </td> -
branches/features/taskProcedureRework/grails-app/views/maintenanceActionDetailed/show.gsp
r368 r756 77 77 78 78 <tr class="prop"> 79 <td valign="top" class="name">Is Active:</td>80 81 <td valign="top" class="value">${fieldValue(bean:maintenanceActionInstance, field:'isActive')}</td>82 83 </tr>84 85 <tr class="prop">86 79 <td valign="top" class="name">Task Procedure:</td> 87 80
Note: See TracChangeset
for help on using the changeset viewer.