[84] | 1 | <html> |
---|
| 2 | <head> |
---|
| 3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 4 | <meta name="layout" content="main" /> |
---|
[196] | 5 | <title>Show Task #${taskInstance.id}</title> |
---|
[139] | 6 | <nav:resources override="true"/> |
---|
[126] | 7 | <resource:tabView skin="tabviewCustom" /> |
---|
[84] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[139] | 11 | <nav:renderSubItems group="nav"/> |
---|
[84] | 12 | </div> |
---|
| 13 | <div class="body"> |
---|
[418] | 14 | <g:render template="/shared/messages" /> |
---|
[181] | 15 | <g:if test="${taskInstance.trash}" > |
---|
| 16 | <div class="errors"> |
---|
[418] | 17 | <ul><li>This task is in the trash bin, but can be restored if required.<li><ul> |
---|
[181] | 18 | </div> |
---|
| 19 | </g:if> |
---|
[180] | 20 | <g:hasErrors bean="${taskInstance}"> |
---|
[133] | 21 | <div class="errors"> |
---|
[180] | 22 | <g:renderErrors bean="${taskInstance}" as="list" /> |
---|
[133] | 23 | </div> |
---|
| 24 | </g:hasErrors> |
---|
[126] | 25 | |
---|
[418] | 26 | <div class="tabHeader"> |
---|
[500] | 27 | <h1> |
---|
[418] | 28 | Task #${taskInstance.id} |
---|
[729] | 29 | |
---|
| 30 | <g:if test="${taskInstance.approved}" > |
---|
| 31 | <img src="${resource(dir:'images/skin',file:'cog.png')}" alt="Approved" title="Approved" /> |
---|
| 32 | </g:if> |
---|
[730] | 33 | <g:if test="${taskRecurringScheduleInstance?.enabled}" > |
---|
| 34 | <img src="${resource(dir:'images/skin',file:'arrow_refresh.png')}" alt="Recurrence Enabled" title="Recurrence Enabled" /> |
---|
| 35 | </g:if> |
---|
[729] | 36 | <g:if test="${taskInstance.taskStatus.id == 2}" > |
---|
[736] | 37 | <img src="${resource(dir:'images/skin',file:'arrow_right.png')}" alt="In Progress" title="In Progress" /> |
---|
[729] | 38 | </g:if> |
---|
[418] | 39 | <g:if test="${taskInstance.attentionFlag}" > |
---|
[728] | 40 | <img src="${resource(dir:'images/skin',file:'flag_red.png')}" alt="Attention Flag" title="Attention Flag" /> |
---|
[418] | 41 | </g:if> |
---|
| 42 | <g:if test="${taskInstance.taskStatus.id == 3}" > |
---|
[728] | 43 | <img src="${resource(dir:'images/skin',file:'tick.png')}" alt="Complete" title="Complete" /> |
---|
[418] | 44 | </g:if> |
---|
| 45 | </h1> |
---|
| 46 | ${fieldValue(bean:taskInstance, field:'description')} |
---|
[729] | 47 | <g:if test="${taskInstance.safetyRequirement}" > |
---|
| 48 | <img src="${resource(dir:'images/skin',file:'lightning.png')}" alt="Safety Requirement" title="Safety Requirement" /> |
---|
| 49 | Safety |
---|
| 50 | </g:if> |
---|
| 51 | <g:if test="${taskInstance.regulatoryRequirement}" > |
---|
| 52 | <img src="${resource(dir:'images/skin',file:'script_lightning.png')}" alt="Regulatory Requirement" title="Regulatory Requirement" /> |
---|
| 53 | Regulatory |
---|
| 54 | </g:if> |
---|
| 55 | <g:if test="${taskInstance.mandatoryRequirement}" > |
---|
| 56 | <img src="${resource(dir:'images/skin',file:'script.png')}" alt="Mandatory Requirement" title="Mandatory Requirement" /> |
---|
| 57 | Mandatory |
---|
| 58 | </g:if> |
---|
[418] | 59 | </div> |
---|
| 60 | |
---|
| 61 | <br/> |
---|
| 62 | |
---|
[131] | 63 | <richui:tabView id="tabView"> |
---|
[126] | 64 | |
---|
| 65 | <richui:tabLabels> |
---|
[418] | 66 | <richui:tabLabel selected="${showTab.task}" title="Details" /> |
---|
[574] | 67 | <g:if test="${taskProcedureExits}"> |
---|
| 68 | <richui:tabLabel selected="${showTab.procedure}" title="Procedure (!)" /> |
---|
| 69 | </g:if> |
---|
| 70 | <g:else> |
---|
| 71 | <richui:tabLabel selected="${showTab.procedure}" title="Procedure" /> |
---|
| 72 | </g:else> |
---|
| 73 | <g:if test="${taskRecurringScheduleExits}"> |
---|
| 74 | <richui:tabLabel selected="${showTab.recurrence}" title="Recurrence (!)" /> |
---|
| 75 | </g:if> |
---|
| 76 | <g:else> |
---|
| 77 | <richui:tabLabel selected="${showTab.recurrence}" title="Recurrence" /> |
---|
| 78 | </g:else> |
---|
| 79 | <g:if test="${!inventoryMovementList.isEmpty()}"> |
---|
| 80 | <richui:tabLabel selected="${showTab.inventory}" title="Inventory (${inventoryMovementList.size()})" /> |
---|
| 81 | </g:if> |
---|
| 82 | <g:else> |
---|
| 83 | <richui:tabLabel selected="${showTab.inventory}" title="Inventory (0)" /> |
---|
| 84 | </g:else> |
---|
| 85 | <g:if test="${subTaskInstanceTotal > 0}"> |
---|
| 86 | <richui:tabLabel selected="${showTab.subTasks}" title="Sub Tasks (${subTaskInstanceTotal})" /> |
---|
| 87 | </g:if> |
---|
| 88 | <g:else> |
---|
| 89 | <richui:tabLabel selected="${showTab.subTasks}" title="Sub Tasks (0)" /> |
---|
| 90 | </g:else> |
---|
[126] | 91 | </richui:tabLabels> |
---|
[131] | 92 | |
---|
[126] | 93 | <richui:tabContents> |
---|
[131] | 94 | |
---|
| 95 | <!-- Start Task tab --> |
---|
[126] | 96 | <richui:tabContent> |
---|
[153] | 97 | |
---|
[131] | 98 | <div class="dialog"> |
---|
| 99 | <table> |
---|
| 100 | <tbody> |
---|
[153] | 101 | |
---|
[244] | 102 | <g:if test="${taskInstance.parentTask}"> |
---|
| 103 | <tr class="prop"> |
---|
| 104 | <td valign="top" class="name">Parent Task:</td> |
---|
| 105 | |
---|
[431] | 106 | <td valign="top" class="value"> |
---|
| 107 | <g:link controller="taskDetailed" action="show" id="${taskInstance.parentTask.id}"> |
---|
| 108 | ${taskInstance.parentTask.encodeAsHTML()} |
---|
| 109 | </g:link> |
---|
| 110 | </td> |
---|
[244] | 111 | |
---|
| 112 | </tr> |
---|
| 113 | </g:if> |
---|
| 114 | |
---|
[131] | 115 | <tr class="prop"> |
---|
| 116 | <td valign="top" class="name">Comment:</td> |
---|
[153] | 117 | |
---|
[131] | 118 | <td valign="top" class="value">${fieldValue(bean:taskInstance, field:'comment')}</td> |
---|
[153] | 119 | |
---|
[131] | 120 | </tr> |
---|
[153] | 121 | |
---|
[131] | 122 | <tr class="prop"> |
---|
[180] | 123 | <td valign="top" class="name">Target Start:</td> |
---|
[153] | 124 | |
---|
[431] | 125 | <td valign="top" class="value"> |
---|
| 126 | <g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/> |
---|
| 127 | </td> |
---|
[153] | 128 | |
---|
[131] | 129 | </tr> |
---|
[153] | 130 | |
---|
[131] | 131 | <tr class="prop"> |
---|
[180] | 132 | <td valign="top" class="name">Target Completion:</td> |
---|
[153] | 133 | |
---|
[431] | 134 | <td valign="top" class="value"> |
---|
| 135 | <g:formatDate date="${taskInstance.targetCompletionDate}" format="EEE, dd-MMM-yyyy"/> |
---|
| 136 | </td> |
---|
[153] | 137 | |
---|
[131] | 138 | </tr> |
---|
[153] | 139 | |
---|
[131] | 140 | <tr class="prop"> |
---|
[180] | 141 | <td valign="top" class="name"> |
---|
[323] | 142 | |
---|
| 143 | <jsUtil:toggleControl toggleId="modifications" |
---|
| 144 | imageId="modificationsImg" |
---|
| 145 | closedImgUrl="${resource(dir:'images/skin',file:'bullet_toggle_plus.png')}" |
---|
| 146 | openImgUrl="${resource(dir:'images/skin',file:'bullet_toggle_minus.png')}" |
---|
| 147 | effect="fade" |
---|
| 148 | text="Modifications" |
---|
| 149 | /> |
---|
[180] | 150 | </td> |
---|
| 151 | |
---|
| 152 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 153 | <div id="modifications" style="display:none;"> |
---|
| 154 | <ul> |
---|
| 155 | <g:each var="a" in="${taskModificationList}"> |
---|
| 156 | <li>${a?.encodeAsHTML()}</li> |
---|
| 157 | </g:each> |
---|
| 158 | </ul> |
---|
| 159 | </div> |
---|
| 160 | </td> |
---|
| 161 | </tr> |
---|
| 162 | |
---|
| 163 | <tr class="prop"> |
---|
[168] | 164 | <td valign="top" class="name">Primary Asset:</td> |
---|
| 165 | |
---|
| 166 | <td valign="top" class="value"><g:link controller="assetDetailed" action="show" id="${taskInstance?.primaryAsset?.id}">${taskInstance?.primaryAsset?.encodeAsHTML()}</g:link></td> |
---|
| 167 | |
---|
| 168 | </tr> |
---|
| 169 | |
---|
| 170 | <tr class="prop"> |
---|
| 171 | <td valign="top" class="name">Associated Assets:</td> |
---|
| 172 | |
---|
| 173 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 174 | <ul> |
---|
| 175 | <g:each var="a" in="${taskInstance.associatedAssets}"> |
---|
| 176 | <li>${a?.encodeAsHTML()}</li> |
---|
| 177 | </g:each> |
---|
| 178 | </ul> |
---|
| 179 | </td> |
---|
| 180 | |
---|
| 181 | </tr> |
---|
| 182 | |
---|
| 183 | <tr class="prop"> |
---|
[180] | 184 | <td valign="top" class="name">Priority:</td> |
---|
[153] | 185 | |
---|
[131] | 186 | <td valign="top" class="value">${taskInstance?.taskPriority?.encodeAsHTML()}</td> |
---|
[153] | 187 | |
---|
[131] | 188 | </tr> |
---|
[153] | 189 | |
---|
[131] | 190 | <tr class="prop"> |
---|
[592] | 191 | <td valign="top" class="name">Positive Fault:</td> |
---|
| 192 | |
---|
| 193 | <td valign="top" class="value">${fieldValue(bean:taskInstance, field:'positiveFault')}</td> |
---|
| 194 | |
---|
| 195 | </tr> |
---|
| 196 | |
---|
| 197 | <tr class="prop"> |
---|
[244] | 198 | <td valign="top" class="name">Group:</td> |
---|
[153] | 199 | |
---|
[244] | 200 | <td valign="top" class="value">${taskInstance?.taskGroup?.encodeAsHTML()}</td> |
---|
[153] | 201 | |
---|
[131] | 202 | </tr> |
---|
[153] | 203 | |
---|
[131] | 204 | <tr class="prop"> |
---|
[244] | 205 | <td valign="top" class="name">Type:</td> |
---|
[153] | 206 | |
---|
[244] | 207 | <td valign="top" class="value">${taskInstance?.taskType?.encodeAsHTML()}</td> |
---|
[153] | 208 | |
---|
[131] | 209 | </tr> |
---|
[153] | 210 | |
---|
[131] | 211 | <tr class="prop"> |
---|
[244] | 212 | <td valign="top" class="name">Lead Person:</td> |
---|
[153] | 213 | |
---|
[244] | 214 | <td valign="top" class="value">${taskInstance?.leadPerson?.encodeAsHTML()}</td> |
---|
[153] | 215 | |
---|
[131] | 216 | </tr> |
---|
[153] | 217 | |
---|
[131] | 218 | <tr class="prop"> |
---|
[242] | 219 | <td valign="top" class="name">Assigned Groups:</td> |
---|
| 220 | |
---|
| 221 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 222 | <ul> |
---|
[253] | 223 | <g:each var="a" in="${assignedGroupList}"> |
---|
[247] | 224 | <li><g:link controller="assignedGroupDetailed" action="edit" id="${a.id}" params="['task.id':taskInstance.id]">${a?.encodeAsHTML()}</g:link></li> |
---|
[242] | 225 | </g:each> |
---|
| 226 | </ul> |
---|
[410] | 227 | <g:link controller="assignedGroupDetailed" action="create" params="['task.id':taskInstance.id]">+Add Group</g:link> |
---|
[242] | 228 | </td> |
---|
| 229 | |
---|
| 230 | </tr> |
---|
| 231 | |
---|
| 232 | |
---|
| 233 | <tr class="prop"> |
---|
[241] | 234 | <td valign="top" class="name">Assigned Persons:</td> |
---|
[153] | 235 | |
---|
[131] | 236 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 237 | <ul> |
---|
[253] | 238 | <g:each var="a" in="${assignedPersonList}"> |
---|
[249] | 239 | <li><g:link controller="assignedPersonDetailed" action="edit" id="${a.id}" params="['task.id':taskInstance.id]">${a?.encodeAsHTML()}</g:link></li> |
---|
[131] | 240 | </g:each> |
---|
| 241 | </ul> |
---|
[410] | 242 | <g:link controller="assignedPersonDetailed" action="create" params="['task.id':taskInstance?.id]">+Add Person</g:link> |
---|
[131] | 243 | </td> |
---|
[153] | 244 | |
---|
[131] | 245 | </tr> |
---|
[153] | 246 | |
---|
[131] | 247 | </tbody> |
---|
| 248 | </table> |
---|
| 249 | </div> |
---|
[153] | 250 | |
---|
[131] | 251 | <div class="buttons"> |
---|
| 252 | <g:form> |
---|
| 253 | <input type="hidden" name="id" value="${taskInstance?.id}" /> |
---|
[181] | 254 | |
---|
| 255 | <g:if test="${taskInstance.trash}" > |
---|
[736] | 256 | <span class="button"><g:actionSubmit class="restore" onclick="return confirm('Are you sure?');" value="Restore"/></span> |
---|
[181] | 257 | </g:if> |
---|
| 258 | <g:else> |
---|
| 259 | |
---|
| 260 | <g:if test="${taskInstance.taskStatus.id != 3}" > |
---|
| 261 | |
---|
[418] | 262 | <g:if test="${taskInstance.attentionFlag}" > |
---|
| 263 | <span class="button"><g:actionSubmit class="flag" value="Clear" action="clearAttentionFlag"/></span> |
---|
| 264 | </g:if> |
---|
| 265 | <g:else> |
---|
| 266 | <span class="button"><g:actionSubmit class="flag" value="Unresolved" action="setAttentionFlag"/></span> |
---|
[431] | 267 | <g:helpBalloon class="helpballoon" code="task.status.unresolved" /> |
---|
[418] | 268 | </g:else> |
---|
| 269 | |
---|
| 270 | <span class="button"><g:actionSubmit class="complete" value="Resolved" action="complete"/></span> |
---|
[431] | 271 | <g:helpBalloon class="helpballoon" code="task.status.resolved" /> |
---|
[418] | 272 | |
---|
[181] | 273 | <g:if test="${taskInstance.approved}" > |
---|
| 274 | <span class="button"><g:actionSubmit class="renegeApproval" value="Renege Approval" action="renegeApproval" /></span> |
---|
| 275 | </g:if> |
---|
| 276 | <g:else> |
---|
| 277 | <span class="button"><g:actionSubmit class="approve" value="Approve" /></span> |
---|
| 278 | </g:else> |
---|
| 279 | |
---|
| 280 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 281 | <span class="button"><g:actionSubmit class="trash" onclick="return confirm('Are you sure?');" value="Trash" /></span> |
---|
| 282 | |
---|
| 283 | </g:if> |
---|
| 284 | <g:else> |
---|
| 285 | <span class="button"><g:actionSubmit class="reopen" value="Reopen" /></span> |
---|
| 286 | </g:else> |
---|
| 287 | |
---|
| 288 | </g:else> |
---|
[131] | 289 | </g:form> |
---|
| 290 | </div> |
---|
[153] | 291 | |
---|
[191] | 292 | <br /> |
---|
[153] | 293 | |
---|
[191] | 294 | <g:if test="${entryFaultList.isEmpty()}"> |
---|
| 295 | <h1>No Faults</h1> |
---|
| 296 | <br /> |
---|
| 297 | </g:if> |
---|
| 298 | <g:else> |
---|
| 299 | <div class="list"> |
---|
| 300 | <h1>Faults</h1> |
---|
| 301 | <table> |
---|
| 302 | <thead> |
---|
| 303 | <tr> |
---|
| 304 | <th>Comment</th> |
---|
[431] | 305 | <th>Date</th> |
---|
| 306 | <th>Production</th> |
---|
[418] | 307 | <th>Down Time</th> |
---|
[191] | 308 | <th>Entered By</th> |
---|
| 309 | <th></th> |
---|
[131] | 310 | </tr> |
---|
[191] | 311 | </thead> |
---|
| 312 | <tbody> |
---|
| 313 | <g:each in="${entryFaultList}" status="i" var="entry"> |
---|
[498] | 314 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[153] | 315 | |
---|
[498] | 316 | <td style="width:65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 317 | ${entry.comment.encodeAsHTML()} |
---|
| 318 | </td> |
---|
| 319 | |
---|
| 320 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 321 | <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/> |
---|
| 322 | </td> |
---|
| 323 | |
---|
| 324 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
[431] | 325 | <g:if test="${entry.productionReference}"> |
---|
| 326 | ${entry.productionReference.encodeAsHTML()} |
---|
| 327 | </g:if> |
---|
| 328 | <g:else> |
---|
| 329 | <g:message code="default.none.text" /> |
---|
| 330 | </g:else> |
---|
| 331 | </td> |
---|
[153] | 332 | |
---|
[498] | 333 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 334 | ${entry.durationHour}:${entry.durationMinute} |
---|
| 335 | </td> |
---|
| 336 | |
---|
| 337 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 338 | ${entry.enteredBy.encodeAsHTML()} |
---|
| 339 | </td> |
---|
| 340 | |
---|
| 341 | <td class="notClickable"> |
---|
[191] | 342 | <g:link controller="entryDetailed" action="edit" id="${entry.id}"> |
---|
[736] | 343 | <img src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" title="Edit" /> |
---|
[191] | 344 | </g:link> |
---|
| 345 | </td> |
---|
[153] | 346 | |
---|
[191] | 347 | </tr> |
---|
| 348 | </g:each> |
---|
| 349 | </tbody> |
---|
| 350 | </table> |
---|
| 351 | </div> |
---|
| 352 | </g:else> |
---|
[153] | 353 | |
---|
[191] | 354 | <div class="buttons"> |
---|
| 355 | <g:form controller="entryDetailed"> |
---|
| 356 | <g:hiddenField name="taskInstance.id" value="${taskInstance?.id}" /> |
---|
| 357 | <g:hiddenField name="entryType.id" value="1" /> |
---|
| 358 | <span class="button"> |
---|
| 359 | <g:actionSubmit value="Add Fault" action="create" class="add"/> |
---|
| 360 | </span> |
---|
| 361 | </g:form> |
---|
[131] | 362 | </div> |
---|
[153] | 363 | |
---|
[131] | 364 | <br /> |
---|
[153] | 365 | |
---|
[418] | 366 | <g:if test="${entryCauseList.isEmpty()}"> |
---|
| 367 | <h1>No Causes</h1> |
---|
| 368 | <br /> |
---|
| 369 | </g:if> |
---|
| 370 | <g:else> |
---|
| 371 | <div class="list"> |
---|
| 372 | <h1>Causes</h1> |
---|
| 373 | <table> |
---|
| 374 | <thead> |
---|
| 375 | <tr> |
---|
| 376 | <th>Comment</th> |
---|
| 377 | <th>Date Done</th> |
---|
| 378 | <th>Entered By</th> |
---|
| 379 | <th></th> |
---|
| 380 | </tr> |
---|
| 381 | </thead> |
---|
| 382 | <tbody> |
---|
| 383 | <g:each in="${entryCauseList}" status="i" var="entry"> |
---|
[498] | 384 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[418] | 385 | |
---|
[498] | 386 | <td style="width:65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 387 | ${entry.comment.encodeAsHTML()} |
---|
| 388 | </td> |
---|
[418] | 389 | |
---|
[498] | 390 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 391 | <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/> |
---|
| 392 | </td> |
---|
| 393 | |
---|
| 394 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 395 | ${entry.enteredBy.encodeAsHTML()} |
---|
| 396 | </td> |
---|
| 397 | |
---|
| 398 | <td class="notClickable"> |
---|
[418] | 399 | <g:link controller="entryDetailed" action="edit" id="${entry.id}"> |
---|
[736] | 400 | <img src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" title="Edit" /> |
---|
[418] | 401 | </g:link> |
---|
| 402 | </td> |
---|
| 403 | |
---|
| 404 | </tr> |
---|
| 405 | </g:each> |
---|
| 406 | </tbody> |
---|
| 407 | </table> |
---|
| 408 | </div> |
---|
| 409 | </g:else> |
---|
| 410 | |
---|
| 411 | <div class="buttons"> |
---|
| 412 | <g:form controller="entryDetailed"> |
---|
| 413 | <g:hiddenField name="taskInstance.id" value="${taskInstance?.id}" /> |
---|
| 414 | <g:hiddenField name="entryType.id" value="2" /> |
---|
| 415 | <span class="button"> |
---|
| 416 | <g:actionSubmit value="Add Cause" action="create" class="add"/> |
---|
| 417 | </span> |
---|
| 418 | </g:form> |
---|
| 419 | </div> |
---|
| 420 | |
---|
| 421 | <br /> |
---|
| 422 | |
---|
[191] | 423 | <g:if test="${entryWorkDoneList.isEmpty()}"> |
---|
| 424 | <h1>No Work Done</h1> |
---|
| 425 | <br /> |
---|
| 426 | </g:if> |
---|
| 427 | <g:else> |
---|
| 428 | <div class="list"> |
---|
| 429 | <h1>Work Done</h1> |
---|
| 430 | <table> |
---|
| 431 | <thead> |
---|
| 432 | <tr> |
---|
| 433 | <th>Comment</th> |
---|
| 434 | <th>Date Done</th> |
---|
| 435 | <th>Duration</th> |
---|
| 436 | <th>Entered By</th> |
---|
| 437 | <th></th> |
---|
| 438 | </tr> |
---|
| 439 | </thead> |
---|
| 440 | <tbody> |
---|
| 441 | <g:each in="${entryWorkDoneList}" status="i" var="entry"> |
---|
[498] | 442 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[191] | 443 | |
---|
[498] | 444 | <td width="65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 445 | ${entry.comment.encodeAsHTML()} |
---|
| 446 | </td> |
---|
| 447 | |
---|
| 448 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 449 | <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/> |
---|
| 450 | </td> |
---|
| 451 | |
---|
| 452 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 453 | ${entry.durationHour}:${entry.durationMinute} |
---|
| 454 | </td> |
---|
| 455 | |
---|
| 456 | <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> |
---|
| 457 | ${entry.enteredBy.encodeAsHTML()} |
---|
| 458 | </td> |
---|
[191] | 459 | |
---|
[498] | 460 | <td class="notClickable"> |
---|
[191] | 461 | <g:link controller="entryDetailed" action="edit" id="${entry.id}"> |
---|
[736] | 462 | <img src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" title="Edit" /> |
---|
[191] | 463 | </g:link> |
---|
| 464 | </td> |
---|
| 465 | |
---|
| 466 | </tr> |
---|
| 467 | </g:each> |
---|
| 468 | </tbody> |
---|
| 469 | </table> |
---|
| 470 | </div> |
---|
| 471 | </g:else> |
---|
| 472 | |
---|
[131] | 473 | <div class="buttons"> |
---|
| 474 | <g:form controller="entryDetailed"> |
---|
[191] | 475 | <g:hiddenField name="taskInstance.id" value="${taskInstance?.id}" /> |
---|
[418] | 476 | <g:hiddenField name="entryType.id" value="3" /> |
---|
[131] | 477 | <span class="button"> |
---|
[191] | 478 | <g:actionSubmit value="Add Work Done" action="create" class="add"/> |
---|
[131] | 479 | </span> |
---|
| 480 | </g:form> |
---|
| 481 | </div> |
---|
| 482 | </richui:tabContent> |
---|
| 483 | <!-- End Task tab --> |
---|
[126] | 484 | |
---|
[137] | 485 | |
---|
[131] | 486 | <!-- Start Task Procedure tab--> |
---|
| 487 | <richui:tabContent> |
---|
[133] | 488 | <g:if test="${!taskProcedureExits}"> |
---|
[153] | 489 | <br /> |
---|
| 490 | No Procedure linked. |
---|
| 491 | <br /> |
---|
| 492 | <br /> |
---|
[134] | 493 | <g:form controller="taskProcedureDetailed" > |
---|
[203] | 494 | <g:hiddenField name="taskInstance.id" value="${taskInstance?.id}" /> |
---|
[133] | 495 | |
---|
| 496 | <div class="buttons"> |
---|
| 497 | <span class="button"> |
---|
[175] | 498 | <g:actionSubmit value="New" action="create" class="add"/> |
---|
[133] | 499 | </span> |
---|
| 500 | <span class="button"> |
---|
[175] | 501 | <g:actionSubmit value="Search" action="search" class="search"/> |
---|
[133] | 502 | </span> |
---|
| 503 | </div> |
---|
[134] | 504 | |
---|
[133] | 505 | </g:form> |
---|
[126] | 506 | |
---|
[133] | 507 | </g:if> |
---|
| 508 | <g:else> |
---|
[153] | 509 | <div class="dialog"> |
---|
[133] | 510 | <table> |
---|
| 511 | <tbody> |
---|
[153] | 512 | |
---|
[133] | 513 | <tr class="prop"> |
---|
| 514 | <td valign="top" class="name">Procedure Id:</td> |
---|
[153] | 515 | |
---|
[133] | 516 | <td valign="top" class="value">${fieldValue(bean:taskProcedureInstance, field:'id')}</td> |
---|
[153] | 517 | |
---|
[133] | 518 | </tr> |
---|
[153] | 519 | |
---|
[133] | 520 | </tbody> |
---|
| 521 | </table> |
---|
| 522 | </div> |
---|
| 523 | <div class="buttons"> |
---|
| 524 | <g:form controller="taskProcedureDetailed"> |
---|
| 525 | <input type="hidden" name="id" value="${taskProcedureInstance?.id}" /> |
---|
| 526 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
[153] | 527 | </g:form> |
---|
[133] | 528 | </div> |
---|
[126] | 529 | |
---|
[153] | 530 | <div class="list"> |
---|
| 531 | <table> |
---|
| 532 | <thead> |
---|
| 533 | <tr> |
---|
| 534 | <th>Step</th> |
---|
| 535 | <th>Description</th> |
---|
[474] | 536 | <th>Reasoning</th> |
---|
| 537 | <th>Sub Item</th> |
---|
[153] | 538 | </tr> |
---|
| 539 | </thead> |
---|
| 540 | <tbody> |
---|
| 541 | <g:each in="${maintenanceActionList}" status="i" var="maintenanceAction"> |
---|
| 542 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
---|
| 543 | |
---|
| 544 | <td valign="top" class="name"> |
---|
[498] | 545 | ${fieldValue(bean:maintenanceAction, field:'procedureStepNumber')} |
---|
[153] | 546 | </td> |
---|
| 547 | |
---|
| 548 | <td valign="top" style="text-align:left;" class="value"> |
---|
[498] | 549 | ${fieldValue(bean:maintenanceAction, field:'description')} |
---|
[153] | 550 | </td> |
---|
| 551 | |
---|
[474] | 552 | <td valign="top" style="text-align:left;" class="value"> |
---|
[498] | 553 | ${fieldValue(bean:maintenanceAction, field:'reasoning')} |
---|
[474] | 554 | </td> |
---|
| 555 | |
---|
| 556 | <td valign="top" style="text-align:left;" class="value"> |
---|
[498] | 557 | ${fieldValue(bean:maintenanceAction, field:'assetSubItem')} |
---|
[474] | 558 | </td> |
---|
| 559 | |
---|
[153] | 560 | </tr> |
---|
| 561 | </g:each> |
---|
| 562 | |
---|
| 563 | </tbody> |
---|
| 564 | </table> |
---|
| 565 | </div> |
---|
| 566 | |
---|
[133] | 567 | </g:else> |
---|
| 568 | |
---|
[131] | 569 | </richui:tabContent> |
---|
| 570 | <!-- End Task Procedure tab--> |
---|
[126] | 571 | |
---|
[131] | 572 | <!-- Start Task Recurrence tab --> |
---|
| 573 | <richui:tabContent> |
---|
[134] | 574 | |
---|
| 575 | <g:if test="${!taskRecurringScheduleExits}"> |
---|
[153] | 576 | <br /> |
---|
| 577 | No Recurring Schedule. |
---|
| 578 | <br /> |
---|
| 579 | <br /> |
---|
[134] | 580 | <g:form controller="taskRecurringScheduleDetailed" > |
---|
[203] | 581 | <g:hiddenField name="task.id" value="${taskInstance.id}" /> |
---|
[134] | 582 | |
---|
| 583 | <div class="buttons"> |
---|
| 584 | <span class="button"> |
---|
[736] | 585 | <g:actionSubmit value="Add" action="create" class="add" /> |
---|
[134] | 586 | </span> |
---|
| 587 | </div> |
---|
| 588 | |
---|
| 589 | </g:form> |
---|
| 590 | |
---|
| 591 | </g:if> |
---|
| 592 | <g:else> |
---|
[153] | 593 | |
---|
| 594 | <div class="dialog"> |
---|
| 595 | <table> |
---|
| 596 | <tbody> |
---|
| 597 | <tr class="prop"> |
---|
| 598 | <td valign="top" class="name">Recurring Schedule:</td> |
---|
| 599 | |
---|
| 600 | <td valign="top" class="value">${taskRecurringScheduleInstance.encodeAsHTML()}</td> |
---|
[137] | 601 | </tr> |
---|
[153] | 602 | |
---|
[137] | 603 | <tr class="prop"> |
---|
[445] | 604 | <td valign="top" class="name">Enabled:</td> |
---|
| 605 | |
---|
| 606 | <td valign="top" class="value">${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')}</td> |
---|
| 607 | </tr> |
---|
| 608 | |
---|
| 609 | <tr class="prop"> |
---|
[199] | 610 | <td valign="top" class="name">Next Generation Date:</td> |
---|
[153] | 611 | |
---|
| 612 | <td valign="top" class="value"> |
---|
[199] | 613 | <g:formatDate date="${taskRecurringScheduleInstance.nextGenerationDate}" format="EEE, dd-MMM-yyyy"/> |
---|
[153] | 614 | </td> |
---|
| 615 | </tr> |
---|
| 616 | |
---|
| 617 | <tr class="prop"> |
---|
[137] | 618 | <td valign="top" class="name">Generate Ahead:</td> |
---|
[153] | 619 | |
---|
[137] | 620 | <td valign="top" class="value"> |
---|
[199] | 621 | ${taskRecurringScheduleInstance?.generateAhead} ${Period.get(1).encodeAsHTML()} |
---|
[137] | 622 | </td> |
---|
| 623 | </tr> |
---|
[153] | 624 | |
---|
| 625 | <tr class="prop"> |
---|
[199] | 626 | <td valign="top" class="name">Next Target Start Date:</td> |
---|
[153] | 627 | |
---|
| 628 | <td valign="top" class="value"> |
---|
| 629 | <g:formatDate date="${taskRecurringScheduleInstance.nextTargetStartDate}" format="EEE, dd-MMM-yyyy"/> |
---|
| 630 | </td> |
---|
| 631 | </tr> |
---|
| 632 | |
---|
| 633 | <tr class="prop"> |
---|
[199] | 634 | <td valign="top" class="name">Task Duration:</td> |
---|
[153] | 635 | |
---|
[137] | 636 | <td valign="top" class="value"> |
---|
[199] | 637 | ${taskRecurringScheduleInstance?.taskDuration} ${taskRecurringScheduleInstance?.taskDurationPeriod} |
---|
[137] | 638 | </td> |
---|
| 639 | </tr> |
---|
[153] | 640 | |
---|
[137] | 641 | <tr class="prop"> |
---|
[199] | 642 | <td valign="top" class="name">Next Target Completion Date:</td> |
---|
[153] | 643 | |
---|
[137] | 644 | <td valign="top" class="value"> |
---|
[199] | 645 | <g:formatDate date="${taskRecurringScheduleInstance.nextTargetCompletionDate}" format="EEE, dd-MMM-yyyy"/> |
---|
[137] | 646 | </td> |
---|
| 647 | </tr> |
---|
[153] | 648 | |
---|
| 649 | </tbody> |
---|
| 650 | </table> |
---|
| 651 | </div> |
---|
[134] | 652 | <div class="buttons"> |
---|
| 653 | <g:form controller="taskRecurringScheduleDetailed"> |
---|
[135] | 654 | <input type="hidden" name="id" value="${taskRecurringScheduleInstance?.id}" /> |
---|
[134] | 655 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
[199] | 656 | <span class="button"><g:actionSubmit class="go" value="Show" /></span> |
---|
[153] | 657 | </g:form> |
---|
[134] | 658 | </div> |
---|
[153] | 659 | |
---|
| 660 | </g:else> |
---|
[131] | 661 | </richui:tabContent> |
---|
| 662 | <!-- End Task Recurrence tab --> |
---|
[126] | 663 | |
---|
[131] | 664 | <!-- Start Inventory tab --> |
---|
| 665 | <richui:tabContent> |
---|
[175] | 666 | |
---|
| 667 | <g:if test="${inventoryMovementList.isEmpty()}"> |
---|
| 668 | <br /> |
---|
[225] | 669 | No Inventory Movements. |
---|
[175] | 670 | <br /> |
---|
| 671 | <br /> |
---|
| 672 | </g:if> |
---|
| 673 | <g:else> |
---|
| 674 | <div class="list"> |
---|
| 675 | <table> |
---|
| 676 | <thead> |
---|
| 677 | <tr> |
---|
| 678 | <th>Inventory Item</th> |
---|
| 679 | <th>Quantity</th> |
---|
| 680 | <th>Movement Type</th> |
---|
| 681 | <th>Date</th> |
---|
| 682 | <th></th> |
---|
| 683 | </tr> |
---|
| 684 | </thead> |
---|
| 685 | <tbody> |
---|
| 686 | <g:each in="${inventoryMovementList}" status="i" var="inventoryMovementInstance"> |
---|
[498] | 687 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[175] | 688 | |
---|
[498] | 689 | <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'> |
---|
| 690 | ${fieldValue(bean:inventoryMovementInstance, field:'inventoryItem')} |
---|
| 691 | </td> |
---|
| 692 | |
---|
| 693 | <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'> |
---|
| 694 | ${fieldValue(bean:inventoryMovementInstance, field:'quantity')} |
---|
| 695 | </td> |
---|
| 696 | |
---|
| 697 | <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'> |
---|
| 698 | ${fieldValue(bean:inventoryMovementInstance, field:'inventoryMovementType')} |
---|
| 699 | </td> |
---|
| 700 | |
---|
| 701 | <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'> |
---|
| 702 | <g:formatDate date="${inventoryMovementInstance.date}" format="EEE, dd-MMM-yyyy"/> |
---|
| 703 | </td> |
---|
| 704 | |
---|
| 705 | <td class="notClickable"> |
---|
[175] | 706 | <g:link controller="inventoryMovementDetailed" action="show" id="${inventoryMovementInstance.id}"> |
---|
[736] | 707 | <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" title="Show" /> |
---|
[175] | 708 | </g:link> |
---|
| 709 | </td> |
---|
| 710 | |
---|
| 711 | </tr> |
---|
| 712 | </g:each> |
---|
| 713 | </tbody> |
---|
| 714 | </table> |
---|
| 715 | </div> |
---|
| 716 | </g:else> |
---|
| 717 | |
---|
[225] | 718 | <g:form controller="inventoryItemDetailed" > |
---|
| 719 | <g:hiddenField name="task.id" value="${taskInstance?.id}" /> |
---|
[175] | 720 | <div class="buttons"> |
---|
| 721 | <g:if test="${!inventoryMovementList.isEmpty()}"> |
---|
| 722 | Results: ${inventoryMovementList.size()} |
---|
| 723 | <br /> |
---|
| 724 | </g:if> |
---|
| 725 | <span class="button"> |
---|
[736] | 726 | <g:actionSubmit action="findInventoryItemForMovement" class="add" value="Add" /> |
---|
[175] | 727 | </span> |
---|
| 728 | </div> |
---|
| 729 | </g:form> |
---|
| 730 | |
---|
[131] | 731 | </richui:tabContent> |
---|
| 732 | <!-- End Inventory tab --> |
---|
[126] | 733 | |
---|
[153] | 734 | <!-- Start Sub Task tab --> |
---|
[131] | 735 | <richui:tabContent> |
---|
[574] | 736 | <g:if test="${subTaskInstanceTotal > 0}"> |
---|
[153] | 737 | <div class="list"> |
---|
| 738 | <table> |
---|
| 739 | <thead> |
---|
| 740 | <tr> |
---|
[134] | 741 | |
---|
[153] | 742 | <th>Id</th> |
---|
| 743 | |
---|
| 744 | <th>Target Start Date</th> |
---|
| 745 | |
---|
| 746 | <th>Description</th> |
---|
| 747 | |
---|
| 748 | <th>Lead Person</th> |
---|
| 749 | |
---|
| 750 | <th>Task Priority</th> |
---|
| 751 | |
---|
| 752 | <th>Task Status</th> |
---|
| 753 | |
---|
| 754 | <th></th> |
---|
| 755 | |
---|
| 756 | </tr> |
---|
| 757 | </thead> |
---|
| 758 | <tbody> |
---|
| 759 | <g:each in="${subTaskInstanceList}" status="i" var="subTaskInstance"> |
---|
[498] | 760 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[153] | 761 | |
---|
[498] | 762 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 763 | ${fieldValue(bean:subTaskInstance, field:'id')} |
---|
| 764 | </td> |
---|
[153] | 765 | |
---|
[498] | 766 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 767 | <g:formatDate date="${subTaskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/> |
---|
| 768 | </td> |
---|
[153] | 769 | |
---|
[498] | 770 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 771 | ${fieldValue(bean:subTaskInstance, field:'description')} |
---|
| 772 | </td> |
---|
[153] | 773 | |
---|
| 774 | |
---|
[498] | 775 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 776 | ${fieldValue(bean:subTaskInstance, field:'leadPerson')} |
---|
| 777 | </td> |
---|
[153] | 778 | |
---|
[498] | 779 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 780 | ${fieldValue(bean:subTaskInstance, field:'taskPriority')} |
---|
| 781 | </td> |
---|
[153] | 782 | |
---|
[498] | 783 | <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> |
---|
| 784 | ${fieldValue(bean:subTaskInstance, field:'taskStatus')} |
---|
| 785 | </td> |
---|
[153] | 786 | |
---|
[498] | 787 | <td class="notClickable"> |
---|
[153] | 788 | <g:link action="show" id="${subTaskInstance.id}"> |
---|
[736] | 789 | <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" title="Show" /> |
---|
[153] | 790 | </g:link> |
---|
| 791 | </td> |
---|
| 792 | |
---|
| 793 | </tr> |
---|
| 794 | </g:each> |
---|
| 795 | </tbody> |
---|
| 796 | </table> |
---|
| 797 | </div> |
---|
| 798 | |
---|
| 799 | <div class="buttons"> |
---|
| 800 | <g:form> |
---|
[196] | 801 | <g:hiddenField name="id" value="${taskInstance?.id}" /> |
---|
[153] | 802 | <g:if test="${subTaskInstanceTotal > subTaskInstanceMax}"> |
---|
| 803 | Showing ${subTaskInstanceMax} of ${subTaskInstanceTotal} |
---|
| 804 | <br /> |
---|
| 805 | </g:if> |
---|
| 806 | <g:else> |
---|
| 807 | Total ${subTaskInstanceTotal} |
---|
| 808 | <br /> |
---|
| 809 | </g:else> |
---|
[196] | 810 | <span class="button"><g:actionSubmit action="listSubTasks" class="table" value="List" /></span> |
---|
[257] | 811 | <span class="button"><g:actionSubmit action="createSubTask" class="save" value="Create" onclick="return confirm('${g.message(code: 'sub.task.create.confirm')}');" /></span> |
---|
[153] | 812 | </g:form> |
---|
| 813 | </div> |
---|
| 814 | |
---|
| 815 | </g:if> |
---|
| 816 | <g:else> |
---|
| 817 | <br /> |
---|
| 818 | No Sub Tasks. |
---|
[196] | 819 | <br /> |
---|
| 820 | <br /> |
---|
| 821 | |
---|
| 822 | <div class="buttons"> |
---|
| 823 | <g:form> |
---|
| 824 | <g:hiddenField name="id" value="${taskInstance?.id}" /> |
---|
[257] | 825 | <span class="button"><g:actionSubmit action="createSubTask" class="save" value="Create" onclick="return confirm('${g.message(code: 'sub.task.create.confirm')}');" /></span> |
---|
[196] | 826 | </g:form> |
---|
| 827 | </div> |
---|
[153] | 828 | </g:else> |
---|
| 829 | |
---|
[131] | 830 | </richui:tabContent> |
---|
| 831 | <!-- End Sub Task tab --> |
---|
[126] | 832 | |
---|
[131] | 833 | </richui:tabContents> |
---|
| 834 | </richui:tabView> |
---|
[153] | 835 | |
---|
[418] | 836 | </div> <!--body--> |
---|
[84] | 837 | </body> |
---|
| 838 | </html> |
---|