Subversion Repositories SmartDukaan

Rev

Rev 30004 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30003 tejbeer 1
 <div class="modal-header">
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
3
	        <h4 class="modal-title"> Stock Info  ($customerRetailer.getBusinessName())
4
	        </h4>
5
       </div>
6
  <div class="modal-body" style="height:400px;overflow:auto;">
7
    <div class = "row">
8
       <div class="col-lg-12">
9
 
10
 
11
 <table id="itemwiseshortagestock" class="table table-striped table-advance table-hover" style="width:100%">
12
				 <thead>
13
	    				<tr>
14
	    				<th>Item</th>
15
	    				<th>Pending Indent</th>
16
	    				<th>In Stock</th>
17
	    				<th>Shortage Qty</th>
18
	    			    <th>Availability</th>
19
 
20
	    				</tr>
21
				 </thead>
22
	    			<tbody>
23
 
24
	    			    #foreach($shortageList in $focusedModelShortageList)
25
	    				<tr>
26
	    				<td>$shortageList.getBrandName() $shortageList.getModelName()  $shortageList.getModelNumber() </td>
27
    					<td>$shortageList.getPendingIndentQty()</td>
28
 
29
 
30
    					#if($shortageList.getShortageQty() > $shortageList.getGrnStockQty())
31
    				    <td style = "color:red" >$shortageList.getGrnStockQty()</td>
32
    				    #else
33
    				      <td>$shortageList.getGrnStockQty()</td>
34
    				    #end
35
 
36
    				    #if($shortageList.getShortageQty() > 0 )
37
				     	<td>$shortageList.getShortageQty()</td>	
38
				     	#else
39
				     	<td>0</td>	
40
				     	#end
41
						<td>$shortageList.getAvailabitiy()</td>
42
 
43
	    				</tr>
44
 
45
	    				#end
46
 
47
	    				</tbody>
48
	  </table>
49
 
50
	  	         </div>	
51
	      </div>	
52
	  </div>
53
 
54
  	<div class="modal-footer">
55
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
56
 
57
	   </div>