Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<section>

<div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>Franchisee Visit DASHBOARD</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>Franchisee Visit </li>             
                                                        
                        </ol>
                </div>
        </div>
        
        <div id="franchisee-request-table">
                <div class="row">
                <div class="col-lg-12">
                        <table class="table table-border table-condensed table-bordered" id="franchisee-table">
                        <thead>
                                        <tr>
                                                <th>Partner Name</th>
                                                <th>Agenda</th>
                                                <th>Partner Remark</th>
                                                <th>Outside Visibility</th>
                                                <th>Instore Visibility</th>
                                                <th>Outside Stock</th>
                                                <th>System Knowledge</th>
                                                <th>Working Device</th>
                                                <th>Working Printer</th>
                                                <th>Smartdukaan Tshirt</th>
                                                <th>Latest Dummies</th>
                                                <th>Investment</th>
                                                <th>mtd</th>
                                                <th>status</th>
                                                <th>created_by</th>
                                                <th>Assign</th>
                                                <th>Created</th>
                                                <th>Updated</th>
                                                                                
                                        </tr>
                        </thead>
                        <tbody>         
                                                #if(!$franchiseeVisits.isEmpty())
                                                #foreach( $request in $franchiseeVisits )
                                                        <tr class="open-lead" data="$request.getId()">
                                                        <td>$request.getPartnerName()</td>
                                                <td>$request.getAgenda()</td>
                                                        <td>$request.getPartnerRemark()</td>
                                                        <td>$request.getOutsideVisibity()</td>
                                                        <td>$request.getInstoreVisibility()</td>
                                                        <td>$request.getOutsideStock()</td>
                                                        <td>$request.getSystemKnowledge()</td>
                                                        <td>$request.getWorkingDevice()</td>
                                                        <td>$request.getWorkingPrinter()</td>
                                                        <td>$request.getWorkingPrinter()</td>
                                                        <td>$request.getCarryBags()</td>
                                                        <td>$request.getSmartdukaanTshirt()</td>
                                                        <td>$request.getLatestDummies()</td>
                                                        <td>$request.getInvestment()</td>
                                                        <td>$request.getMtd()</td>
                                                        <td>$request.getHygiene()</td>
                                                        <td>$request.getStatus()</td>
                                                        #if($authIdAndAuthUserMap.get($request.getAssignTo()))
                                                        <td>$authIdAndAuthUserMap.get($request.getAssignTo()).getFirstName()</td>
                                                        #else
                                                        <td></td>
                                                        #end
                                                        
                                <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
                                                        <td>$request.getUpdatedTimestamp().format($dateTimeFormatter)</td>
                                                        
                                                        
                                                        </tr>   
                                   #end
                                        #else
                                                <tr>
                                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                                </tr>
                                        #end
                                </tbody>
                        </table>
                </div>
            </div>
    </div>
    
</section>