Subversion Repositories SmartDukaan

Rev

Rev 30183 | Go to most recent revision | Details | 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
                    <td>$schemePayoutReport.getCreateTimestamp()</td>
81
 
82
 
83
                    #if($schemePayoutReport.getRolledBackTimestamp())
84
 
85
                    <td>$schemePayoutReport.getRolledBackTimestamp()</td>
86
                    #else
87
                    <td> -- </td>
88
                    #end
89
 
90
 
91
 
92
 
93
               </tr>
94
                #end
95
 
96
            </tbody>
97
 
98
        </table>
99
    </div>
100
 
101
</section>
102
 
103
 
104
 
105
<script>
106
 
107
        var dtable = $('#schemePayoutReportDtable').DataTable(
108
                {
109
                    "scrollX": true,
110
                    "bPaginate": true,
111
                    "bLengthChange": true,
112
                    "bFilter": true,
113
                    "bInfo": false,
114
                    "bAutoWidth": false,
115
 
116
 
117
     });
118
 
119
 
120
 
121
    </script>
122