Subversion Repositories SmartDukaan

Rev

Rev 23556 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="row">
        <div class="col-lg-12">
                <table class="table table-striped table-advance table-hover">
                        <tbody>
                                <tr>
                                        <th>Recharge Provider</th>
                                        <th>Recharge Type</th>
                                        <th>Operator</th>
                                        <th>Operator Type</th>
                                        <th>Amount Type</th>
                                        <th>Amount</th>
                                        <th>Created On</th>
                                        <th>Updated On</th>
                                </tr>
                                #if(!$rechargeCommissions.isEmpty())
                                #foreach( $rechargeCommission in $rechargeCommissions )
                                        <tr class="recharge-commission-details" data="$rechargeCommission.getOperatorId()">
                                                #set($rechargeOperator = $rechargeOperatorIdRechargeOperatorMap.get($rechargeCommission.getOperatorId()))
                                                <td>$rechargeProviderIdNameMap.get($rechargeCommission.getProviderId())</td>
                                                <td>$rechargeOperator.getRechargeType()</td>
                                                <td>$rechargeOperator.getName()</td>
                                                #if($rechargeOperator.getRechargeType() == "MOBILE")
                                                        <td>$rechargeOperator.getOperatorType()</td>
                                                #else
                                                        <td></td>
                                                #end
                                                <td>$rechargeCommission.getAmountType()</td>
                                                <td>$rechargeCommission.getFormattedAmount()</td>
                                                <td>$rechargeCommission.getFormattedCreateTimestamp()</td>
                                                <td>$rechargeCommission.getFormattedUpdateTimestamp()</td>
                                        </tr>
                                #end
                        #else
                                <tr>
                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                </tr>
                        #end
                        </tbody>
                </table>
        </div>
</div>