Subversion Repositories SmartDukaan

Rev

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

<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>

<section class="wrapper">
    <div class="row">
        <div class="col-lg-12">
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Verification</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>Partner Verification</li>
            </ol>
        </div>
    </div>
    <div class="col-lg-12">
        <table class="table table-border table-condensed table-bordered" id="partnerVerification" style="width:100%">

            <thead class="row htable" style="background:#F5F5F5;">

            <tr style="color:black;">
                <th>Id</th>
                <th>Outlet Name</th>
                 <th>Phone Number</th>
                <th>City</th>
                <th>Brand Fees</th>
                <th>Brand Fees Received</th>
                 <th>NOC Upload</th>
                <th>NOC From GT </th>
                <th>RBM</th>
                <th>Comment</th>
                <th>Languages</th>
                <th>Checklist</th>
                <th>Approval</th>
                <th>Veri Done</th>   
            </tr>
            </thead>
            <tbody>
                #foreach($pob in $partnerOnBoardingPendings )
                   #if($partnerVerificationPanelMap.containsKey($pob.getId()))
                   
                    #if($pob.getHoldTimestamp())
                     <tr class="hold-verification">
                    #parse("partner-onboarding-verification-index.vm")

                     </tr>
                    #else
                #if($partnerVerificationPanelMap.containsKey($pob.getId()))
                 <tr>
                        #parse("partner-onboarding-verification-index.vm")
                </tr>
                #else
                #end
                
                
                
                #end
                
                #else
                
                #end
                
                #end

            </tbody>

        </table>
    </div>
</section>


<section class="wrapper">
    <div class="row">
        <div class="col-lg-12">
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Billing</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>Partner Billing</li>
            </ol>
        </div>
    </div>
    <div class="col-lg-6">
        <table class="table table-border table-condensed table-bordered" id="partnerbilling" style="width:100%">

            <thead class="row htable" style="background:#F5F5F5;">

            <tr style="color:black;">
                <th>Id</th>
                <th>Outlet Name</th>
                <th>Phone Number</th>
                <th>City</th>
                <th>Billing Status</th>
                   <th>Submit</th>
             
            </tr>
            </thead>
            <tbody>
                #foreach($pob in $partnerOnBoardingPendings )
                   #if($partnerVerificationBillingMap.containsKey($pob.getId()))
                
                     #if($pob.getHoldTimestamp())
                     <tr class="hold-verification">
              
                 
                  #parse("partner-onboarding-billing-index.vm")
                     </tr>
                    #else
                      
                #if($partnerVerificationBillingMap.containsKey($pob.getId()))
              
                <tr>
                           #parse("partner-onboarding-billing-index.vm")
             
                </tr>
                  
            #else
                #end
                
                
                
                #end
                
                #else
                
                #end
                
                #end
                
                
               

            </tbody>

        </table>
    </div>
</section>


<script type="text/javascript">

    $(document).ready(function () {
    
    
                
      var dtable = $('#partnerVerification').DataTable({
             "scrollX": true,
            "scrollY": "518px",
            scrollCollapse: true,
              "fixedHeader": true,
             
        fixedColumns:   {
            leftColumns: 2
        },
        
     });   
     
     
       var table = $('#partnerbilling').DataTable({
             "scrollX": true,
            "scrollY": "518px",
            scrollCollapse: true,
              "fixedHeader": true,
             
     
        
     });   
     
     
    });
   
    
</script>


<style>
.hold-verification td{
background-color: crimson !important;


}
</style>