Subversion Repositories SmartDukaan

Rev

Rev 23556 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23528 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>Recharge Type</th>
7
					<th>Operator</th>
8
					<th>Operator Type</th>
9
					<th>Amount Type</th>
10
					<th>Amount</th>
11
					<th>Created On</th>
12
					<th>Updated On</th>
13
				</tr>
14
				#if(!$rechargeCommissions.isEmpty())
15
	    			#foreach( $rechargeCommission in $rechargeCommissions )
16
	    				<tr class="recharge-commission-details" data="$rechargeCommission.getOperatorId()">
17
	    					#set($rechargeOperator = $rechargeOperatorIdRechargeOperatorMap.get($rechargeCommission.getOperatorId()))
18
	    					<td>$rechargeOperator.getRechargeType()</td>
19
	    					<td>$rechargeOperator.getName()</td>
20
	    					#if($rechargeOperator.getRechargeType() == "MOBILE")
21
	    						<td>$rechargeOperator.getOperatorType()</td>
22
	    					#else
23
	    						<td></td>
24
	    					#end
25
	    					<td>$rechargeCommission.getAmountType()</td>
26
	    					<td>$rechargeCommission.getAmount()</td>
27
	    					<td>$rechargeCommission.getFormattedCreateTimestamp()</td>
28
	    					<td>$rechargeCommission.getFormattedUpdateTimestamp()</td>
29
	    				</tr>
30
	    			#end
31
    			#else
32
    				<tr>
33
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
34
    				</tr>
35
    			#end
36
			</tbody>
37
		</table>
38
	</div>
39
</div>