Subversion Repositories SmartDukaan

Rev

Rev 27660 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27660 Rev 35580
Line 1... Line 1...
1
 <div class="modal-header">
1
 <div class="modal-header">
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
2
	        <button type="button" class="close" data-dismiss="modal">&times;</button>
3
	        <h4 class="modal-title">Item Wise Tertiary ($customRetailer.getBusinessName())
3
	 <h4 class="modal-title">Item Wise Tertiary (Partner Pending Indents)
4
	        </h4>
4
	        </h4>
5
       </div>
5
       </div>
6
  <div class="modal-body" style="height:400px;overflow:auto;">
6
  <div class="modal-body" style="height:400px;overflow:auto;">
7
    <div class = "row">
7
    <div class = "row">
8
       <div class="col-lg-12">
8
       <div class="col-lg-12">
9
	    	
-
 
10
	             <table class="table  table-advance" id = "partner-item-indent">
9
	             <table class="table  table-advance" id = "partner-item-indent">
11
	    			<tbody>
10
	    			<tbody>
12
	    			  <tr>
11
	    			  <tr>
13
				        <th>Item</th>
12
						  <th>Partner Name</th>
14
						<th>Quantity</th>
13
						<th>Quantity</th>
15
						<th>Price</th>
14
						<th>Price</th>
16
	    			
15
 
17
	                 </tr>	
16
					  </tr>
18
	    					
17
 
19
			          #foreach($request in $partnerPendingIndent )
18
						  #foreach($item in $partnerPendingIndent)
20
		    		  <tr>		
19
						  <tr>
21
		    	         <td>$request.getPartnerName()</td>
20
							  <td>$item.partnerName</td>
22
		    	         <td>$request.getQuantity()</td>
21
							  <td>$item.quantity</td>
23
		    		     <td>$request.getPrice()</td>
22
							  <td>$item.price</td>
24
		    		   </tr>	
23
						  </tr>
25
			           #end
24
						  #end
26
		    	    </tbody>
25
					</tbody>
27
	             </table>
26
	             </table>
28
	         </div>	
27
	   </div>
29
	      </div>	
28
	</div>
30
	  </div>
29
	  </div>
31
  
30
 
32
  	<div class="modal-footer">
31
  	<div class="modal-footer">
33
		        <button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
-
 
34
	
-
 
35
	   </div>
-
 
36
32
		<button type="button" data-dismiss="modal" class="btn btn-default view-close">Close</button>
-
 
33
 
-
 
34
	</div>
-
 
35