Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
9322 rajveer 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>Saholic Price Updation Dashboard</title>
5
 
6
		<link type = "text/css" href = "css/pincode.css" rel = "stylesheet"/>
7
		<link type = "text/css" href = "css/colorbox.css" rel = "stylesheet"/>
8
		<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
9
		<script type="text/javascript" src="js/jquery.colorbox-min.js"></script>
10
        <script type = "text/javascript" src = "js/pincode.js"></script>
11
	</head>
12
	<body>
13
		<h3>Saholic Price Updation Dashboard</h3>
14
		#set($errorMsg=$action.getErrorMsg())
15
		#if(!$errorMsg.isEmpty())
16
        <div style="color:red">
17
            $errorMsg
18
        </div>
19
		#end
20
		#set($vendors=$action.getAllVendors())
21
		<form name="vendor-price" action="$request.getContextPath()/vendor-price/" method="post" enctype="multipart/form-data">
22
			<table>
23
				<tr>
24
					<td>Select Vendor:</td>
25
					<td>
26
						<select name="vendorId">
27
							#foreach($vendor in $vendors)
28
                            <option value="$vendor.getId()" selected>$vendor.getName()</option>
29
							#end
30
						</select>
31
					</td>
32
				</tr>
33
				<tr>
34
					<td>Select File:</td>
35
					<td><input type="file" name="pricingFile"/></td>
36
				</tr>
37
				<tr>
38
					<td>&nbsp;</td>
39
					<td><input type="submit" value="Process Settlement"/></td>
40
				</tr>
41
            </table>
42
		</form>
43
 
44
	</body>
45
</html>