Subversion Repositories SmartDukaan

Rev

Rev 32170 | 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
<script type="text/javascript">
51
	function getAuthUserPartners(authId){
52
 
53
		doGetAjaxRequestHandler(context + "/getAuthUserPartners?authId="+authId,
54
			function(response) {
55
				$('#' + "main-content").html(response);
56
				console.log(response)
57
			});
58
	}
59
	</script>
60
 
61
<section class="wrapper">
62
	<div class="row">
63
		<div class="col-lg-12">
64
			<h3 class="page-header"><i class="icon_document_alt"></i>Details</h3>
65
			<ol class="breadcrumb">
66
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
67
				<li><i class="icon_document_alt"></i>Auth User Detail</li>					  	
68
			</ol>
69
		</div>
70
	</div>
71
 
72
 
73
<div class="row">
74
 
75
					<div class="col-lg-6">
76
				 <table class="table table-striped table-advance table-hover">
32171 jai.hind 77
	    			<tbody>
26418 tejbeer 78
	    				<tr>
79
	    				<th>Sale</th>
80
	    				<th>lmtd</th>
81
	    				<th>mtd</th>
82
	    				<th>Hygiene</th>
83
	    				<th>In Stock Investment</th>
84
	    				<th>Total Investment</th>
85
	    				</tr>
86
	    			    #foreach($name in $authIdAndallValues.keySet())
87
	    				<tr onclick="getAuthUserPartners($name)">
88
	    	 		     <td >$authIdAndAuthUserMap.get($name).getFirstName()</td>
89
	    	 		     <td class="currency">$authIdAndallValues.get($name).getLmtd()</td>
90
	    	 		     <td class="currency">$authIdAndallValues.get($name).getMtd()</td>
91
	    	 		     <td>$authIdAndallValues.get($name).getHygiene()</td>
92
	    	 		     <td class="currency">$authIdAndallValues.get($name).getStockInInvestment()</td>
93
	    	 		     <td class="currency">$authIdAndallValues.get($name).getInvestment()</td>
94
 
95
	    				</tr>
96
	    				 #end
97
 
98
	    		    </tbody>
99
	    		</table>
100
						</div>
101
 
102
						<div class="col-lg-4">
103
						 <table class="table table-striped table-advance table-hover">
104
	    			<tbody>
105
	    				<tr>
106
	    				<th>Name </th>
107
	    				<th>Ticket</th>
108
	    				<th>Leads</th>
109
	    				</tr>
110
 
111
	    				#foreach($key in $authIdAndallValues.keySet())
112
	    				<tr>
113
	    	 		     <td>$authIdAndAuthUserMap.get($key).getFirstName()</td>
114
	    	 		     <td>$authIdAndallValues.get($key).getTicket()</td>
115
	    	 		     <td>$authIdAndallValues.get($key).getLeads()</td>
116
		                </tr>
117
	    				 #end
118
 
119
 
120
	    		    </tbody>
121
	    		</table>
122
 
123
			 </div>
124
			</div>
125
 
126
 
127
</section>