source: trunk/grails-app/views/inventoryItemDetailed/show.gsp @ 610

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

Prevent reordering of obsolete or inactive inventory items.

File size: 37.2 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 InventoryItem</title>
8        <nav:resources override="true"/>
9        <resource:tabView skin="tabviewCustom" />
10        <g:render template="/shared/pictureHead" />
11    </head>
12    <body>
13        <div class="nav">
14            <nav:renderSubItems group="nav"/>
15        </div>
16        <div class="body">
17            <g:render template="/shared/messages" />
18            <g:if test="${inventoryItemInstance.isObsolete || !inventoryItemInstance.isActive}" >
19                <div class="errors">
20                    <ul>
21                        <g:if test="${inventoryItemInstance.isObsolete}" >
22                            <li><g:message code="inventory.item.is.obsolete" /><li>
23                        </g:if>
24                        <g:if test="${!inventoryItemInstance.isActive}" >
25                            <li><g:message code="inventory.item.not.active" /><li>
26                        </g:if>
27                    </ul>
28                </div>
29            </g:if>
30            <g:if test="${!inventoryItemInstance.enableReorder}" >
31                <div class="message">
32                    <g:message code="inventory.item.reorder.listing.disabled" />
33                </div>
34            </g:if>
35            <g:hasErrors bean="${inventoryMovementInstance}">
36                <div class="errors">
37                    <g:renderErrors bean="${inventoryMovementInstance}" as="list" />
38                </div>
39            </g:hasErrors>
40
41            <g:hasErrors bean="${inventoryItemInstance}">
42                <div class="errors">
43                    <g:renderErrors bean="${inventoryItemInstance}" as="list" />
44                </div>
45            </g:hasErrors>
46
47            <div class="tabHeader">
48                <h1>
49                    ${inventoryItemInstance.name}
50                </h1>
51                ${fieldValue(bean:inventoryItemInstance, field:'description')}
52            </div>
53
54            <br/>
55
56            <richui:tabView id="tabView">
57
58                <richui:tabLabels>
59                    <richui:tabLabel selected="${showTab.inventory}" title="Inventory Item" />
60                    <richui:tabLabel selected="${showTab.detail}" title="Detail" />
61                    <g:if test="${!inventoryMovementList.isEmpty()}">
62                        <richui:tabLabel selected="${showTab.movement}" title="Movement (${inventoryMovementList.size()})" />
63                    </g:if>
64                    <g:else>
65                        <richui:tabLabel selected="${showTab.movement}" title="Movement" />
66                    </g:else>
67                    <g:if test="${!inventoryItemPurchases.isEmpty()}">
68                        <richui:tabLabel selected="${showTab.purchasing}" title="Purchasing (${inventoryItemPurchases.size()})" />
69                    </g:if>
70                    <g:else>
71                        <richui:tabLabel selected="${showTab.purchasing}" title="Purchasing" />
72                    </g:else>
73                </richui:tabLabels>
74
75                <richui:tabContents>
76
77<!-- Start Inventory tab -->
78                    <richui:tabContent>
79
80                        <g:if test="${inventoryMovementInstance}" >
81
82                            <div id="useInventoryItemDiv" style="display:inline"> <!-- inline required for IE -->
83                                <div class="pane_close" >
84                                    <g:remoteLink action="clearUseInventoryItem" update="useInventoryItemDiv">
85                                        <img  src="${resource(dir:'images/skin',file:'cross.png')}" alt="Clear" title="Clear"/>
86                                    </g:remoteLink>
87                                </div>
88                                <g:form controller="inventoryItemDetailed" action="useInventoryItem" method="post" >
89                                    <div class="dialog">
90                                        <table>
91                                            <tbody>
92                                                    <g:hiddenField name="task.id" value="${inventoryMovementInstance.task.id}"/>
93                                                    <g:hiddenField name="inventoryItem.id" value="${inventoryItemInstance.id}"/>
94                                                    <tr class="prop">
95                                                        <td valign="top" class="name">Use on task:</td>
96                                                        <td valign="top" class="value">
97                                                            <g:link controller="taskDetailed" action="show" id="${inventoryMovementInstance.task.id}" >
98                                                                ${Task.get(inventoryMovementInstance.task.id).encodeAsHTML()}
99                                                            </g:link>
100                                                        </td>
101                                                    </tr>
102
103                                                    <tr class="prop">
104                                                        <td valign="top" class="name">
105                                                            <label for="quantity">Quantity:</label>
106                                                        </td>
107                                                        <td valign="top">
108                                                            <input class="medium ${hasErrors(bean:inventoryMovementInstance,field:'quantity','errors')}"
109                                                                        type="text" id="quantity" name="quantity"
110                                                                        value="${fieldValue(bean:inventoryMovementInstance,field:'quantity')}"/>
111                                                            ${inventoryItemInstance.unitOfMeasure?.encodeAsHTML()}
112
113                                                            <span class="buttons">
114                                                                <g:actionSubmit action="useInventoryItem" class="save" value="${InventoryMovementType.read(1)}" />
115                                                            </span>
116
117                                                        </td>
118                                                    </tr>
119
120                                            </tbody>
121                                        </table>
122                                    </div>
123                                </g:form>
124
125                                <br />
126                            </div>
127
128                        </g:if>
129
130                        <div class="dialog">
131                            <table>
132                                <tbody>
133
134                                    <tr class="prop">
135                                        <td valign="top" class="name">Picture:</td>
136                                        <td valign="top" class="value">
137                                            <g:if test="${inventoryItemInstance.picture}" >
138                                                <span class='gallery'><wa:pictureLightboxAnchor picture="${inventoryItemInstance.picture}" size="${Image.Medium}" lightboxSize="${Image.Large}" target="_blank" title="Show Original" /></span>
139                                            </g:if>
140                                            <g:else>
141                                                <g:link controller="pictureDetailed"
142                                                                params="['inventoryItem.id':inventoryItemInstance.id]"
143                                                                action="create">
144                                                    Add Picture
145                                                </g:link>
146                                            </g:else>
147                                        </td>
148                                    </tr>
149
150                                    <tr class="prop">
151                                        <td valign="top" class="name">Comment:</td>
152
153                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'comment')}</td>
154                                    </tr>
155
156                                    <tr class="prop">
157                                        <td valign="top" class="name">In Stock:</td>
158
159                                        <td valign="top" class="value">
160                                            ${fieldValue(bean:inventoryItemInstance, field:'unitsInStock')} ${inventoryItemInstance.unitOfMeasure.encodeAsHTML()}
161                                        </td>
162                                    </tr>
163
164                                    <tr class="prop">
165                                        <td valign="top" class="name">Location:</td>
166
167                                        <td valign="top" class="value">
168                                            <g:link controller="inventoryLocationDetailed" action="show" id="${inventoryItemInstance.inventoryLocation?.id}">
169                                                ${inventoryItemInstance.inventoryLocation?.encodeAsHTML()}
170                                            </g:link>
171                                                in ${inventoryItemInstance.inventoryLocation?.inventoryStore.encodeAsHTML()}
172                                        </td>
173                                    </tr>
174
175                                    <tr class="prop">
176                                        <td valign="top" class="name">Active:</td>
177
178                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'isActive')}</td>
179                                    </tr>
180
181                                    <tr class="prop">
182                                        <td valign="top" class="name">Alternate Items:</td>
183
184                                        <td  valign="top" style="text-align:left;" class="value">
185                                            <ul>
186                                            <g:each var="a" in="${ inventoryItemInstance.alternateItems.sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } }">
187                                                <li><g:link controller="inventoryItemDetailed" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
188                                            </g:each>
189                                            </ul>
190                                        </td>
191                                    </tr>
192
193                                    <tr class="prop">
194                                        <td valign="top" class="name">Spare For:</td>
195
196                                        <td  valign="top" style="text-align:left;" class="value">
197                                            <ul>
198                                            <g:each var="s" in="${ inventoryItemInstance.spareFor.sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } }">
199                                                <li><g:link controller="assetDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
200                                            </g:each>
201                                            </ul>
202                                        </td>
203                                    </tr>
204
205                                </tbody>
206                            </table>
207                        </div>
208                        <div class="buttons">
209                            <g:form>
210                                <g:hiddenField name="id" value="${inventoryItemInstance.id}" />
211                                <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
212                                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
213                            </g:form>
214                        </div>
215
216                        <br />
217
218                    </richui:tabContent>
219<!-- End Inventory tab -->
220
221<!-- Start Detail tab -->
222                    <richui:tabContent>
223
224                        <div class="dialog">
225                            <table>
226                                <tbody>
227
228                                    <tr class="prop">
229                                        <td valign="top" class="name">Id:</td>
230                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'id')}</td>
231                                    </tr>
232
233                                    <tr class="prop">
234                                        <td valign="top" class="name">Obsolete:</td>
235                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'isObsolete')}</td>
236                                    </tr>
237
238                                    <tr class="prop">
239                                        <td valign="top" class="name">Inventory Group:</td>
240                                        <td valign="top" class="value">${inventoryItemInstance.inventoryGroup?.encodeAsHTML()}</td>
241                                    </tr>
242
243                                    <tr class="prop">
244                                        <td valign="top" class="name">Inventory Type:</td>
245                                        <td valign="top" class="value">${inventoryItemInstance.inventoryType?.encodeAsHTML()}</td>
246                                    </tr>
247
248                                    <tr class="prop">
249                                        <td valign="top" class="name">Reorder Point:</td>
250                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'reorderPoint')}</td>
251                                    </tr>
252
253                                    <tr class="prop">
254                                        <td valign="top" class="name">Enable Reorder Listing:</td>
255                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'enableReorder')}</td>
256                                    </tr>
257
258                                    <tr class="prop">
259                                        <td valign="top" class="name">Recommended Reorder Point:</td>
260                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'recommendedReorderPoint')}</td>
261                                    </tr>
262
263                                    <tr class="prop">
264                                        <td valign="top" class="name">Estimated Unit Price:</td>
265
266                                        <td valign="top" class="value">
267                                            <g:if test="${inventoryItemInstance.estimatedUnitPriceAmount}">
268                                                ${inventoryItemInstance.estimatedUnitPriceAmount.encodeAsHTML()}
269                                                ${inventoryItemInstance.estimatedUnitPriceCurrency.encodeAsHTML()}
270                                            </g:if>
271                                        </td>
272                                    </tr>
273
274                                    <tr class="prop">
275                                        <td valign="top" class="name">Suppliers Part Number:</td>
276                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'suppliersPartNumber')}</td>
277                                    </tr>
278
279                                    <tr class="prop">
280                                        <td valign="top" class="name">Preferred Supplier:</td>
281
282                                        <td  valign="top" style="text-align:left;" class="value">
283                                            <g:link controller="supplierDetailed" action="show" id="${inventoryItemInstance.preferredSupplier?.id}">
284                                                ${inventoryItemInstance.preferredSupplier?.encodeAsHTML()}
285                                            </g:link>
286                                        </td>
287                                    </tr>
288
289                                    <tr class="prop">
290                                        <td valign="top" class="name">Alternate Suppliers:</td>
291
292                                        <td  valign="top" style="text-align:left;" class="value">
293                                            <ul>
294                                            <g:each var="s" in="${ inventoryItemInstance.alternateSuppliers.sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } }">
295                                                <li><g:link controller="supplierDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
296                                            </g:each>
297                                            </ul>
298                                        </td>
299                                    </tr>
300
301                                    <tr class="prop">
302                                        <td valign="top" class="name">Average Delivery Time:</td>
303                                        <td valign="top" class="value">
304                                        ${fieldValue(bean:inventoryItemInstance, field:'averageDeliveryTime')}
305                                        ${fieldValue(bean:inventoryItemInstance, field:'averageDeliveryPeriod')}
306                                        </td>
307                                    </tr>
308
309                                    <tr class="prop">
310                                        <td valign="top" class="name">Manufacturers Part Number:</td>
311                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'manufacturersPartNumber')}</td>
312                                    </tr>
313
314                                    <tr class="prop">
315                                        <td valign="top" class="name">Preferred Manufacturer:</td>
316
317                                        <td  valign="top" style="text-align:left;" class="value">
318                                            <g:link controller="manufacturerDetailed" action="show" id="${inventoryItemInstance.preferredManufacturer?.id}">
319                                                ${inventoryItemInstance.preferredManufacturer?.encodeAsHTML()}
320                                            </g:link>
321                                        </td>
322                                    </tr>
323
324                                    <tr class="prop">
325                                        <td valign="top" class="name">Alternate Manufacturers:</td>
326
327                                        <td  valign="top" style="text-align:left;" class="value">
328                                            <ul>
329                                            <g:each var="m" in="${ inventoryItemInstance.alternateManufacturers.sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } }">
330                                                <li><g:link controller="manufacturerDetailed" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
331                                            </g:each>
332                                            </ul>
333                                        </td>
334                                    </tr>
335
336
337                                </tbody>
338                            </table>
339                        </div>
340                        <div class="buttons">
341                            <g:form>
342                                <g:hiddenField name="id" value="${inventoryItemInstance.id}" />
343                                <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
344                                <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
345                            </g:form>
346                        </div>
347                    </richui:tabContent>
348<!-- End Detail tab -->
349
350<!-- Start Movement tab -->
351                    <richui:tabContent>
352
353                        <g:if test="${inventoryMovementList.isEmpty()}">
354                            <br />
355                            No Inventory Movements.
356                            <br />
357                            <br />
358
359                            <div class="buttons">
360                                <g:form controller="inventoryMovementDetailed">
361                                    <g:hiddenField name="inventoryItem.id" value="${inventoryItemInstance.id}" />
362                                    <span class="button"><g:actionSubmit action="create" class="add" value="Create" /></span>
363                                </g:form>
364                            </div>
365
366                        </g:if>
367                        <g:else>
368
369                            <div class="list">
370                                <table>
371                                    <thead>
372                                        <tr>
373                                            <th>Quantity</th>
374                                            <th>Movement Type</th>
375                                            <th>Date</th>
376                                            <th>Person</th>
377                                            <th></th>
378                                        </tr>
379                                    </thead>
380                                    <tbody>
381                                        <g:each in="${inventoryMovementList}" status="i" var="movements">
382                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
383
384                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
385                                                    ${fieldValue(bean:movements, field:'quantity')}
386                                                </td>
387                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
388                                                    ${fieldValue(bean:movements, field:'inventoryMovementType')}
389                                                </td>
390                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
391                                                    <g:formatDate date="${movements.date}" format="EEE, dd-MMM-yyyy"/>
392                                                </td>
393                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
394                                                    ${fieldValue(bean:movements, field:'person')}
395                                                </td>
396
397                                                <td class="notClickable">
398                                                    <g:link controller="inventoryMovementDetailed" action="show" id="${movements.id}">
399                                                        <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
400                                                    </g:link>
401                                                </td>
402
403                                            </tr>
404                                        </g:each>
405                                    </tbody>
406                                </table>
407                            </div>
408
409                            <div class="buttons">
410                                <g:form controller="inventoryMovementDetailed">
411                                    <g:hiddenField name="inventoryItem.id" value="${inventoryItemInstance.id}" />
412                                    <g:if test="${inventoryMovementListTotal > inventoryMovementListMax}">
413                                        Showing ${inventoryMovementListMax} of ${inventoryMovementListTotal}
414                                        <br />
415                                    </g:if>
416                                    <g:else>
417                                        Total ${inventoryMovementListTotal}
418                                        <br />
419                                    </g:else>
420                                    <span class="button"><g:actionSubmit action="listInventoryMovements" class="table" value="List" /></span>
421                                    <span class="button"><g:actionSubmit action="create" class="add" value="Create" /></span>
422                                </g:form>
423                            </div>
424
425                        </g:else>
426
427                    </richui:tabContent>
428<!-- End Movement tab -->
429
430<!-- Start Purchases tab -->
431                    <richui:tabContent>
432
433                        <g:if test="${inventoryItemPurchases.isEmpty()}">
434                            <br />
435                            No Inventory Purchases.
436                            <br />
437                            <br />
438
439                            <div class="buttons">
440                                <!--Fake button to prevent ordering disabled inventory items-->
441                                <g:if test="${inventoryItemInstance.isObsolete || !inventoryItemInstance.isActive}" >
442                                    <g:form controller="inventoryItemDetailed">
443                                        <g:hiddenField name="id" value="${inventoryItemInstance.id}" />
444                                        <span class="button"><g:actionSubmit action="show" class="add" value="${g.message(code:'inventory.item.reorder.not.allowed')}" /></span>
445                                    </g:form>
446                                </g:if>
447                                <g:else><!--Real order button.-->
448                                    <g:form controller="inventoryItemPurchaseDetailed">
449                                        <g:hiddenField name="inventoryItem.id" value="${inventoryItemInstance.id}" />
450                                        <span class="button"><g:actionSubmit action="create" class="add" value="Order" /></span>
451                                    </g:form>
452                                </g:else>
453                            </div>
454
455                        </g:if>
456                        <g:else>
457
458                            <div class="list">
459                                <table>
460                                    <thead>
461                                        <tr>
462                                            <g:sortableColumn action="show" property="purchaseOrderNumber"
463                                                                                title="Order #" params="[paginate: 'purchases']"  />
464                                            <g:sortableColumn action="show"  property="date"
465                                                                                title="Date" params="[paginate: 'purchases']" />
466                                            <g:sortableColumn action="show"  property="costCode"
467                                                                                title="Cost Code" params="[paginate: 'purchases']" />
468                                            <g:sortableColumn action="show"  property="quantity"
469                                                                                title="Quantity" params="[paginate: 'purchases']" />
470                                            <g:sortableColumn action="show"  property="orderValueAmount"
471                                                                                title="Order \$" params="[paginate: 'purchases']" />
472                                            <g:sortableColumn action="show"  property="invoiceNumber"
473                                                                                title="Invoice Number" params="[paginate: 'purchases']" />
474                                            <g:sortableColumn action="show"  property="inventoryItemPurchaseType"
475                                                                                title="Type" params="[paginate: 'purchases']" />
476                                            <th>
477                                                <img  src="${resource(dir:'images/skin',file:'database_go_grey.png')}" alt="Show" title="Show" />
478                                            </th>
479                                            <th>
480                                                <img  src="${resource(dir:'images/skin',file:'basket_put_grey.png')}" alt="Receive" title="Receive" />
481                                            </th>
482                                            <th>
483                                                <img  src="${resource(dir:'images/skin',file:'tick_grey.png')}" alt="Approve" title="Approve Payment" />
484                                            </th>
485                                        </tr>
486                                    </thead>
487                                    <tbody>
488                                        <g:each in="${inventoryItemPurchases}" status="i" var="purchase">
489                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
490
491                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
492                                                    ${fieldValue(bean:purchase, field:'purchaseOrderNumber')}
493                                                </td>
494                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
495                                                    <g:formatDate date="${purchase.date}" format="EEE, dd-MMM-yyyy"/>
496                                                </td>
497                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
498                                                    ${fieldValue(bean:purchase, field:'costCode')}
499                                                </td>
500                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
501                                                    ${fieldValue(bean:purchase, field:'quantity')}
502                                                </td>
503                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
504                                                    ${fieldValue(bean:purchase, field:'orderValueAmount')}
505                                                    ${fieldValue(bean:purchase, field:'orderValueCurrency')}
506                                                </td>
507                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
508                                                    ${fieldValue(bean:purchase, field:'invoiceNumber')}
509                                                </td>
510                                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemPurchaseDetailed/show/${purchase.id}"'>
511                                                    ${fieldValue(bean:purchase, field:'inventoryItemPurchaseType')}
512                                                </td>
513                                                <td class="notClickable">
514                                                    <g:link controller="inventoryItemPurchaseDetailed" action="show" id="${purchase.id}">
515                                                        <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" title="Show" />
516                                                    </g:link>
517                                                </td>
518
519                                                <g:if test="${purchase.inventoryItemPurchaseType.id == 1}">
520                                                    <g:if test="${!purchase.receivedComplete}">
521                                                        <td class="notClickable">
522                                                            <g:link controller="inventoryItemPurchaseDetailed" action="receive" params="[id: purchase.id, returnTo: 'inventoryItem']">
523                                                                <img  src="${resource(dir:'images/skin',file:'basket_put.png')}" alt="Receive" title="Receive" />
524                                                            </g:link>
525                                                        </td>
526                                                        <td class="notClickable">
527                                                        </td>
528                                                    </g:if>
529                                                    <g:else>
530                                                        <td class="notClickable">
531                                                        </td>
532                                                        <td class="notClickable">
533                                                        </td>
534                                                    </g:else>
535                                                </g:if>
536                                                <g:elseif test="${(purchase.inventoryItemPurchaseType.id == 2)||(purchase.inventoryItemPurchaseType.id == 3)}">
537                                                    <g:if test="${!purchase.invoicePaymentApproved}">
538                                                        <td class="notClickable">
539                                                        </td>
540                                                        <td class="notClickable">
541                                                            <g:link controller="inventoryItemPurchaseDetailed" action="approveInvoicePayment" params="[id: purchase.id, returnTo: 'inventoryItem']">
542                                                                <img  src="${resource(dir:'images/skin',file:'tick.png')}" alt="Approve" title="Approve Payment" />
543                                                            </g:link>
544                                                        </td>
545                                                    </g:if>
546                                                    <g:else>
547                                                        <td class="notClickable">
548                                                        </td>
549                                                        <td class="notClickable">
550                                                        </td>
551                                                    </g:else>
552                                                </g:elseif>
553                                                <g:else>
554                                                    <td class="notClickable">
555                                                    </td>
556                                                    <td class="notClickable">
557                                                    </td>
558                                                </g:else>
559
560                                            </tr>
561                                        </g:each>
562                                    </tbody>
563                                </table>
564                            </div>
565
566                            <div class="buttons">
567                                <!--Fake button to prevent ordering disabled inventory items-->
568                                <g:if test="${inventoryItemInstance.isObsolete || !inventoryItemInstance.isActive}" >
569                                    <g:form controller="inventoryItemDetailed">
570                                        <g:hiddenField name="id" value="${inventoryItemInstance.id}" />
571                                        Results: ${inventoryItemPurchases.size()} / ${inventoryItemPurchasesTotal}
572                                        <span class="button">
573                                            <g:actionSubmit action="show" class="add" value="${g.message(code:'inventory.item.reorder.not.allowed')}" />
574                                        </span>
575                                    </g:form>
576                                </g:if>
577                                <g:else><!--Real order button.-->
578                                    <g:form controller="inventoryItemPurchaseDetailed">
579                                        <g:hiddenField name="inventoryItem.id" value="${inventoryItemInstance.id}" />
580                                        Results: ${inventoryItemPurchases.size()} / ${inventoryItemPurchasesTotal}
581                                        <span class="button"><g:actionSubmit action="create" class="add" value="Order" /></span>
582                                    </g:form>
583                                </g:else>
584                            </div>
585
586                            <div class="paginateButtons">
587                                <g:paginate action="show"
588                                                        id="${inventoryItemInstance?.id}"
589                                                        total="${inventoryItemPurchasesTotal}"
590                                                        params="[paginate: 'purchases']" />
591                            </div>
592
593                        </g:else>
594
595                    </richui:tabContent>
596<!-- End Movement tab -->
597
598                </richui:tabContents>
599            </richui:tabView>
600
601        </div>
602    </body>
603</html>
Note: See TracBrowser for help on using the repository browser.