Subversion Repositories SmartDukaan

Rev

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