Subversion Repositories SmartDukaan

Rev

Rev 26476 | Rev 26478 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26418 tejbeer 1
<section>
2
 
3
 
26475 amit.gupta 4
<!--<style>
26418 tejbeer 5
	.table-striped > tbody > tr:nth-child(odd) > td{
6
  		background: white;
7
  		background-color: white;
8
	}
9
	.table-striped > tbody > tr:nth-child(even) > td{
10
  		background: white;
11
  		background-color:white;
12
	}
13
	.table-striped > tbody > tr:hover > td,
14
	.table-striped > tbody > tr:hover {
15
		background-color: #e98c8f;
16
	  	color:white;
17
	}
18
	.btn:hover{
19
  		color: grey;
20
  		text-decoration: none;
21
	}
22
	.btn-primary:hover{
23
  		color: grey;
24
  		text-decoration: none;
25
	}
26
	.sale-details{
27
		cursor:pointer;
28
	}
26475 amit.gupta 29
</style>-->
26418 tejbeer 30
 
31
<section class="wrapper">
32
	<div class="row">
33
		<div class="col-lg-12">
34
			<h3 class="page-header"><i class="icon_document_alt"></i>Details</h3>
35
			<ol class="breadcrumb">
36
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
37
				<li><i class="icon_document_alt"></i>Auth User Detail</li>					  	
38
			</ol>
39
		</div>
40
	</div>
41
 
42
 
43
<div class="row">
44
 
45
					<div class="col-lg-12">
26475 amit.gupta 46
				 <table id="authretailerstats" class="table table-striped table-advance table-hover">
26477 amit.gupta 47
				 <thead>
26418 tejbeer 48
	    				<tr>
49
	    				<th>Sale</th>
50
	    				<th>lmtd</th>
51
	    				<th>mtd</th>
52
	    				<th>Hygiene</th>
53
	    				<th>In Stock Investment</th>
54
	    				<th>Total Investment</th>
55
	    				<th>Ticket</th>
56
	    				</tr>
26477 amit.gupta 57
				 </thead>
58
	    			<tbody>
26418 tejbeer 59
	    			    #foreach($name in $fofoIdAndallValues.keySet())
60
	    				<tr>
61
	    	 		     <td>$fofoIdAndPartnerMap.get($name).getBusinessName()</td>
62
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getLmtd()</td>
63
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getMtd()</td>
64
	    	 		     <td>$fofoIdAndallValues.get($name).getHygiene()</td>
26474 amit.gupta 65
	    	 		     <td class="currency">$authIdAndallValues.get($name).getInvestment().getInStockAmount()</td>
66
	    	 		     <td class="currency">$authIdAndallValues.get($name).getInvestment().getTotalInvestment()</td>
26418 tejbeer 67
		                 <td>$fofoIdAndallValues.get($name).getTicket()</td>
68
	    				</tr>
69
	    				 #end
70
 
71
	    		    </tbody>
72
	    		</table>
73
						</div>
74
 
75
 
76
			</div>
77
 
78
 
26475 amit.gupta 79
</section>
80
<script type="text/javascript">
81
$(document).ready(function() {
26476 amit.gupta 82
    indentTable = $('#authretailerstats').DataTable();
83
});
26475 amit.gupta 84
</script>