Subversion Repositories SmartDukaan

Rev

Rev 24992 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24992 Rev 26218
Line 44... Line 44...
44
	    					<th>Catalog Id</th>
44
	    					<th>Catalog Id</th>
45
	    					<th>Description</th>
45
	    					<th>Description</th>
46
	    					<th>Advance Amount</th>
46
	    					<th>Advance Amount</th>
47
	    					<th>Tentative Amount</th>
47
	    					<th>Tentative Amount</th>
48
	    					<th>Created On</th>
48
	    					<th>Created On</th>
49
	    					<th>Active</th>
49
	    					<th>Status</th>
50
	    					<th>Expire</th>
50
	    					
51
	    				</tr>
51
	    				</tr>
52
	    				#if(!$prebookingListings.isEmpty())
52
	    				#if(!$prebookingListings.isEmpty())
53
			    			#foreach( $prebookingListing in $prebookingListings )
53
			    			#foreach( $prebookingListing in $prebookingListings )
54
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
54
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
55
			    					<td>$prebookingListing.getCatalogId()</td>
55
			    					<td>$prebookingListing.getCatalogId()</td>
56
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
56
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
57
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
57
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
58
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
58
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
59
			    					<td>$prebookingListing.getCreateTimestamp().format($dateFormatter)</td>
59
			    					<td>$prebookingListing.getCreateTimestamp().format($dateFormatter)</td>
60
			    					#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
-
 
61
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
-
 
62
			    					#else
-
 
63
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
-
 
64
			    					#end
-
 
65
			    					#if($prebookingListing.getExpireTimestamp())
60
			    					<td>$statusMap.get($prebookingListing.getId())</td>
66
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
-
 
67
			    					#else
-
 
68
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
-
 
69
			    					#end
-
 
70
			    				</tr>
61
			    				</tr>
71
			    			#end
62
			    			#end
72
		    			#else
63
		    			#else
73
		    				<tr>
64
		    				<tr>
74
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
65
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>