| 1 | |
|---|
| 2 | |
|---|
| 3 | <html> |
|---|
| 4 | <head> |
|---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
|---|
| 6 | <meta name="layout" content="main" /> |
|---|
| 7 | <title>Create TaskRecurringSchedule</title> |
|---|
| 8 | </head> |
|---|
| 9 | <body> |
|---|
| 10 | <div class="nav"> |
|---|
| 11 | <span class="menuButton"><g:link class="list" action="list">TaskRecurringSchedule List</g:link></span> |
|---|
| 12 | </div> |
|---|
| 13 | <div class="body"> |
|---|
| 14 | <h1>Create TaskRecurringSchedule</h1> |
|---|
| 15 | <g:if test="${flash.message}"> |
|---|
| 16 | <div class="message">${flash.message}</div> |
|---|
| 17 | </g:if> |
|---|
| 18 | <g:hasErrors bean="${taskRecurringScheduleInstance}"> |
|---|
| 19 | <div class="errors"> |
|---|
| 20 | <g:renderErrors bean="${taskRecurringScheduleInstance}" as="list" /> |
|---|
| 21 | </div> |
|---|
| 22 | </g:hasErrors> |
|---|
| 23 | <g:form action="save" method="post" > |
|---|
| 24 | <div class="dialog"> |
|---|
| 25 | <table> |
|---|
| 26 | <tbody> |
|---|
| 27 | |
|---|
| 28 | <tr class="prop"> |
|---|
| 29 | <td valign="top" class="name"> |
|---|
| 30 | <label for="recurEvery">Recur Every:</label> |
|---|
| 31 | </td> |
|---|
| 32 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'recurEvery','errors')}"> |
|---|
| 33 | <input type="text" id="recurEvery" name="recurEvery" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'recurEvery')}" /> |
|---|
| 34 | </td> |
|---|
| 35 | </tr> |
|---|
| 36 | |
|---|
| 37 | <tr class="prop"> |
|---|
| 38 | <td valign="top" class="name"> |
|---|
| 39 | <label for="taskDuration">Task Duration:</label> |
|---|
| 40 | </td> |
|---|
| 41 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'taskDuration','errors')}"> |
|---|
| 42 | <input type="text" id="taskDuration" name="taskDuration" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'taskDuration')}" /> |
|---|
| 43 | </td> |
|---|
| 44 | </tr> |
|---|
| 45 | |
|---|
| 46 | <tr class="prop"> |
|---|
| 47 | <td valign="top" class="name"> |
|---|
| 48 | <label for="generateAhead">Generate Ahead:</label> |
|---|
| 49 | </td> |
|---|
| 50 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'generateAhead','errors')}"> |
|---|
| 51 | <input type="text" id="generateAhead" name="generateAhead" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'generateAhead')}" /> |
|---|
| 52 | </td> |
|---|
| 53 | </tr> |
|---|
| 54 | |
|---|
| 55 | <tr class="prop"> |
|---|
| 56 | <td valign="top" class="name"> |
|---|
| 57 | <label for="lastGeneratedDate">Last Generated Date:</label> |
|---|
| 58 | </td> |
|---|
| 59 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'lastGeneratedDate','errors')}"> |
|---|
| 60 | <g:datePicker name="lastGeneratedDate" value="${taskRecurringScheduleInstance?.lastGeneratedDate}" precision="minute" noSelection="['':'']"></g:datePicker> |
|---|
| 61 | </td> |
|---|
| 62 | </tr> |
|---|
| 63 | |
|---|
| 64 | <tr class="prop"> |
|---|
| 65 | <td valign="top" class="name"> |
|---|
| 66 | <label for="lastGeneratedSubTask">Last Generated Sub Task:</label> |
|---|
| 67 | </td> |
|---|
| 68 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'lastGeneratedSubTask','errors')}"> |
|---|
| 69 | <g:select optionKey="id" from="${Task.list()}" name="lastGeneratedSubTask.id" value="${taskRecurringScheduleInstance?.lastGeneratedSubTask?.id}" noSelection="['null':'']"></g:select> |
|---|
| 70 | </td> |
|---|
| 71 | </tr> |
|---|
| 72 | |
|---|
| 73 | <tr class="prop"> |
|---|
| 74 | <td valign="top" class="name"> |
|---|
| 75 | <label for="generateAheadPeriod">Generate Ahead Period:</label> |
|---|
| 76 | </td> |
|---|
| 77 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'generateAheadPeriod','errors')}"> |
|---|
| 78 | <g:select optionKey="id" from="${Period.list()}" name="generateAheadPeriod.id" value="${taskRecurringScheduleInstance?.generateAheadPeriod?.id}" ></g:select> |
|---|
| 79 | </td> |
|---|
| 80 | </tr> |
|---|
| 81 | |
|---|
| 82 | <tr class="prop"> |
|---|
| 83 | <td valign="top" class="name"> |
|---|
| 84 | <label for="isEnabled">Is Enabled:</label> |
|---|
| 85 | </td> |
|---|
| 86 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'isEnabled','errors')}"> |
|---|
| 87 | <g:checkBox name="isEnabled" value="${taskRecurringScheduleInstance?.isEnabled}" ></g:checkBox> |
|---|
| 88 | </td> |
|---|
| 89 | </tr> |
|---|
| 90 | |
|---|
| 91 | <tr class="prop"> |
|---|
| 92 | <td valign="top" class="name"> |
|---|
| 93 | <label for="nextGenerationDate">Next Generation Date:</label> |
|---|
| 94 | </td> |
|---|
| 95 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'nextGenerationDate','errors')}"> |
|---|
| 96 | <g:datePicker name="nextGenerationDate" value="${taskRecurringScheduleInstance?.nextGenerationDate}" precision="minute" ></g:datePicker> |
|---|
| 97 | </td> |
|---|
| 98 | </tr> |
|---|
| 99 | |
|---|
| 100 | <tr class="prop"> |
|---|
| 101 | <td valign="top" class="name"> |
|---|
| 102 | <label for="nextTargetCompletionDate">Next Target Completion Date:</label> |
|---|
| 103 | </td> |
|---|
| 104 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'nextTargetCompletionDate','errors')}"> |
|---|
| 105 | <g:datePicker name="nextTargetCompletionDate" value="${taskRecurringScheduleInstance?.nextTargetCompletionDate}" precision="minute" ></g:datePicker> |
|---|
| 106 | </td> |
|---|
| 107 | </tr> |
|---|
| 108 | |
|---|
| 109 | <tr class="prop"> |
|---|
| 110 | <td valign="top" class="name"> |
|---|
| 111 | <label for="nextTargetStartDate">Next Target Start Date:</label> |
|---|
| 112 | </td> |
|---|
| 113 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'nextTargetStartDate','errors')}"> |
|---|
| 114 | <g:datePicker name="nextTargetStartDate" value="${taskRecurringScheduleInstance?.nextTargetStartDate}" precision="minute" ></g:datePicker> |
|---|
| 115 | </td> |
|---|
| 116 | </tr> |
|---|
| 117 | |
|---|
| 118 | <tr class="prop"> |
|---|
| 119 | <td valign="top" class="name"> |
|---|
| 120 | <label for="recurPeriod">Recur Period:</label> |
|---|
| 121 | </td> |
|---|
| 122 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'recurPeriod','errors')}"> |
|---|
| 123 | <g:select optionKey="id" from="${Period.list()}" name="recurPeriod.id" value="${taskRecurringScheduleInstance?.recurPeriod?.id}" ></g:select> |
|---|
| 124 | </td> |
|---|
| 125 | </tr> |
|---|
| 126 | |
|---|
| 127 | <tr class="prop"> |
|---|
| 128 | <td valign="top" class="name"> |
|---|
| 129 | <label for="startDate">Start Date:</label> |
|---|
| 130 | </td> |
|---|
| 131 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'startDate','errors')}"> |
|---|
| 132 | <g:datePicker name="startDate" value="${taskRecurringScheduleInstance?.startDate}" precision="minute" ></g:datePicker> |
|---|
| 133 | </td> |
|---|
| 134 | </tr> |
|---|
| 135 | |
|---|
| 136 | <tr class="prop"> |
|---|
| 137 | <td valign="top" class="name"> |
|---|
| 138 | <label for="task">Task:</label> |
|---|
| 139 | </td> |
|---|
| 140 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'task','errors')}"> |
|---|
| 141 | <g:select optionKey="id" from="${Task.list()}" name="task.id" value="${taskRecurringScheduleInstance?.task?.id}" ></g:select> |
|---|
| 142 | </td> |
|---|
| 143 | </tr> |
|---|
| 144 | |
|---|
| 145 | <tr class="prop"> |
|---|
| 146 | <td valign="top" class="name"> |
|---|
| 147 | <label for="taskDurationPeriod">Task Duration Period:</label> |
|---|
| 148 | </td> |
|---|
| 149 | <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'taskDurationPeriod','errors')}"> |
|---|
| 150 | <g:select optionKey="id" from="${Period.list()}" name="taskDurationPeriod.id" value="${taskRecurringScheduleInstance?.taskDurationPeriod?.id}" ></g:select> |
|---|
| 151 | </td> |
|---|
| 152 | </tr> |
|---|
| 153 | |
|---|
| 154 | </tbody> |
|---|
| 155 | </table> |
|---|
| 156 | </div> |
|---|
| 157 | <div class="buttons"> |
|---|
| 158 | <span class="button"><input class="save" type="submit" value="Create" /></span> |
|---|
| 159 | </div> |
|---|
| 160 | </g:form> |
|---|
| 161 | </div> |
|---|
| 162 | </body> |
|---|
| 163 | </html> |
|---|