Subversion Repositories SmartDukaan

Rev

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

<div class="col-lg-12">
    ##    <h4>$loanStatementReportModels.get(0).getStoreName() ($loanStatementReportModels.get(0).getState()
    ##        - $loanStatementReportModels.get(0).getCode()) </h4>
    <table class="table table-bordered table-condensed" id="loanStatementSummaryReport" style="width:100%">
        <thead class="row htable" style="background:#F5F5F5;">
        <tr style="color:black;">
            <th>Id</th>
            <th>Loan Id</th>
            <th>Interest Rate</th>
            <th>Initial Amount</th>
            <th>Pending Amount</th>
            <th>Created On</th>
            <th>Due date</th>
            <th>Interest Accrued</th>
            <th>Interest Paid</th>
            <th>Free Days</th>
            <th>Reference Type</th>
            <th>Amount</th>
            <th>Created At</th>
            <th>Business Date</th>
            <th>Description</th>
            <th>Status</th>
        </tr>
        </thead>
        <tbody>
            #foreach($loan in $loanStatementReportModels)
            <tr>
                <td>$loan.getId()</td>
                <td>$loan.getLoanId()</td>
                <td>$loan.getInterestRate()</td>
                <td>$loan.getIntialAmount()</td>
                <td>$loan.getPendingAmount()</td>
                <td>$loan.getCreatedOn().format($dateTimeFormatter)</td>
                <td>$loan.getDueDate().format($dateTimeFormatter)</td>
                <td>$loan.getInterestAccrued()</td>
                <td>$loan.getInterestPaid()</td>
                <td>$loan.getFreeDays()</td>
                <td>$loan.getLoanReferenceType()</td>
                <td>$loan.getAmount()</td>
                <td>$loan.getCreatedAt().format($dateTimeFormatter)</td>
                <td>$loan.getBusinessDate().format($dateTimeFormatter)</td>
                <td>$loan.getDescription()</td>
                <td>$loan.getStatus()</td>
            </tr>
            #end
        </tbody>
    </table>
</div>