Subversion Repositories SmartDukaan

Rev

Rev 33815 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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