source: trunk/grails-app/views/storeLocationDetailed/edit.gsp @ 125

Last change on this file since 125 was 125, checked in by gav, 15 years ago

Detail Inventory and associated, update BootStrap? and some work on TaskRecurringScheduleJob?

File size: 4.3 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 StoreLocation</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">StoreLocation List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New StoreLocation</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Edit StoreLocation</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <g:hasErrors bean="${storeLocationInstance}">
21            <div class="errors">
22                <g:renderErrors bean="${storeLocationInstance}" as="list" />
23            </div>
24            </g:hasErrors>
25            <g:form method="post" >
26                <input type="hidden" name="id" value="${storeLocationInstance?.id}" />
27                <input type="hidden" name="version" value="${storeLocationInstance?.version}" />
28                <div class="dialog">
29                    <table>
30                        <tbody>
31                       
32                            <tr class="prop">
33                                <td valign="top" class="name">
34                                    <label for="bin">Bin:</label>
35                                </td>
36                                <td valign="top" class="value ${hasErrors(bean:storeLocationInstance,field:'bin','errors')}">
37                                    <input type="text" maxlength="50" id="bin" name="bin" value="${fieldValue(bean:storeLocationInstance,field:'bin')}"/>
38                                </td>
39                            </tr>
40                       
41                            <tr class="prop">
42                                <td valign="top" class="name">
43                                    <label for="inventoryStore">Inventory Store:</label>
44                                </td>
45                                <td valign="top" class="value ${hasErrors(bean:storeLocationInstance,field:'inventoryStore','errors')}">
46                                    <g:select optionKey="id" from="${InventoryStore.list()}" name="inventoryStore.id" value="${storeLocationInstance?.inventoryStore?.id}" ></g:select>
47                                </td>
48                            </tr>
49                       
50                            <tr class="prop">
51                                <td valign="top" class="name">
52                                    <label for="isActive">Is Active:</label>
53                                </td>
54                                <td valign="top" class="value ${hasErrors(bean:storeLocationInstance,field:'isActive','errors')}">
55                                    <g:checkBox name="isActive" value="${storeLocationInstance?.isActive}" ></g:checkBox>
56                                </td>
57                            </tr>
58                       
59                            <tr class="prop">
60                                <td valign="top" class="name">
61                                    <label for="storedItems">Stored Items:</label>
62                                </td>
63                                <td valign="top" class="value ${hasErrors(bean:storeLocationInstance,field:'storedItems','errors')}">
64                                   
65<ul>
66<g:each var="s" in="${storeLocationInstance?.storedItems?}">
67    <li><g:link controller="storedItemDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
68</g:each>
69</ul>
70<g:link controller="storedItemDetailed" params="['storeLocation.id':storeLocationInstance?.id]" action="create">Add StoredItem</g:link>
71
72                                </td>
73                            </tr>
74                       
75                        </tbody>
76                    </table>
77                </div>
78                <div class="buttons">
79                    <span class="button"><g:actionSubmit class="save" value="Update" /></span>
80                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
81                </div>
82            </g:form>
83        </div>
84    </body>
85</html>
Note: See TracBrowser for help on using the repository browser.