Subversion Repositories SmartDukaan

Rev

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

Rev 24992 Rev 26218
Line 6... Line 6...
6
	    					<th>Item Id</th>
6
	    					<th>Item Id</th>
7
	    					<th>Description</th>
7
	    					<th>Description</th>
8
	    					<th>Advance Amount</th>
8
	    					<th>Advance Amount</th>
9
	    					<th>Tentative Amount</th>
9
	    					<th>Tentative Amount</th>
10
	    					<th>Created On</th>
10
	    					<th>Created On</th>
11
	    					<th>Active</th>
-
 
12
	    					<th>Expire</th>
11
	    					<th>Status</th>
13
	    				</tr>
12
	    				</tr>
14
	    				#if(!$prebookingListings.isEmpty())
13
	    				#if(!$prebookingListings.isEmpty())
15
			    			#foreach( $prebookingListing in $prebookingListings )
14
			    			#foreach( $prebookingListing in $prebookingListings )
16
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
15
			    				<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
17
			    					<td>$prebookingListing.getCatalogId()</td>
16
			    					<td>$prebookingListing.getCatalogId()</td>
18
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
17
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
19
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
18
			    					<td class="currency">$prebookingListing.getAdvanceAmount()</td>
20
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
19
			    					<td class="currency">$prebookingListing.getTentativeAmount()</td>
21
			    					<td>$prebookingListing.getFormattedCreateTimestamp()</td>
20
			    					<td>$prebookingListing.getFormattedCreateTimestamp()</td>
22
			    					#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
-
 
23
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
-
 
24
			    					#else
-
 
25
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
-
 
26
			    					#end
-
 
27
			    					#if($prebookingListing.getExpireTimestamp())
21
			    				    <td>$statusMap.get($prebookingListing.getId())</td>
28
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
-
 
29
			    					#else
-
 
30
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
-
 
31
			    					#end
-
 
32
			    				</tr>
22
			    				</tr>
33
			    			#end
23
			    			#end
34
		    			#else
24
		    			#else
35
		    				<tr>
25
		    				<tr>
36
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
26
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>