Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<section class="wrapper">            
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header">Invoicewise Scheme Out Summary</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>Invoicewise Scheme Out Summary</li>                                                        
                        </ol>
                </div>
        </div>
                <div class="row col-lg-12"  style="float: right;">
                
                  
                        <button type="submit" class="download-invoicewise-scheme-out-report">Download Report </button>
                </div>
         
    <div class="col-lg-12">
        <table class="table table-border table-condensed table-bordered" id="invoicewiseSchemeOutReport" style="width:100%">

            <thead class="row htable" style="background:#F5F5F5;">
            <tr style="color:black;">
                    <th>InvoiceNumber </th>
        
                      <th>quantity </th>
                       <th> brand </th>
        
                            <th> modelName </th>
        
                           <th>modelNumber </th>
        
                           <th>color </th>
        
                             <th>amount </th>
              </tr>
            </thead>
            <tbody>
                #foreach($focoSchemeOutReport in $focoSchemeOutReports )
               <tr>
                      <td> $focoSchemeOutReport.getInvoiceNumber()</td>
                    <td>$focoSchemeOutReport.getQuantity()</td>
                 
                    <td>$focoSchemeOutReport.getBrand()</td>
                  
                    <td>$focoSchemeOutReport.getModelName()</td>
                    <td>$focoSchemeOutReport.getModelNumber()</td>
                  
                  
                    <td>$focoSchemeOutReport.getColor()</td>
                    <td>$focoSchemeOutReport.getAmount()</td>
                  
                   
                
               </tr>
                #end

            </tbody>

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



<script>

        var dtable = $('#invoicewiseSchemeOutReport').DataTable(
                {
                    "scrollX": true,
                    "bPaginate": true,
                    "bLengthChange": true,
                    "bFilter": true,
                    "bInfo": false,
                    "bAutoWidth": false,
                  
                     
     });
  
   
    
    </script>