Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
34111 ranu 1
<script>
2
    $(document).ready(function () {
3
        $('#upselling-report-table').DataTable(
4
                {
5
                    "bPaginate": true,
6
                    "bLengthChange": true,
7
                    "bFilter": true,
8
                    "bInfo": false,
9
                    "bAutoWidth": false
10
                }
11
        );
12
 
13
    });
14
</script>
15
<table class="table table-border table-condensed table-bordered" style="width:100%" id="upselling-report-table">
16
    <thead>
17
    <tr>
18
        <td>Agent Email</td>
34117 ranu 19
        <td>Partner Name</td>
34111 ranu 20
        <td>Order Id</td>
21
        <td>Customer Mobile</td>
22
        <td>Calling Date</td>
34130 ranu 23
        <td>Disposition</td>
24
        <td>Remark</td>
34111 ranu 25
        <td>Payment Status</td>
26
        <td>Insurance Status</td>
27
        <td>Policy Sold Amount</td>
28
        <td>Invoice Number</td>
29
        <td>Serial Number</td>
30
    </tr>
31
    </thead>
32
    <tbody>
33
        #if($upsellingReportModels)
34
            #foreach($report in $upsellingReportModels)
35
            <tr>
36
                <td>$report.getAgentEmail()</td>
34117 ranu 37
                <td>$report.getPartnerName()</td>
34111 ranu 38
                <td>$report.getOrderId()</td>
39
                <td>$report.getCustomerNumber()</td>
40
                <td>$report.getCallingDate()</td>
34130 ranu 41
                <td>$report.getDisposition()</td>
42
                <td>$report.getRemark()</td>
34111 ranu 43
                <td>$report.getPaymentStatus()</td>
44
                <td>$report.getInsuranceStatus()</td>
45
                <td>$report.getPolicySoldAmount()</td>
46
                <td>$report.getInvoiceNumber()</td>
47
                <td>$report.getSerialNumber()</td>
48
            </tr>
49
            #end
50
 
51
        #else
52
        <tr>
53
            <td colspan="9"> No data found</td>
54
        </tr>
55
        #end
56
    </tbody>
57
</table>
58
 
59
 
60
 
61