Ignore:
Timestamp:
May 8, 2009, 1:01:56 AM (16 years ago)
Author:
gav
Message:

Reconfigure Planned Maintenance again, now Preventative Maintenance, TaskProcedure? and MaintenanceAction?

Location:
trunk/grails-app/views/subAssembly
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/subAssembly/create.gsp

    r122 r131  
    2626                    <table>
    2727                        <tbody>
     28                       
     29                            <tr class="prop">
     30                                <td valign="top" class="name">
     31                                    <label for="assembly">Assembly:</label>
     32                                </td>
     33                                <td valign="top" class="value ${hasErrors(bean:subAssemblyInstance,field:'assembly','errors')}">
     34                                    <g:select optionKey="id" from="${Assembly.list()}" name="assembly.id" value="${subAssemblyInstance?.assembly?.id}" ></g:select>
     35                                </td>
     36                            </tr>
    2837                       
    2938                            <tr class="prop">
  • trunk/grails-app/views/subAssembly/edit.gsp

    r122 r131  
    3232                            <tr class="prop">
    3333                                <td valign="top" class="name">
    34                                     <label for="assemblies">Assemblies:</label>
     34                                    <label for="assembly">Assembly:</label>
    3535                                </td>
    36                                 <td valign="top" class="value ${hasErrors(bean:subAssemblyInstance,field:'assemblies','errors')}">
    37                                    
     36                                <td valign="top" class="value ${hasErrors(bean:subAssemblyInstance,field:'assembly','errors')}">
     37                                    <g:select optionKey="id" from="${Assembly.list()}" name="assembly.id" value="${subAssemblyInstance?.assembly?.id}" ></g:select>
    3838                                </td>
    3939                            </tr>
     
    4444                                </td>
    4545                                <td valign="top" class="value ${hasErrors(bean:subAssemblyInstance,field:'componentItems','errors')}">
    46                                     <g:select name="componentItems"
    47 from="${ComponentItem.list()}"
    48 size="5" multiple="yes" optionKey="id"
    49 value="${subAssemblyInstance?.componentItems}" />
     46                                   
     47<ul>
     48<g:each var="c" in="${subAssemblyInstance?.componentItems?}">
     49    <li><g:link controller="componentItem" action="show" id="${c.id}">${c?.encodeAsHTML()}</g:link></li>
     50</g:each>
     51</ul>
     52<g:link controller="componentItem" params="['subAssembly.id':subAssemblyInstance?.id]" action="create">Add ComponentItem</g:link>
    5053
    5154                                </td>
  • trunk/grails-app/views/subAssembly/list.gsp

    r122 r131  
    2424                                <g:sortableColumn property="id" title="Id" />
    2525                       
     26                                <th>Assembly</th>
     27                           
    2628                                <g:sortableColumn property="description" title="Description" />
    2729                       
     
    3739                       
    3840                            <td><g:link action="show" id="${subAssemblyInstance.id}">${fieldValue(bean:subAssemblyInstance, field:'id')}</g:link></td>
     41                       
     42                            <td>${fieldValue(bean:subAssemblyInstance, field:'assembly')}</td>
    3943                       
    4044                            <td>${fieldValue(bean:subAssemblyInstance, field:'description')}</td>
  • trunk/grails-app/views/subAssembly/show.gsp

    r122 r131  
    3131                   
    3232                        <tr class="prop">
    33                             <td valign="top" class="name">Assemblies:</td>
     33                            <td valign="top" class="name">Assembly:</td>
    3434                           
    35                             <td  valign="top" style="text-align:left;" class="value">
    36                                 <ul>
    37                                 <g:each var="a" in="${subAssemblyInstance.assemblies}">
    38                                     <li><g:link controller="assembly" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
    39                                 </g:each>
    40                                 </ul>
    41                             </td>
     35                            <td valign="top" class="value"><g:link controller="assembly" action="show" id="${subAssemblyInstance?.assembly?.id}">${subAssemblyInstance?.assembly?.encodeAsHTML()}</g:link></td>
    4236                           
    4337                        </tr>
Note: See TracChangeset for help on using the changeset viewer.