Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23505 ashik.ali 1
<div class="row">
2
	<div class="col-lg-12">
3
		<table class="table table-striped table-advance table-hover">
4
			<tbody>
5
				<tr>
6
					<th>Request Id</th>
7
					<th>Operator</th>
8
					<th>Operator Type</th>
9
					<th>Number</th>
10
					<th>Amount</th>
23528 ashik.ali 11
					<th>Commission</th>
23505 ashik.ali 12
					<th>Status</th>
13
					<th>Status Message</th>
14
					<th>Created On</th>
15
					<th>Updated On</th>
16
				</tr>
17
				#if(!$rechargeTransactions.isEmpty())
18
	    			#foreach( $rechargeTransaction in $rechargeTransactions )
19
	    				<tr class="mobile-recharge-details" data="$rechargeTransaction.getId()">
20
	    					<td>$rechargeTransaction.getRequestId()</td>
21
	    					<td>$rechargeOperatorIdRechargeOperatorNameMap.get($rechargeTransaction.getOperatorId())</td>
22
	    					<td>$rechargeTransaction.getOperatorType()</td>
23
	    					<td>$rechargeTransaction.getReferenceNumber()</td>
24
	    					<td>$rechargeTransaction.getAmount()</td>
23528 ashik.ali 25
	    					<td>$rechargeTransaction.getCommission()</td>
23505 ashik.ali 26
	    					<td>$rechargeTransaction.getStatus()</td>
27
	    					<td>$rechargeTransaction.getStatusMessage()</td>
28
	    					<td>$rechargeTransaction.getFormattedCreateTimestamp()</td>
29
	    					<td>$rechargeTransaction.getFormattedUpdateTimestamp()</td>
30
	    				</tr>
31
	    			#end
32
    			#else
33
    				<tr>
34
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
35
    				</tr>
36
    			#end
37
			</tbody>
38
		</table>
39
	</div>
40
</div>