Subversion Repositories SmartDukaan

Rev

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