| 26318 |
tejbeer |
1 |
<section>
|
|
|
2 |
|
|
|
3 |
<div class="row">
|
|
|
4 |
<div class="col-lg-12">
|
|
|
5 |
<h3 class="page-header"><i class="icon_document_alt"></i>Franchisee Visit DASHBOARD</h3>
|
|
|
6 |
<ol class="breadcrumb">
|
|
|
7 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
8 |
<li><i class="icon_document_alt"></i>Franchisee Visit </li>
|
|
|
9 |
|
|
|
10 |
</ol>
|
|
|
11 |
</div>
|
|
|
12 |
</div>
|
|
|
13 |
|
|
|
14 |
<div id="franchisee-request-table">
|
|
|
15 |
<div class="row">
|
|
|
16 |
<div class="col-lg-12">
|
|
|
17 |
<table class="table table-border table-condensed table-bordered" id="franchisee-table">
|
|
|
18 |
<thead>
|
|
|
19 |
<tr>
|
|
|
20 |
<th>Partner Name</th>
|
|
|
21 |
<th>Agenda</th>
|
|
|
22 |
<th>Partner Remark</th>
|
|
|
23 |
<th>Outside Visibility</th>
|
|
|
24 |
<th>Instore Visibility</th>
|
|
|
25 |
<th>Outside Stock</th>
|
|
|
26 |
<th>System Knowledge</th>
|
|
|
27 |
<th>Working Device</th>
|
|
|
28 |
<th>Working Printer</th>
|
|
|
29 |
<th>Smartdukaan Tshirt</th>
|
|
|
30 |
<th>Latest Dummies</th>
|
|
|
31 |
<th>Investment</th>
|
|
|
32 |
<th>mtd</th>
|
|
|
33 |
<th>status</th>
|
|
|
34 |
<th>created_by</th>
|
|
|
35 |
<th>Assign</th>
|
|
|
36 |
<th>Created</th>
|
|
|
37 |
<th>Updated</th>
|
|
|
38 |
|
|
|
39 |
</tr>
|
|
|
40 |
</thead>
|
|
|
41 |
<tbody>
|
|
|
42 |
#if(!$franchiseeVisits.isEmpty())
|
|
|
43 |
#foreach( $request in $franchiseeVisits )
|
|
|
44 |
<tr class="open-lead" data="$request.getId()">
|
|
|
45 |
<td>$request.getPartnerName()</td>
|
|
|
46 |
<td>$request.getAgenda()</td>
|
|
|
47 |
<td>$request.getPartnerRemark()</td>
|
|
|
48 |
<td>$request.getOutsideVisibity()</td>
|
|
|
49 |
<td>$request.getInstoreVisibility()</td>
|
|
|
50 |
<td>$request.getOutsideStock()</td>
|
|
|
51 |
<td>$request.getSystemKnowledge()</td>
|
|
|
52 |
<td>$request.getWorkingDevice()</td>
|
|
|
53 |
<td>$request.getWorkingPrinter()</td>
|
|
|
54 |
<td>$request.getWorkingPrinter()</td>
|
|
|
55 |
<td>$request.getCarryBags()</td>
|
|
|
56 |
<td>$request.getSmartdukaanTshirt()</td>
|
|
|
57 |
<td>$request.getLatestDummies()</td>
|
|
|
58 |
<td>$request.getInvestment()</td>
|
|
|
59 |
<td>$request.getMtd()</td>
|
|
|
60 |
<td>$request.getHygiene()</td>
|
|
|
61 |
<td>$request.getStatus()</td>
|
|
|
62 |
#if($authIdAndAuthUserMap.get($request.getAssignTo()))
|
|
|
63 |
<td>$authIdAndAuthUserMap.get($request.getAssignTo()).getFirstName()</td>
|
|
|
64 |
#else
|
|
|
65 |
<td></td>
|
|
|
66 |
#end
|
|
|
67 |
|
|
|
68 |
<td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
|
|
|
69 |
<td>$request.getUpdatedTimestamp().format($dateTimeFormatter)</td>
|
|
|
70 |
|
|
|
71 |
|
|
|
72 |
</tr>
|
|
|
73 |
#end
|
|
|
74 |
#else
|
|
|
75 |
<tr>
|
|
|
76 |
<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
77 |
</tr>
|
|
|
78 |
#end
|
|
|
79 |
</tbody>
|
|
|
80 |
</table>
|
|
|
81 |
</div>
|
|
|
82 |
</div>
|
|
|
83 |
</div>
|
|
|
84 |
|
|
|
85 |
</section>
|