Subversion Repositories SmartDukaan

Rev

Rev 27640 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27640 tejbeer 1
 <div class="modal-header">
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
3
	        <h4 class="modal-title">Brand Wise In Stock  ($customRetailer.getBusinessName())
4
	        </h4>
5
       </div>
27647 tejbeer 6
  <div class="modal-body" style="height:600px;overflow:auto;">
27640 tejbeer 7
    <div class = "row">
8
       <div class="col-lg-12">
9
 
10
	             <table class="table  table-advance" id = "brand-instock">
11
	    			<tbody>
12
	    			  <tr>
13
				        <th>Brand</th>
14
				        <th>Quantity</th>
15
						<th>Amount</th>
16
 
17
	                 </tr>	
18
	               #foreach($brand in $mobileStock)
19
 
20
			         <tr>		
21
		    	         <td>$brand.getBrand()</td>
22
		    	          <td>$brand.getQty()</td>
23
		    	          <td class="currency">$brand.getAmount()</td>
24
		    		   </tr>	
25
			           #end
26
 
27
			          #foreach($acss in $assStock)
28
 
29
			         <tr>		
30
		    	         <td>$acss.getBrand()</td>
31
		    	          <td>$acss.getQty()</td>
32
		    	          <td class="currency">$acss.getAmount()</td>
33
		    		   </tr>	
34
			           #end
35
 
36
		    	    </tbody>
37
	             </table>
38
 
39
	         </div>	
40
	      </div>	
41
	  </div>
42
 
43
  	<div class="modal-footer">
44
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
45
 
46
	</div>