Subversion Repositories SmartDukaan

Rev

Rev 23419 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23419 ashik.ali 1
<div class="row">
2
	    	<div class="col-lg-12">
3
	    		<table class="table table-striped table-advance table-hover">
4
	    			<tbody>
5
	    				<tr>
6
	    					<th>Item Id</th>
7
	    					<th>Description</th>
8
	    					<th>Advance Amount</th>
9
	    					<th>Tentative Amount</th>
10
	    					<th>Quantity</th>
11
	    					<th>Customer Name</th>
12
	    					<th>Customer Mobile Number</th>
13
	    					<th>Customer Email Id</th>
14
	    					<th>Created On</th>
15
	    				</tr>
16
	    				#if(!$prebookingOrders.isEmpty())
17
			    			#foreach( $prebookingOrder in $prebookingOrders )
24087 amit.gupta 18
			    				#set($prebookingListing = $catalogIdPrebookingListingMap.get($prebookingOrder.getCatalogId()))
23419 ashik.ali 19
			    				<tr class="prebooking-order-details" data="$prebookingOrder.getId()">
24087 amit.gupta 20
			    					<td>$prebookingOrder.getCatalogId()</td>
21
			    					<td>$catalogIdDescriptionMap.get($prebookingOrder.getCatalogId())</td>
23419 ashik.ali 22
			    					<td>$prebookingListing.getAdvanceAmount()</td>
23
			    					<td>$prebookingListing.getTentativeAmount()</td>
24
			    					<td>$prebookingOrder.getQuantity()</td>
25
			    					<td>$prebookingOrder.getCustomerName()</td>
26
			    					<td>$prebookingOrder.getCustomerMobileNumber()</td>
27
			    					<td>$prebookingOrder.getCustomerEmailId()</td>
28
			    					<td>$prebookingOrder.getFormattedCreateTimestamp()</td>
29
			    				</tr>
30
			    			#end
31
		    			#else
32
		    				<tr>
33
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
34
		    				</tr>
35
		    			#end
36
	    			</tbody>
37
	    		</table>
38
	    	</div>
39
	    </div>