Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4386 anupam.sin 1
<div id="bottom">
2
	<table border="1" cellspacing="0" width="2500">
3
    	<thead>
4
    		<tr>
5
    		<th>AWB Number</th>
6
        	<th>AWB Date</th>
7
        	<th>Order No</th>
8
        	<th>Name</th>
9
        	<th>Address 1</th>
10
        	<th>Address 2</th>
11
        	<th>City</th>
12
        	<th>State</th>
13
        	<th>Pin Code</th>
14
        	<th>Telephone No</th>
15
        	<th>Paymode</th>
16
        	<th>Amount to be Collected</th>
17
        	<th>Shipment Value</th>
18
        	<th>Item ID</th>
19
        	<th>Packet Weight(in Kg)</th>
20
        	<th>Product Name</th>
21
        	<th>Pickup Location</th>
22
        	<th>Customer A/C Code</th>
23
    		</tr>
24
		</thead>
25
		<tbody>
26
			#foreach($detailedAwb in $action.getDetailedAWBs())
27
				<tr>
28
    				<td>$detailedAwb.getAwbNumber()</td>
29
    				<td>$detailedAwb.getAwbDate()</td>
16285 manish.sha 30
					#if($detailedAwb.getMasterOrderId()=='-')
31
						<td>$detailedAwb.getOrderId()</td>
32
					#else
33
						<td>$detailedAwb.getMasterOrderId()</td>
34
					#end
4386 anupam.sin 35
    				<td>$detailedAwb.getCustomerName()</td>
36
    	            <td>$detailedAwb.getAddress1()</td>
37
    	            <td>$detailedAwb.getAddress2()</td>
38
    	            <td>$detailedAwb.getCity()</td>
39
    				<td>$detailedAwb.getState()</td>
40
    				<td>$detailedAwb.getPinCode()</td>
41
    				<td>$detailedAwb.getPhoneNumber()</td>
42
    				<td>$detailedAwb.getPaymentMode()</td>
43
    				<td>$detailedAwb.getAmountToCollect()</td>
44
    				<td>$detailedAwb.getShipmentValue()</td>
45
    				<td>$detailedAwb.getItemId()</td>
46
    	            <td>$detailedAwb.getPacketWeight()</td>
47
    				<td>$detailedAwb.getProductName()</td>
48
    	            <td>$detailedAwb.getPickupLocation()</td>
49
    				<td>$detailedAwb.getAccountCode()</td>
50
				</tr>
51
			#end
52
		</tbody>
53
	</table>
54
</div>