Subversion Repositories SmartDukaan

Rev

Rev 30859 | Blame | Compare with Previous | Last modification | View Log | RSS feed


<script type="text/javascript">

    $(document).ready(function () {
    
       
                
      var dtable = $('#sdCredit').DataTable({
             "scrollX": true,
            "scrollY": "518px",
            scrollCollapse: true,
              "fixedHeader": true,
             "order": [[ 0, "desc" ]],
             fixedColumns:   {
            leftColumns: 3
        },
       });
    
    });
    
    
    
    
    
</script>



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

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

            <tr style="color:black;">
                <th>Id</th>
                <th>Code</th>
                <th>Partner Name</th>
                <th>Security Check</th>
                <th>Suggested Limit</th>
                <th>limit</th>
                <th>HardLimit</th>
                <th>Utilized Limit</th>
                <th>Available Limit</th>
                <th>Interest (per day %)</th>
                <th>Free days</th>
                <th>Credit Duration</th>
                <th>Risk</th>
                <th>Action</th>
                </tr>
            </thead>
            <tbody>
                #foreach($cr in $customRetailerMap.entrySet() )
                 #set ($customRetailer = $cr.getValue())
 
                 <tr>
                   #parse("sd-credit-requirement-row.vm")

                </tr>
             
                #end

            </tbody>

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