Subversion Repositories SmartDukaan

Rev

Rev 27640 | 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">Brand Wise In Stock  ($customRetailer.getBusinessName())
                </h4>
       </div>
  <div class="modal-body" style="height:600px;overflow:auto;">
    <div class = "row">
       <div class="col-lg-12">
                
                     <table class="table  table-advance" id = "brand-instock">
                                <tbody>
                                  <tr>
                                        <th>Brand</th>
                                        <th>Quantity</th>
                                                <th>Amount</th>
                                        
                         </tr>  
                       #foreach($brand in $mobileStock)
                                                    
                                 <tr>           
                                 <td>$brand.getBrand()</td>
                                  <td>$brand.getQty()</td>
                                  <td class="currency">$brand.getAmount()</td>
                                   </tr>        
                                   #end
                                  
                                  #foreach($acss in $assStock)
                                                    
                                 <tr>           
                                 <td>$acss.getBrand()</td>
                                  <td>$acss.getQty()</td>
                                  <td class="currency">$acss.getAmount()</td>
                                   </tr>        
                                   #end
                                
                            </tbody>
                     </table>
                
                 </div> 
              </div>    
          </div>
  
        <div class="modal-footer">
                        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
        
        </div>