Subversion Repositories SmartDukaan

Rev

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

<div class="row">
    <div class="col-lg-3">
            <h6 class="modelHeaderCustom" style="font-size:18px;">$customretailer.getBusinessName() ($customretailer.getEmail())</h6>
            </div>
            <div class="col-lg-3">
            <h6 class="modelHeaderCustom" style="font-size:22px;">Wallet Balance: $userWallet.getAmount()</h6>
            </div>
            <div class="col-lg-3">
            <h6 class="modelHeaderCustom" style="font-size:22px;">Total Dues:$totalDue.setScale(2,$ru) </h6>
       </div>
       <div class="col-lg-3">
       <h6 class="modelHeaderCustom" style="font-size:22px;">Total Credit Limit:$creditlimit.setScale(2,$ru) </h6>
       </div>
         <div class="col-lg-3">
              <h6 class="modelHeaderCustom" style="font-size:22px;">Available Credit Limit:$availableLimit.setScale(2,$ru) </h6>
         </div>
 </div>
<div id="reference-table">
    <div class="row">
            <div class="col-lg-12">
                <table class="table table-striped table-advance table-hover">
                    <tbody>
                <tr>
                    <th>Description</th>
                    <th>Amount</th>
                    <th>Reference</th>
                    <th>Reference Type</th>
                    <th>Timestamp</th>

                </tr>
                    #if(!$wallethistory.isEmpty())
                        #foreach( $wallet in $wallethistory )
                        <tr>
                            <td>$wallet.getDescription()</td>
                            <td class="currency">$wallet.getAmount()</td>
                            <td>$wallet.getReference()</td>
                            <td>$wallet.getReferenceType()</td>
                            <td>$wallet.getTimestamp().format($dateTimeFormatter)</td>

                        </tr>
                        #end
                    #else
                    <tr>
                        <td colspan="5" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                    </tr>
                    #end
                </tbody>
            </table>
        </div>
    </div>
</div>