Subversion Repositories SmartDukaan

Rev

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