Subversion Repositories SmartDukaan

Rev

Rev 32771 | 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">
4
			<h3 class="page-header"><i class="icon_document_alt"></i>COLLECTION REPORT</h3>
5
			<ol class="breadcrumb">
32771 raveendra. 6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("reportdailycollection.home")</a></li>
7
				<li><i class="icon_document_alt"></i>#springMessage("reportdailycollection.reports")</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("reportdailycollection.from")  <input type="date" id="startDate-collection-summary" placeholder=""   name="" value="$startDate" >
30164 manish 16
 
32771 raveendra. 17
		   #springMessage("reportdailycollection.to") <input type="date" id="endDate-collection-summary" placeholder=""  value="$endDate">
30164 manish 18
 
19
			<button type="submit" class="download-collection-summary">Download Report </button>
20
		</div>
21
 
22
    <div class="col-lg-12">
23
        <table class="table table-border table-condensed table-bordered" id="collectionSummaryTable" style="width:100%">
24
 
25
            <thead class="row htable" style="background:#F5F5F5;">
26
 
27
            <tr style="color:black;">
32771 raveendra. 28
                <th>#springMessage("reportdailycollection.date")</th>
32779 shampa 29
                <th>#springMessage("reportdailycollection.referencetype")</th>
32771 raveendra. 30
                <th>#springMessage("reportdailycollection.cash")</th>
31
                <th>#springMessage("reportdailycollection.pinelabs")</th>
32779 shampa 32
                <th>#springMessage("reportdailycollection.bajajfinserv")</th>
33
                <th>#springMessage("reportdailycollection.homecredit")</th>
32771 raveendra. 34
                <th>#springMessage("reportdailycollection.paymt")</th>
35
                <th>#springMessage("reportdailycollection.capitalfirst")</th>
36
                <th>#springMessage("reportdailycollection.zestmoney")</th>
32779 shampa 37
                <th>#springMessage("reportdailycollection.samsungsure")</th>
32771 raveendra. 38
                <th>#springMessage("reportdailycollection.totalamount")</th>
30164 manish 39
 
40
 
41
            </tr>
42
            </thead>
43
            <tbody>
44
                #foreach($collectionSummary in $collectionSummaryList )
45
               <tr>
46
               <td>$collectionSummary.getDate().format($datehiphenFormatter)</td>
47
                <td>$collectionSummary.getReferenceType()</td>
48
                  <td>$collectionSummary.getCash()</td>
49
                   <td>$collectionSummary.getPinelabs()</td>
50
                    <td>$collectionSummary.getBajajFinserv()</td>
51
                     <td>$collectionSummary.getHomeCredit()</td>
52
                      <td>$collectionSummary.getPaytm()</td>
53
 
54
                     <td>$collectionSummary.getCapitalFirst()</td>
55
                      <td>$collectionSummary.getZestMoney()</td>
56
                       <td>$collectionSummary.getSamsungSure()</td>
57
                     <td>$collectionSummary.getTotalAmount()</td>
58
 
59
               </tr>
60
                #end
61
 
62
            </tbody>
63
 
64
        </table>
65
    </div>
66
 
67
</section>
68
 
69
 
70
 
71
<script>
72
 
73
        var dtable = $('#collectionSummaryTable').DataTable(
74
                {
75
 
76
                    "bPaginate": true,
77
                    "bLengthChange": true,
78
                    "bFilter": true,
79
                    "bInfo": false,
80
                    "bAutoWidth": false,
81
                   "pageLength": 20,
82
 
83
     });
84
 
85
 
86
 
87
    </script>
88