Subversion Repositories SmartDukaan

Rev

Rev 33809 | Rev 34066 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
33809 ranu 1
<div class="col-lg-12">
33815 ranu 2
    <h4>$loanStatementReportModels.get(0).getStoreName() ($loanStatementReportModels.get(0).getState()
3
        - $loanStatementReportModels.get(0).getCode()) </h4>
33809 ranu 4
    <table class="table table-bordered table-condensed" id="loanStatementSummaryReport" style="width:100%">
5
        <thead class="row htable" style="background:#F5F5F5;">
6
        <tr style="color:black;">
7
            <th>Id</th>
8
            <th>Loan Id</th>
9
            <th>Interest Rate</th>
10
            <th>Initial Amount</th>
11
            <th>Pending Amount</th>
12
            <th>Created On</th>
13
            <th>Due date</th>
14
            <th>Interest Accrued</th>
15
            <th>Interest Paid</th>
16
            <th>Free Days</th>
17
            <th>Reference Type</th>
18
            <th>Amount</th>
19
            <th>Created At</th>
20
            <th>Business Date</th>
21
            <th>Description</th>
22
            <th>Status</th>
23
        </tr>
24
        </thead>
25
        <tbody>
26
            #foreach($loan in $loanStatementReportModels)
27
            <tr>
28
                <td>$loan.getId()</td>
29
                <td>$loan.getLoanId()</td>
30
                <td>$loan.getInterestRate()</td>
31
                <td>$loan.getIntialAmount()</td>
32
                <td>$loan.getPendingAmount()</td>
33
                <td>$loan.getCreatedOn()</td>
34
                <td>$loan.getDueDate()</td>
35
                <td>$loan.getInterestAccrued()</td>
36
                <td>$loan.getInterestPaid()</td>
37
                <td>$loan.getFreeDays()</td>
38
                <td>$loan.getLoanReferenceType()</td>
39
                <td>$loan.getAmount()</td>
40
                <td>$loan.getCreatedAt()</td>
41
                <td>$loan.getBusinessDate()</td>
42
                <td>$loan.getDescription()</td>
43
                <td>$loan.getStatus()</td>
44
            </tr>
45
            #end
46
        </tbody>
47
    </table>
48
</div>