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>Wallet Statement</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>Wallet Statement</li>						  	
8
			</ol>
9
		</div>
10
	</div>
11
		<div class="row col-lg-12"  style="float: right;">
12
 
13
 
14
 
15
		  From  <input type="date" id="startDate-wallet-summary-report" placeholder=""   name="" value="$startDate" >
16
 
17
		   To <input type="date" id="endDate-wallet-summary-report" placeholder=""  value="$endDate">
18
 
19
			<button type="submit" class="download-wallet-summary-report">Download Report </button>
20
		</div>
21
 
22
    <div class="col-lg-12">
23
        <table class="table table-border table-condensed table-bordered" id="walletSummaryReport" style="width:100%">
24
 
25
            <thead class="row htable" style="background:#F5F5F5;">
26
 
27
            <tr style="color:black;">
28
                    <th> Id</th> 
29
                    <th> Code</th>
30
	                 <th> Name</th>
31
	                 <th> Email</th>
32
 
33
	                 <th>  Phone</th>
34
	                   <th> Amount</th>
35
	                  <th> Refundable_amount</th>
36
	                   <th>  Reference</th>
37
	                   <th>  Reference_type</th>
38
	                    <th>  Business_timestamp</th>
39
	                    <th> Description</th>
40
 
41
 
42
            </tr>
43
            </thead>
44
            <tbody>
45
                #foreach($walletSummart in $walletSummartList )
46
               <tr>
47
               <td>$walletSummart.getId()</td>
48
                <td>$walletSummart.getCode()</td>
49
                 <td>$walletSummart.getName()</td>
50
                  <td>$walletSummart.getEmail()</td>
51
 
52
 
53
                   <td>$walletSummart.getPhone()</td>
54
                    <td>$walletSummart.getAmount()</td>
55
                  <td>$walletSummart.getRefundableAmount()</td>
56
                 <td>$walletSummart.getReference()</td>
57
 
58
                  <td>$walletSummart.getReferenceType()</td>
59
                   #if($walletSummart.getBusinessTimestamp())
60
                   <td>$walletSummart.getBusinessTimestamp()</td>
61
 
62
                   #else
63
                    <td>--</td>
64
                   #end
65
                    <td>$walletSummart.getDescription()</td>
66
 
67
               </tr>
68
                #end
69
 
70
            </tbody>
71
 
72
        </table>
73
    </div>
74
 
75
</section>
76
 
77
 
78
 
79
<script>
80
 
81
        var dtable = $('#walletSummaryReport').DataTable(
82
                {
83
                    "scrollX": true,
84
                    "bPaginate": true,
85
                    "bLengthChange": true,
86
                    "bFilter": true,
87
                    "bInfo": false,
88
                    "bAutoWidth": false,
89
 
90
 
91
     });
92
 
93
 
94
 
95
    </script>
96