Subversion Repositories SmartDukaan

Rev

Rev 34130 | 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>
34133 ranu 20
        <td>Partner Mobile Number</td>
21
        <td>Partner Code</td>
34111 ranu 22
        <td>Order Id</td>
23
        <td>Customer Mobile</td>
24
        <td>Calling Date</td>
34130 ranu 25
        <td>Disposition</td>
26
        <td>Remark</td>
34111 ranu 27
        <td>Payment Status</td>
28
        <td>Insurance Status</td>
29
        <td>Policy Sold Amount</td>
30
        <td>Invoice Number</td>
31
        <td>Serial Number</td>
32
    </tr>
33
    </thead>
34
    <tbody>
35
        #if($upsellingReportModels)
36
            #foreach($report in $upsellingReportModels)
37
            <tr>
38
                <td>$report.getAgentEmail()</td>
34117 ranu 39
                <td>$report.getPartnerName()</td>
34133 ranu 40
                <td>$report.getPartnerMobile()</td>
41
                <td>$report.getCode()</td>
34111 ranu 42
                <td>$report.getOrderId()</td>
43
                <td>$report.getCustomerNumber()</td>
44
                <td>$report.getCallingDate()</td>
34130 ranu 45
                <td>$report.getDisposition()</td>
46
                <td>$report.getRemark()</td>
34111 ranu 47
                <td>$report.getPaymentStatus()</td>
48
                <td>$report.getInsuranceStatus()</td>
49
                <td>$report.getPolicySoldAmount()</td>
50
                <td>$report.getInvoiceNumber()</td>
51
                <td>$report.getSerialNumber()</td>
52
            </tr>
53
            #end
54
 
55
        #else
56
        <tr>
57
            <td colspan="9"> No data found</td>
58
        </tr>
59
        #end
60
    </tbody>
61
</table>
62
 
63
 
64
 
65