Ignore:
Timestamp:
Oct 23, 2009, 9:49:35 AM (15 years ago)
Author:
gav
Message:

Add Department-Person relationship, update demo data and views to suite.
Add department and personGroups to Person views.

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

Legend:

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

    r162 r164  
    2929                            <tr class="prop">
    3030                                <td valign="top" class="name">
    31                                     <label for="costCode">Cost Code:</label>
     31                                    <label for="name">Name:</label>
    3232                                </td>
    33                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}">
    34                                     <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/>
     33                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
     34                                    <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
    3535                                </td>
    3636                            </tr>
     
    4747                            <tr class="prop">
    4848                                <td valign="top" class="name">
    49                                     <label for="isActive">Is Active:</label>
     49                                    <label for="costCode">Cost Code:</label>
    5050                                </td>
    51                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'isActive','errors')}">
    52                                     <g:checkBox name="isActive" value="${departmentInstance?.isActive}" ></g:checkBox>
     51                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}">
     52                                    <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/>
    5353                                </td>
    5454                            </tr>
     
    5656                            <tr class="prop">
    5757                                <td valign="top" class="name">
    58                                     <label for="name">Name:</label>
     58                                    <label for="isActive">Is Active:</label>
    5959                                </td>
    60                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
    61                                     <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
     60                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'isActive','errors')}">
     61                                    <g:checkBox name="isActive" value="${departmentInstance?.isActive}" ></g:checkBox>
    6262                                </td>
    6363                            </tr>
  • trunk/grails-app/views/department/edit.gsp

    r162 r164  
    3232                            <tr class="prop">
    3333                                <td valign="top" class="name">
    34                                     <label for="costCode">Cost Code:</label>
     34                                    <label for="name">Name:</label>
    3535                                </td>
    36                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}">
    37                                     <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/>
     36                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
     37                                    <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
    3838                                </td>
    3939                            </tr>
     
    5050                            <tr class="prop">
    5151                                <td valign="top" class="name">
     52                                    <label for="costCode">Cost Code:</label>
     53                                </td>
     54                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}">
     55                                    <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/>
     56                                </td>
     57                            </tr>
     58                       
     59                            <tr class="prop">
     60                                <td valign="top" class="name">
    5261                                    <label for="isActive">Is Active:</label>
    5362                                </td>
     
    5968                            <tr class="prop">
    6069                                <td valign="top" class="name">
    61                                     <label for="name">Name:</label>
     70                                    <label for="persons">Persons:</label>
    6271                                </td>
    63                                 <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
    64                                     <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
     72                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'persons','errors')}">
     73                                   
     74<ul>
     75<g:each var="p" in="${departmentInstance?.persons?}">
     76    <li><g:link controller="person" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li>
     77</g:each>
     78</ul>
     79<g:link controller="person" params="['department.id':departmentInstance?.id]" action="create">Add Person</g:link>
     80
    6581                                </td>
    6682                            </tr>
  • trunk/grails-app/views/department/list.gsp

    r162 r164  
    2424                                <g:sortableColumn property="id" title="Id" />
    2525                       
    26                                 <g:sortableColumn property="costCode" title="Cost Code" />
     26                                <g:sortableColumn property="name" title="Name" />
    2727                       
    2828                                <g:sortableColumn property="description" title="Description" />
    2929                       
     30                                <g:sortableColumn property="costCode" title="Cost Code" />
     31                       
    3032                                <g:sortableColumn property="isActive" title="Is Active" />
    31                        
    32                                 <g:sortableColumn property="name" title="Name" />
    3333                       
    3434                        </tr>
     
    4040                            <td><g:link action="show" id="${departmentInstance.id}">${fieldValue(bean:departmentInstance, field:'id')}</g:link></td>
    4141                       
    42                             <td>${fieldValue(bean:departmentInstance, field:'costCode')}</td>
     42                            <td>${fieldValue(bean:departmentInstance, field:'name')}</td>
    4343                       
    4444                            <td>${fieldValue(bean:departmentInstance, field:'description')}</td>
    4545                       
     46                            <td>${fieldValue(bean:departmentInstance, field:'costCode')}</td>
     47                       
    4648                            <td>${fieldValue(bean:departmentInstance, field:'isActive')}</td>
    47                        
    48                             <td>${fieldValue(bean:departmentInstance, field:'name')}</td>
    4949                       
    5050                        </tr>
  • trunk/grails-app/views/department/show.gsp

    r162 r164  
    3131                   
    3232                        <tr class="prop">
    33                             <td valign="top" class="name">Cost Code:</td>
     33                            <td valign="top" class="name">Name:</td>
    3434                           
    35                             <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'costCode')}</td>
     35                            <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'name')}</td>
    3636                           
    3737                        </tr>
     
    4545                   
    4646                        <tr class="prop">
     47                            <td valign="top" class="name">Cost Code:</td>
     48                           
     49                            <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'costCode')}</td>
     50                           
     51                        </tr>
     52                   
     53                        <tr class="prop">
    4754                            <td valign="top" class="name">Is Active:</td>
    4855                           
     
    5259                   
    5360                        <tr class="prop">
    54                             <td valign="top" class="name">Name:</td>
     61                            <td valign="top" class="name">Persons:</td>
    5562                           
    56                             <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'name')}</td>
     63                            <td  valign="top" style="text-align:left;" class="value">
     64                                <ul>
     65                                <g:each var="p" in="${departmentInstance.persons}">
     66                                    <li><g:link controller="person" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li>
     67                                </g:each>
     68                                </ul>
     69                            </td>
    5770                           
    5871                        </tr>
Note: See TracChangeset for help on using the changeset viewer.