source: trunk/grails-app/views/inventoryItemDetailed/importInventoryItemPurchases.gsp @ 441

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

Add CostCode and InventoryItemPurchase domain classes with import features.
Includes some fixes to inventory imports, where manufacturer and supplier were crossed.

File size: 1.3 KB
Line 
1<html>
2    <head>
3        <meta name="layout" content="main" />
4        <title>Import Inventory Item Purchases</title>
5        <nav:resources override="true"/>
6        <g:render template="/shared/pictureHead" />
7    </head>
8    <body>
9        <div class="nav">
10            <h1>Import Inventory Purchases</h1>
11        </div>
12        <div class="body">
13            <g:render template="/shared/messages" />
14            <g:uploadForm action="importInventoryItemPurchasesSave" onsubmit="return Lightbox.loading();">
15                <div class="dialog">
16                    <table>
17                        <tbody>
18                            <tr class="prop">
19                                <td valign="top" class="name">
20                                    <label for="file">File:</label>
21                                </td>
22                                <td valign="top" class="value">
23                                    <input type="file" id="file" name="file" size="40"/>
24                                </td>
25                            </tr>
26                        </tbody>
27                    </table>
28                </div>
29                <div class="buttons">
30                    <span class="button"><input class="save" type="submit" value="Create" /></span>
31                </div>
32            </g:uploadForm>
33        </div>
34    </body>
35</html>
Note: See TracBrowser for help on using the repository browser.