Subversion Repositories SmartDukaan

Rev

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