Subversion Repositories SmartDukaan

Rev

Rev 32349 | Rev 33727 | 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> AmendedQty</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.getAmendedQty()</td>
            
                <td>$lineitem.getUnitPrice()</td>     
               </tr>
               #end
              <tr>
                  <td colspan="5" style="text-align: right;"><b>Total Price</b></td>
                  <td><b>$totalUnitPrice</b></td>
              </tr>
             </tbody>
           </table>

 </div>
 </div>
</div>