Subversion Repositories SmartDukaan

Rev

Rev 23629 | 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>Provider Name</th>
                                        <th>Opening Balance</th>
                                        <th>Closing Balance</th>
                                        <th>Total Amount</th>
                                        <th>Total Commission</th>
                                        <th>Created On</th>
                                </tr>
                                #if(!$dailyRecharges.isEmpty())
                                #foreach( $dailyRecharge in $dailyRecharges )
                                        <tr>
                                                <td>$rechargeProviderIdNameMap.get($dailyRecharge.getProviderId())</td>
                                                <td class="currency">$dailyRecharge.getOpeningBalance()</td>
                                                <td class="currency">$dailyRecharge.getClosingBalance()</td>
                                                <td class="currency">$dailyRecharge.getTotalAmount()</td>
                                                <td class="currency">$dailyRecharge.getTotalCommission()</td>
                                                <td class="currency">$dailyRecharge.getFormattedCreateDate()</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>