Subversion Repositories SmartDukaan

Rev

Rev 24992 | 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>Created On</th>
26218 tejbeer 11
	    					<th>Status</th>
23419 ashik.ali 12
	    				</tr>
13
	    				#if(!$prebookingListings.isEmpty())
14
			    			#foreach( $prebookingListing in $prebookingListings )
15
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
24917 tejbeer 16
			    					<td>$prebookingListing.getCatalogId()</td>
24087 amit.gupta 17
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
24992 tejbeer 18
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
19
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
23419 ashik.ali 20
			    					<td>$prebookingListing.getFormattedCreateTimestamp()</td>
26218 tejbeer 21
			    				    <td>$statusMap.get($prebookingListing.getId())</td>
23419 ashik.ali 22
			    				</tr>
23
			    			#end
24
		    			#else
25
		    				<tr>
26
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
27
		    				</tr>
28
		    			#end
29
	    			</tbody>
30
	    		</table>
31
	    	</div>
32
	    </div>