Subversion Repositories SmartDukaan

Rev

Rev 23577 | 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>Request Id</th>
                                        <th>Operator</th>
                                        <th>Operator Type</th>
                                        <th>Number</th>
                                        <th>Amount</th>
                                        <th>Commission</th>
                                        <th>Status</th>
                                        <th>Status Message</th>
                                        <th>Created On</th>
                                        <th>Updated On</th>
                                </tr>
                                #if(!$rechargeTransactions.isEmpty())
                                #foreach( $rechargeTransaction in $rechargeTransactions )
                                        <tr class="mobile-recharge-details" data="$rechargeTransaction.getId()">
                                                <td>$rechargeTransaction.getRequestId()</td>
                                                <td>$rechargeOperatorIdRechargeOperatorNameMap.get($rechargeTransaction.getOperatorId())</td>
                                                <td>$rechargeTransaction.getOperatorType()</td>
                                                <td>$rechargeTransaction.getReferenceNumber()</td>
                                                <td>$rechargeTransaction.getAmount()</td>
                                                <td>$rechargeTransaction.getCommission()</td>
                                                #if($rechargeTransaction.getStatus() == "PENDING" || $rechargeTransaction.getStatus() == "SUCCESS" || $rechargeTransaction.getStatus() == "CONNECTION_TIMEOUT")
                                                        <td>$rechargeTransaction.getStatus() &nbsp;&nbsp;<a class="mobile-recharge-check-status" href="javascript:void(0);" data="$rechargeTransaction.getRequestId()">Check Status</a></td>
                                                #else
                                                        <td>$rechargeTransaction.getStatus() </td>
                                                #end
                                                <td>$rechargeTransaction.getStatusMessage()</td>
                                                <td>$rechargeTransaction.getFormattedCreateTimestamp()</td>
                                                <td>$rechargeTransaction.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>