| 28701 |
tejbeer |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>Planogram</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>PLANOGRAM</li>
|
|
|
8 |
|
|
|
9 |
</ol>
|
|
|
10 |
</div>
|
|
|
11 |
</div>
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
<div id="planogram-table">
|
|
|
15 |
<div class="row">
|
|
|
16 |
<div class="col-lg-12">
|
|
|
17 |
<table class="table table-striped table-advance table-hover">
|
|
|
18 |
<tbody>
|
|
|
19 |
<tr>
|
|
|
20 |
<th>Retailer Id</th>
|
|
|
21 |
<th>Retailer Name</th>
|
|
|
22 |
<th>Email</th>
|
|
|
23 |
<th>City</th>
|
|
|
24 |
<th>State</th>
|
|
|
25 |
<th>Mobile</th>
|
|
|
26 |
<th>Create Timestamp</th>
|
|
|
27 |
<th>Update Timestamp</th>
|
|
|
28 |
<th colspan = 2>Action</th>
|
|
|
29 |
|
|
|
30 |
</tr>
|
|
|
31 |
#if(!$byPassRequest.isEmpty())
|
|
|
32 |
#foreach( $request in $byPassRequest )
|
|
|
33 |
<tr class="by-pass-table" data="$request.getId()">
|
|
|
34 |
<td>$request.getFofoId()</td>
|
|
|
35 |
<td>$customRetailerMap.get($request.getFofoId()).getBusinessName()</td>
|
|
|
36 |
<td>$customRetailerMap.get($request.getFofoId()).getEmail()</td>
|
|
|
37 |
<td>$customRetailerMap.get($request.getFofoId()).getAddress().city</td>
|
|
|
38 |
<td>$customRetailerMap.get($request.getFofoId()).getAddress().state</td>
|
|
|
39 |
<td>$customRetailerMap.get($request.getFofoId()).getMobileNumber()</td>
|
|
|
40 |
<td>$request.getCreatedTimeStamp().format($dateTimeFormatter)</td>
|
|
|
41 |
<td>$request.getUpdatedTimestamp().format($dateTimeFormatter)</td>
|
|
|
42 |
|
|
|
43 |
<td><button class="btn btn-primary request-approve" data-requestid="$request.getId()" data-status="APPROVED" type="button" >Approve</button>
|
|
|
44 |
</td>
|
|
|
45 |
|
|
|
46 |
<td><button class="btn btn-primary request-rejected" data-requestid="$request.getId()" data-status="REJECTED" type="button" >Reject</button>
|
|
|
47 |
</td>
|
|
|
48 |
|
|
|
49 |
</tr>
|
|
|
50 |
#end
|
|
|
51 |
#else
|
|
|
52 |
<tr>
|
|
|
53 |
<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
54 |
</tr>
|
|
|
55 |
#end
|
|
|
56 |
</tbody>
|
|
|
57 |
</table>
|
|
|
58 |
</div>
|
|
|
59 |
</div>
|
|
|
60 |
</div>
|
|
|
61 |
|
|
|
62 |
|
|
|
63 |
</section>
|