Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
27637 tejbeer 1
 <div class="modal-header">
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
3
	        <h4 class="modal-title">Brand Wise LMTD  ($customRetailer.getBusinessName())
4
	        </h4>
5
       </div>
27647 tejbeer 6
  <div class="modal-body" style="height:600px;overflow:auto;">
27637 tejbeer 7
    <div class = "row">
8
       <div class="col-lg-12">
9
 
10
	             <table class="table  table-advance" id = "brand-mtd">
11
	    			<tbody>
12
	    			  <tr>
13
				        <th>Brand</th>
27639 tejbeer 14
				        <th>Quantity</th>
27637 tejbeer 15
						<th>Amount</th>
16
 
17
	                 </tr>	
18
	               #foreach($brand in $brandLMtdAmount.entrySet())
19
 
20
			         <tr>		
21
		    	         <td>$brand.getKey()</td>
27638 tejbeer 22
		    	          <td>$brandLmtdQty.get($brand.getKey())</td>     
27637 tejbeer 23
		    	          <td class="currency">$brand.getValue()</td>
24
		    		   </tr>	
25
			           #end
26
			              <tr>		
27
		    	         <td>Accessories</td>
28
		    	         #if($accesorieslmtdsale)
27638 tejbeer 29
		    	          <td>$accesorieslmtdqty</td>
27637 tejbeer 30
		    	          <td class="currency">$accesorieslmtdsale</td>
31
		    	          #else
27638 tejbeer 32
		    	           <td>0</td>
27637 tejbeer 33
		    	           <td class="currency">0</td>  
34
		    	          #end
35
		    		   </tr>
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>