Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
33010 shampa 1
<section class="wrapper">
2
    <div class="row">
3
        <div class="col-lg-12">
4
            <h3 class="page-header"><i class="icon_document_alt"></i>#springMessage("reportsofferpayoutdump.offerpayoutdumpreport")</h3>
5
            <ol class="breadcrumb">
6
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("reportsofferpayoutdump.home")</a></li>
7
                <li><i class="icon_document_alt"></i>#springMessage("reportsofferpayoutdump.offerpayoutdumpreport")</li>
8
            </ol>
9
        </div>
10
    </div>
11
    <div class="row col-lg-12" style="float: right;">
12
 
13
 
14
        #springMessage("reportsofferpayoutdump.from") <input type="date" id="startDate-offer-payout-dump" placeholder="" name="" value="$startDate">
15
 
16
        #springMessage("reportsofferpayoutdump.to") <input type="date" id="endDate-offer-payout-dump" placeholder="" value="$endDate">
17
 
18
        <button type="submit" class="download-offer-payout-dump-report">#springMessage("reportsofferpayoutdump.downloadreport")</button>
19
        <button type="submit" class="offer-payout-fetch-report">#springMessage("reportsofferpayoutdump.fetchreport")</button>
20
    </div>
21
 
22
    <div class="col-lg-12">
23
        <table class="table table-border table-condensed table-bordered" id="offerPayoutDumpReportDtable"
24
               style="width:100%">
25
 
26
            <thead class="row htable" style="background:#F5F5F5;">
27
            <tr style="color:black;">
28
 
29
 
30
 
31
                <th>Model Name </th>
32
                <th>Model Number</th>
33
                <th>Brand</th>
34
 
35
                <th>Color</th>
36
 
37
                <th>Offer Id</th>
38
 
39
                <th>Name</th>
40
                <th>Type</th>
41
                <th>Serial Number</th>
42
                <th>Slab Amount</th>
43
 
44
 
45
 
46
 
47
 
48
 
49
 
50
 
51
                <th>Description</th>
52
                <th>Created Timestamp</th>
53
                <th>Rejected Timestamp</th>
54
 
55
            </tr>
56
            </thead>
57
            <tbody>
58
                #foreach($offerPayoutDumpReport in $offerPayoutDumpReports )
59
                <tr>
60
 
61
 
62
 
63
                    <td>$offerPayoutDumpReport.getModelName()</td>
64
                    <td>$offerPayoutDumpReport.getModelNumber()</td>
65
                    <td>$offerPayoutDumpReport.getBrand()</td>
66
 
67
 
68
                    <td>$offerPayoutDumpReport.getColor()</td>
69
 
70
                    <td>$offerPayoutDumpReport.getOfferId()</td>
71
 
72
                    <td>$offerPayoutDumpReport.getName()</td>
73
 
74
 
75
                    <td>$offerPayoutDumpReport.getType()</td>
76
 
77
                    #if($offerPayoutDumpReport.getSerialNumber())
78
                        <td> $offerPayoutDumpReport.getSerialNumber()</td>
79
                    #else
80
 
81
                        <td>--</td>
82
                    #end
83
                    <td>$offerPayoutDumpReport.getSlabAmount()</td>
84
 
85
 
86
 
87
 
88
 
89
                    #if($offerPayoutDumpReport.getDescription())
90
                        <td>$offerPayoutDumpReport.getDescription()</td>
91
 
92
                    #else
93
                        <td>--</td>
94
                    #end
95
                    <td>$offerPayoutDumpReport.getCreateTimestamp().format($datehiphenFormatter)</td>
96
 
97
                    #if($offerPayoutDumpReport.getRejectTimestamp())
98
 
99
                        <td>$offerPayoutDumpReport.getRejectTimestamp().format($datehiphenFormatter)</td>
100
                    #else
101
                        <td> --</td>
102
                    #end
103
 
104
 
105
                </tr>
106
                #end
107
 
108
            </tbody>
109
 
110
        </table>
111
    </div>
112
 
113
</section>
114
 
115
 
116
<script>
117
 
118
 
119
    var dtable = $('#offerPayoutDumpReportDtable').DataTable(
120
            {
121
                "scrollX": true,
122
                "bPaginate": true,
123
                "bLengthChange": true,
124
                "bFilter": true,
125
                "bInfo": false,
126
                "bAutoWidth": false,
127
 
128
 
129
            });
130
 
131
 
132
</script>