Subversion Repositories SmartDukaan

Rev

Rev 7593 | Rev 20062 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7567 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 AWB Uploader</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 COD Reconciliation</h3>
14
		#set($errorMsg=$action.getErrorMsg())
15
		#if(!$errorMsg.isEmpty())
16
        <div style="color:red">
17
            $errorMsg
18
        </div>
19
		#end
20
		<form name="cod-reconciliation" action="$request.getContextPath()/awb-upload/" method="post" enctype="multipart/form-data">
21
			<table>
22
				<tr>
7593 rajveer 23
					<td>Select Courier:</td>
7567 rajveer 24
					<td>
25
						<select name="providerId">
26
                            <option value="1" selected>BlueDart</option>
27
							<option value="6" selected>RedExpress</option>
28
							<option value="3" selected>Delhivery</option>
29
						</select>
30
					</td>
31
				</tr>
32
				<tr>
33
					<td>AWB Type:</td>
7593 rajveer 34
					<td>
7567 rajveer 35
					<select name="awbType">
36
                            <option value="true" selected>COD</option>
37
							<option value="false" selected>Prepaid</option>
38
					</select>
7593 rajveer 39
					</td>
7567 rajveer 40
				</tr>
41
				<tr>
13146 manish.sha 42
					<td>Awb User For:</td>
43
					<td>
44
					<select name="awbUsedFor">
45
                            <option value="0" selected>Single Package</option>
46
							<option value="1" >Group Package</option>
47
                            <option value="2" >Both</option>
48
					</select>
49
					</td>
50
				</tr>
51
				<tr>
7567 rajveer 52
					<td>Select File:</td>
53
					<td><input type="file" name="awbFile"/></td>
54
				</tr>
55
 
56
				<tr>
57
					<td>&nbsp;</td>
58
					<td><input type="submit" value="Upload AWB"/></td>
59
				</tr>
60
            </table>
61
		</form>		
62
 
63
	</body>
64
</html>