source: trunk/grails-app/views/inventoryMovementType/show.gsp @ 177

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

Inventory movement quantity adjustments now done in a service.
InventoryMovementType now has an incrementsInventory flag, so not dependant on the text name.

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