Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30164 manish 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>SCHEME PAYOUT REPORT</h3>
5
			<ol class="breadcrumb">
6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
7
				<li><i class="icon_document_alt"></i>Scheme PayOut Report</li>						  	
8
			</ol>
9
		</div>
10
	</div>
11
		<div class="row col-lg-12"  style="float: right;">
12
 
13
 
14
			<button type="submit" class="download-scheme-payout-report">Download Report </button>
15
		</div>
16
 
17
    <div class="col-lg-12">
18
        <table class="table table-border table-condensed table-bordered" id="schemePayoutReportDtable" style="width:100%">
19
 
20
            <thead class="row htable" style="background:#F5F5F5;">
21
            <tr style="color:black;">
30189 manish 22
 
30164 manish 23
                     <th>serial_number </th>
24
                    <th>Brand</th>
25
	                 <th>Model Name</th>
26
	                 <th>Model Number</th>
27
 
28
	                 <th>Color</th>
29
	                 <th> Scheme_IN_DP</th>
30
	                 <th>Scheme_out_dp</th>
31
	                 <th>Scheme_Id</th>
32
 
33
	                 <th>Name</th>
34
	                  <th>Type</th>
30189 manish 35
 
30164 manish 36
	                 <th>Purchase_Invoice</th>
37
 
38
 
39
	                 <th>SALE_INOVOICE</th>
40
	                 <th>Amount</th>
41
	                 <th>status</th>
42
 
43
	                 <th>description</th>
44
	                 <th>create_timestamp</th>
45
	                 <th>rolled_back_timestamp</th>
46
 
47
              </tr>
48
            </thead>
49
            <tbody>
50
                #foreach($schemePayoutReport in $schemePayoutReports )
51
               <tr>
30189 manish 52
 
30164 manish 53
                    #if($schemePayoutReport.getSerialNumber())
54
                    <td> $schemePayoutReport.getSerialNumber()</td>
55
                    #else
56
 
57
                    <td>--</td>
58
                    #end
59
                    <td>$schemePayoutReport.getBrand()</td>
60
                    <td>$schemePayoutReport.getModelName()</td>
61
                    <td>$schemePayoutReport.getModelNumber()</td>
62
 
63
 
64
                    <td>$schemePayoutReport.getColor()</td>
65
                    <td>$schemePayoutReport.getSchemeInDp()</td>
66
                    <td>$schemePayoutReport.getSchemeOutDp()</td>
67
                    <td>$schemePayoutReport.getSchemeId()</td>
68
 
69
                    <td>$schemePayoutReport.getName()</td>
70
                    <td>$schemePayoutReport.getType()</td>
30189 manish 71
 
30164 manish 72
                    <td>$schemePayoutReport.getPurchaseReference()</td>
73
 
74
                    <td>$schemePayoutReport.getInvoiceNumber()</td>
75
 
30189 manish 76
                    <td>$nf.format($schemePayoutReport.getSioAmount())</td>
30164 manish 77
                    <td>$schemePayoutReport.getStatus()</td>
30189 manish 78
 
79
                    #if($schemePayoutReport.getStatusDescription())
30164 manish 80
                    <td>$schemePayoutReport.getStatusDescription()</td>
81
 
30189 manish 82
                    #else
83
                    <td>--</td>
84
                    #end
30183 manish 85
                    <td>$schemePayoutReport.getCreateTimestamp().format($datehiphenFormatter)</td>
86
 
30164 manish 87
                    #if($schemePayoutReport.getRolledBackTimestamp())
88
 
30183 manish 89
                    <td>$schemePayoutReport.getRolledBackTimestamp().format($datehiphenFormatter)</td>
30164 manish 90
                    #else
91
                    <td> -- </td>
92
                    #end
93
 
94
 
95
 
96
 
97
               </tr>
98
                #end
99
 
100
            </tbody>
101
 
102
        </table>
103
    </div>
104
 
105
</section>
106
 
107
 
108
 
109
<script>
110
 
111
        var dtable = $('#schemePayoutReportDtable').DataTable(
112
                {
113
                    "scrollX": true,
114
                    "bPaginate": true,
115
                    "bLengthChange": true,
116
                    "bFilter": true,
117
                    "bInfo": false,
118
                    "bAutoWidth": false,
119
 
120
 
121
     });
122
 
123
 
124
 
125
    </script>
126