source: trunk/grails-app/views/inventoryLocation/show.gsp @ 175

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

Substantial refactor of the Inventory domain.
InventoryItems can now be added to tasks, no quantity adjustments done yet.
Removed StoredItem and with it the ability to store an inventoryItem in multiple places, just too complex right now.
Svn move StoreLocation to InventoryLocation.

File size: 3.5 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>Show InventoryLocation</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">InventoryLocation List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Show InventoryLocation</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <div class="dialog">
21                <table>
22                    <tbody>
23
24                   
25                        <tr class="prop">
26                            <td valign="top" class="name">Id:</td>
27                           
28                            <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'id')}</td>
29                           
30                        </tr>
31                   
32                        <tr class="prop">
33                            <td valign="top" class="name">Name:</td>
34                           
35                            <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'name')}</td>
36                           
37                        </tr>
38                   
39                        <tr class="prop">
40                            <td valign="top" class="name">Inventory Items:</td>
41                           
42                            <td  valign="top" style="text-align:left;" class="value">
43                                <ul>
44                                <g:each var="i" in="${inventoryLocationInstance.inventoryItems}">
45                                    <li><g:link controller="inventoryItem" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
46                                </g:each>
47                                </ul>
48                            </td>
49                           
50                        </tr>
51                   
52                        <tr class="prop">
53                            <td valign="top" class="name">Inventory Store:</td>
54                           
55                            <td valign="top" class="value"><g:link controller="inventoryStore" action="show" id="${inventoryLocationInstance?.inventoryStore?.id}">${inventoryLocationInstance?.inventoryStore?.encodeAsHTML()}</g:link></td>
56                           
57                        </tr>
58                   
59                        <tr class="prop">
60                            <td valign="top" class="name">Is Active:</td>
61                           
62                            <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td>
63                           
64                        </tr>
65                   
66                    </tbody>
67                </table>
68            </div>
69            <div class="buttons">
70                <g:form>
71                    <input type="hidden" name="id" value="${inventoryLocationInstance?.id}" />
72                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
73                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
74                </g:form>
75            </div>
76        </div>
77    </body>
78</html>
Note: See TracBrowser for help on using the repository browser.