Subversion Repositories SmartDukaan

Rev

Rev 30183 | Rev 33067 | 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">
32771 raveendra. 4
			<h3 class="page-header"><i class="icon_document_alt"></i>#springMessage("reportswalletstatement.walletstatement")</h3>
30164 manish 5
			<ol class="breadcrumb">
32771 raveendra. 6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("reportswalletstatement.home")</a></li>
7
				<li><i class="icon_document_alt"></i>#springMessage("reportswalletstatement.walletstatement")</li>
30164 manish 8
			</ol>
9
		</div>
10
	</div>
11
		<div class="row col-lg-12"  style="float: right;">
12
 
13
 
14
 
32771 raveendra. 15
		  #springMessage("reportswalletstatement.from")  <input type="date" id="startDate-wallet-summary-report" placeholder=""   name="" value="$startDate" >
30164 manish 16
 
32771 raveendra. 17
		   #springMessage("reportswalletstatement.to") <input type="date" id="endDate-wallet-summary-report" placeholder=""  value="$endDate">
30164 manish 18
 
32771 raveendra. 19
			<button type="submit" class="download-wallet-summary-report">#springMessage("reportswalletstatement.downloadreport") </button>
30164 manish 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;">
32771 raveendra. 28
                    <th> #springMessage("reportswalletstatement.id")</th>
29
                    <th> #springMessage("reportswalletstatement.code")</th>
30
	                 <th> #springMessage("reportswalletstatement.name")</th>
31
	                 <th> #springMessage("reportswalletstatement.email")</th>
30164 manish 32
 
32771 raveendra. 33
	                 <th>  #springMessage("reportswalletstatement.phone")</th>
34
	                   <th> #springMessage("reportswalletstatement.amount")</th>
35
	                  <th> #springMessage("reportswalletstatement.refundableamount")</th>
36
	                   <th>  #springMessage("reportswalletstatement.reference")</th>
37
	                   <th>  #springMessage("reportswalletstatement.referencetype")</th>
38
	                    <th>  #springMessage("reportswalletstatement.businesstimestamp")</th>
39
	                    <th> #springMessage("reportswalletstatement.description")</th>
30164 manish 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())
30183 manish 60
                   <td>$walletSummart.getBusinessTimestamp().format($datehiphenFormatter)</td>
30164 manish 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