Subversion Repositories SmartDukaan

Rev

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

<section class="wrapper">            
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>GRN Request</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>GRN Request</li>
                        </ol>
                </div>
        </div>
         
<div class="row">

<div class="col-lg-4">
            <table id="grn-pending-request" class="table table-striped table-advance table-hover" >
              <thead>
                <tr>
                 <th> Invoice Id</th>
                 <th> Invoice Number</th>
                 <th> Invoice Date</th>

                 <th> Supplier</th>
                 <th> Status</th>
                </tr>
              </thead> 
                
              <tbody> 
              
              
               #foreach($grnRequest in $grnRequests)
                <tr>
                <td><a onclick="getGrnRequestItems($grnRequest.getId(),$grnRequest.getInvoiceId())">$grnRequest.getInvoiceId()</a></td>
                <td>$warehouseSupplierInvoiceMap.get($grnRequest.getInvoiceId()).getInvoiceNumber()</td>
                <td>$warehouseSupplierInvoiceMap.get($grnRequest.getInvoiceId()).getInvoiceDate().format($dateFormatter)</td>

                <td>$supplierMap.get($grnRequest.getSupplierId()).getName()</td>
                <td>$grnRequest.getStatus() </td>
                
               </tr>
               #end
                 
             </tbody>
           </table>
  </div>

  
 
  <div class="col-lg-8">
        <div class="grnRequestItemContainer">
          
   </div>
  </div>
 
  
  </section>