| 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>
|
|
|
23 |
<td>Transferring Party:</td>
|
|
|
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>
|
|
|
34 |
<select name="awbType">
|
|
|
35 |
<option value="true" selected>COD</option>
|
|
|
36 |
<option value="false" selected>Prepaid</option>
|
|
|
37 |
</select>
|
|
|
38 |
</tr>
|
|
|
39 |
<tr>
|
|
|
40 |
<td>Select File:</td>
|
|
|
41 |
<td><input type="file" name="awbFile"/></td>
|
|
|
42 |
</tr>
|
|
|
43 |
|
|
|
44 |
<tr>
|
|
|
45 |
<td> </td>
|
|
|
46 |
<td><input type="submit" value="Upload AWB"/></td>
|
|
|
47 |
</tr>
|
|
|
48 |
</table>
|
|
|
49 |
</form>
|
|
|
50 |
|
|
|
51 |
</body>
|
|
|
52 |
</html>
|