Subversion Repositories SmartDukaan

Rev

Rev 5458 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5437 mandeep.dh 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
    <head>
4
        <title>
5
            Supplier Inventory
6
        </title>
7
        <link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
8
    </head>
9
    <body>
10
        <div >
11
            <a href="/inventory">Go to Home page</a>
12
            <br />
13
                <label >Supplier Inventory</label>
14
            <br />
15
            #set($messages = $action.getActionErrors())
16
            #if($messages && $messages.size() != 0)
17
                #foreach($message in $messages)
18
                    $message <br/>
19
                #end
20
            #end
21
            <br />
22
            <table >
23
                <thead >
24
                    <tr >
25
                        <th >Supplier Warehouse</th>
26
                        <th ></th>
27
                </thead>
28
                <tbody >
29
                    #foreach($warehouseId in $action.getConfig().keySet())
30
                        <tr >
31
                            <td >$action.getWarehouse($warehouseId).getDisplayName()</td>
32
                            <td >
33
                                <form enctype="multipart/form-data" method="post" action="/inventory/supplier-inventory">
34
                                    <div >
35
                                        <input type="hidden" name="warehouseId" value="$warehouseId"/>
36
                                        <input type="radio" name="uploadVendorItemMapping" value="true"/>Item mapping
37
                                        <input type="radio" name="uploadVendorItemMapping" value="false" checked />Inventory
38
                                        <input type="file"  name="file"/>
39
                                        <input type="submit" value="Upload"/>
40
                                    </div>
41
                                </form>
42
                            </td>
43
                        </tr>
44
                    #end
45
                </tbody>
46
            </table>
47
        </div>
48
    </body>
49
</html>