Subversion Repositories SmartDukaan

Rev

Rev 26478 | Rev 27548 | 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>
27545 tejbeer 49
	    				<th>Stores</th>
50
	    				<th>Head</th>
26418 tejbeer 51
	    				<th>lmtd</th>
52
	    				<th>mtd</th>
27545 tejbeer 53
	    			    <th>Wallet Amount</th>
26418 tejbeer 54
	    				<th>In Stock Investment</th>
55
	    				<th>Total Investment</th>
27545 tejbeer 56
 
57
	    				<th>Indent Qty</th>
58
	    				<th>Indent Value</th>
59
	    				<th>Today Tertiary</th>
60
	    				<th>last 3 days Tertiary</th>
26418 tejbeer 61
	    				<th>Ticket</th>
62
	    				</tr>
26477 amit.gupta 63
				 </thead>
64
	    			<tbody>
26418 tejbeer 65
	    			    #foreach($name in $fofoIdAndallValues.keySet())
66
	    				<tr>
67
	    	 		     <td>$fofoIdAndPartnerMap.get($name).getBusinessName()</td>
27545 tejbeer 68
	    	 		     <td>$fofoIdAndallValues.get($name).getAuthUser()</td>
26418 tejbeer 69
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getLmtd()</td>
70
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getMtd()</td>
27545 tejbeer 71
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getWalletAmount()</td>
26478 amit.gupta 72
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getInStockAmount()</td>
73
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getTotalInvestment()</td>
27545 tejbeer 74
	    	 		     <td>$fofoIdAndallValues.get($name).getInvestment().getUnbilledQty()</td>
75
	    	 		     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getUnbilledAmount()</td>
76
		                 <td>$fofoIdAndallValues.get($name).getLastOneDayTertiary()</td>
77
		                 <td>$fofoIdAndallValues.get($name).getLastThreeDaytertiary()</td>
78
 
26418 tejbeer 79
		                 <td>$fofoIdAndallValues.get($name).getTicket()</td>
80
	    				</tr>
81
	    				 #end
82
 
83
	    		    </tbody>
84
	    		</table>
85
						</div>
86
 
87
 
88
			</div>
89
 
90
 
26475 amit.gupta 91
</section>
92
<script type="text/javascript">
93
$(document).ready(function() {
26476 amit.gupta 94
    indentTable = $('#authretailerstats').DataTable();
95
});
26475 amit.gupta 96
</script>