source: trunk/grails-app/views/supplierDetailed/edit.gsp @ 436

Last change on this file since 436 was 436, checked in by gav, 14 years ago

Change InventoryItem to have a preferred and many alternate suppliers and manufacturers.
Remove reverse InventoryItem references from Supplier and Manufacture domain classes.
InventoryCsvService updated.

File size: 5.7 KB
Line 
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>Edit Supplier</title>
8        <nav:resources override="true"/>
9    </head>
10    <body>
11        <div class="nav">
12            <nav:renderSubItems group="navAlt"/>
13        </div>
14        <div class="body">
15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
18            <g:hasErrors bean="${supplierInstance}">
19            <div class="errors">
20                <g:renderErrors bean="${supplierInstance}" as="list" />
21            </div>
22            </g:hasErrors>
23            <g:form method="post" >
24                <input type="hidden" name="id" value="${supplierInstance?.id}" />
25                <input type="hidden" name="version" value="${supplierInstance?.version}" />
26                <div class="dialog">
27                    <table>
28                        <tbody>
29                       
30                            <tr class="prop">
31                                <td valign="top" class="name">
32                                    <label for="name">Name:</label>
33                                </td>
34                                <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'name','errors')}">
35                                    <input type="text" id="name" name="name" value="${fieldValue(bean:supplierInstance,field:'name')}"/>
36                                </td>
37                            </tr>
38                       
39                            <tr class="prop">
40                                <td valign="top" class="name">
41                                    <label for="description">Description:</label>
42                                </td>
43                                <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'description','errors')}">
44                                    <input type="text" id="description" name="description" value="${fieldValue(bean:supplierInstance,field:'description')}"/>
45                                </td>
46                            </tr>
47                       
48                            <tr class="prop">
49                                <td valign="top" class="name">
50                                    <label for="isActive">Is Active:</label>
51                                </td>
52                                <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'isActive','errors')}">
53                                    <g:checkBox name="isActive" value="${supplierInstance?.isActive}" ></g:checkBox>
54                                </td>
55                            </tr>
56                       
57                            <tr class="prop">
58                                <td valign="top" class="name">
59                                    <label for="supplierType">Supplier Type:</label>
60                                </td>
61                                <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'supplierType','errors')}">
62                                    <g:select optionKey="id" from="${SupplierType.list()}" name="supplierType.id" value="${supplierInstance?.supplierType?.id}" ></g:select>
63                                </td>
64                            </tr>
65
66                            <tr class="prop">
67                                <td valign="top" class="name">
68                                    <label for="addresses">Contact:</label>
69                                </td>
70                                <td valign="top" class="value">
71                                    <ul>
72                                    <g:each var="i" in="${supplierInstance?.contacts}">
73                                        <li><g:link controller="contactDetailed" action="show" id="${i.id}">
74                                            ${i?.encodeAsHTML()}
75                                        </g:link></li>
76                                    </g:each>
77                                    </ul>
78                                    <g:link controller="contactDetailed" params="['supplier.id':supplierInstance?.id]" action="create">+Add Contact</g:link>
79                                </td>
80                            </tr>
81
82                            <tr class="prop">
83                                <td valign="top" class="name">
84                                    <label for="addresses">Addresses:</label>
85                                </td>
86                                <td valign="top" class="value">
87                                    <ul>
88                                    <g:each var="i" in="${supplierInstance?.addresses?}">
89                                        <li><g:link controller="supplierDetailed" action="show" id="${i.id}">
90                                            ${i?.encodeAsHTML()}
91                                        </g:link></li>
92                                    </g:each>
93                                    </ul>
94                                    <g:link controller="addressDetailed" params="['supplier.id':supplierInstance?.id]" action="create">+Add Address</g:link>
95                                </td>
96                            </tr>
97                       
98                        </tbody>
99                    </table>
100                </div>
101                <div class="buttons">
102                    <span class="button"><g:actionSubmit class="save" value="Update" /></span>
103                    <span class="button"><g:actionSubmit class="cancel" value="Cancel" action="Show"/></span>
104                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
105                </div>
106            </g:form>
107        </div>
108    </body>
109</html>
Note: See TracBrowser for help on using the repository browser.