Subversion Repositories SmartDukaan

Rev

Rev 30164 | Rev 30189 | 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;">
22
                    <th>Item_Id</th> 
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>
35
	                 <th>amount</th>
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>
52
                    <td>$schemePayoutReport.getId()</td>
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>
71
                    <td>$schemePayoutReport.getAmountType()</td>   
72
                    <td>$schemePayoutReport.getPurchaseReference()</td>
73
 
74
 
75
                    <td>$schemePayoutReport.getInvoiceNumber()</td>
76
 
77
                    <td>$schemePayoutReport.getSioAmount()</td>
78
                    <td>$schemePayoutReport.getStatus()</td>
79
                    <td>$schemePayoutReport.getStatusDescription()</td>
80
 
81
 
30183 manish 82
                    <td>$schemePayoutReport.getCreateTimestamp().format($datehiphenFormatter)</td>
83
 
84
 
30164 manish 85
                    #if($schemePayoutReport.getRolledBackTimestamp())
86
 
30183 manish 87
                    <td>$schemePayoutReport.getRolledBackTimestamp().format($datehiphenFormatter)</td>
30164 manish 88
                    #else
89
                    <td> -- </td>
90
                    #end
91
 
92
 
93
 
94
 
95
               </tr>
96
                #end
97
 
98
            </tbody>
99
 
100
        </table>
101
    </div>
102
 
103
</section>
104
 
105
 
106
 
107
<script>
108
 
109
        var dtable = $('#schemePayoutReportDtable').DataTable(
110
                {
111
                    "scrollX": true,
112
                    "bPaginate": true,
113
                    "bLengthChange": true,
114
                    "bFilter": true,
115
                    "bInfo": false,
116
                    "bAutoWidth": false,
117
 
118
 
119
     });
120
 
121
 
122
 
123
    </script>
124