Subversion Repositories SmartDukaan

Rev

Rev 22984 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3956 chandransh 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 COD Reconciliation</title>
6322 amar.kumar 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>
3956 chandransh 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()/cod-reconciliation/" method="post" enctype="multipart/form-data">
21
			<table>
22
				<tr>
23
					<td>Transferring Party:</td>
24
					<td>
25
						<select name="xferBy">
22984 amit.gupta 26
                            <!--<option value="BlueDart" >BlueDart</option>-->
20717 amit.gupta 27
                            <option value="Aramex" selected>Aramex</option>
22984 amit.gupta 28
							<!--<option value="RedExpress">RedExpress</option>-->
29
							<!--<option value="Delhivery">Delhivery</option>-->
30
							<!--<option value="Fedex">Fedex</option>-->
31
							<option value="RQuick-Express">RQuick-Express</option>
3956 chandransh 32
						</select>
33
					</td>
34
				</tr>
35
				<tr>
36
					<td>Transaction Id:</td>
37
					<td>
38
						<input name="xferTxnId" type="text"/>
39
					</td>
40
				</tr>
41
                <tr>
42
					<td>Transaction Date (dd/MM/YYYY):</td>
43
					<td>
44
						<input name="xferTxnDate" type="text"/>
45
					</td>
46
				</tr>
47
				</tr>
48
				<tr>
49
					<td>Select File:</td>
50
					<td><input type="file" name="codReport"/></td>
51
				</tr>
52
				<tr>
53
					<td>&nbsp;</td>
54
					<td><input type="submit" value="Process Settlement"/></td>
55
				</tr>
56
            </table>
57
		</form>
6322 amar.kumar 58
 
59
		<br />
60
		<br />
61
		<br />
62
		<br />
63
 
64
		<span id = "addPincodeLink" class = "link"> Add Pincode </span>
65
		<br />
66
		<span id = "updatePincodeLink" class = "link"> Update/Disable Pincode </span>
7736 manish.sha 67
		<!-- Start:- Added/Modified by Manish Sharma for Multiple Pincode Updation on 05-Jul-2013 -->
68
		<br />
69
		<span id = "multipleUpdatePincodeLink" ><a href="$request.getContextPath()/pincode/"> Multiple Pincode Updation </a></span>
70
		<!-- End:- Added/Modified by Manish Sharma for Multiple Pincode Updation on 05-Jul-2013 -->
6322 amar.kumar 71
 
72
		<div id = 'updatePincode' class = "hidden">
73
			<form id = 'updatePincodeForm'>
74
                <span> Select Provider : </span>
75
				<select id = 'provider' name = 'provider'>
76
                    <option value = '1'>BlueDart</option>
7069 rajveer 77
                    <option value = '6'>RedExpress</option>
6322 amar.kumar 78
					<option value = '3'>Delhivery</option>
8644 rajveer 79
					<option value = '7'>Fedex</option>
6322 amar.kumar 80
                </select>
81
				<br>
82
				<span> Enter Pincode : </span>
83
				<input type = 'text' id = 'pincode' name = 'pincode'>
84
				<br>
85
				<span> COD </span>
86
				<input type = 'checkbox' id = 'cod' name = 'cod'>
87
				<span> Prepaid </span>
88
				<input type = 'checkbox' id = 'exp' name = 'exp'>
6664 rajveer 89
				<span> On Time Guarantee </span>
90
				<input type = 'checkbox' id = 'otg' name = 'otg'>
6322 amar.kumar 91
				<br><br>
92
                <button type = "submit">Submit</button>
93
            </form>
94
        </div>
95
 
96
		<div id = 'addPincode' class = "hidden">
97
			<form id = 'addPincodeForm'>
98
                <span> Select Provider : </span>
99
				<select id = 'provider' name = 'provider'>
100
                    <option value = '1'>BlueDart</option>
7069 rajveer 101
                    <option value = '6'>RedExpress</option>
6322 amar.kumar 102
					<option value = '3'>Delhivery</option>
103
                </select>
104
				<br>
105
				<span> Enter Pincode : </span>
106
				<input type = 'text' id = 'pincode' name = 'pincode'>
107
				<br>
108
				<span> Enter Dest Code : </span>
109
				<input type = 'text' id = 'destCode' name = 'destCode'>
110
				<br>
111
				<span> COD </span>
112
				<input type = 'checkbox' id = 'cod' name = 'cod'>
113
				<span> Prepaid </span>
114
				<input type = 'checkbox' id = 'exp' name = 'exp'>
6524 rajveer 115
				<span> On Time Guarantee </span>
116
				<input type = 'checkbox' id = 'otg' name = 'otg'>
6322 amar.kumar 117
				<span> Self Station </span>
118
				<input type = 'checkbox' id = 'stationType' name = 'stationType'>
119
				<br><br>
120
				<button type = "submit">Submit</button>
121
            </form>
122
        </div>
123
 
124
 
3956 chandransh 125
	</body>
126
</html>