Subversion Repositories SmartDukaan

Rev

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

<div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">&times;</button>
        <h4 class="modal-title">LineItems</h4>
</div>
<div class="modal-body" style="height: 300px; overflow:auto">

<div class="row">

 <div class="col-lg-12">
            <table id="purchase-lineitem" class="table table-striped table-advance table-hover" >
              <thead>
                <tr>
                 <th> Po Id</th>
                 <th> Item Id </th>
                 <th> Item Description </th>  
                 <th> Qty</th>  
                 <th> Transfer Price </th>  
                
                </tr>
              </thead> 
                
              <tbody> 
              
              
               #foreach($lineitem in $lineitems)
                <tr>
                <td>$lineitem.getPurchaseOrderId()</td>
                <td>$lineitem.getItemId()</td>
                <td>$lineitem.getBrand() $lineitem.getModelNumber() $lineitem.getModelName() $lineitem.getColor() </td>     
                <td>$lineitem.getQuantity()</td>
                <td>$lineitem.getUnitPrice()</td>     
               </tr>
               #end
                 
             </tbody>
           </table>
  </div>
 </div>
</div>