Subversion Repositories SmartDukaan

Rev

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

Rev 23419 Rev 24072
Line 39... Line 39...
39
		<div class="row">
39
		<div class="row">
40
	    	<div class="col-lg-12">
40
	    	<div class="col-lg-12">
41
	    		<table class="table table-striped table-advance table-hover">
41
	    		<table class="table table-striped table-advance table-hover">
42
	    			<tbody>
42
	    			<tbody>
43
	    				<tr>
43
	    				<tr>
44
	    					<th>Item 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>Active</th>
Line 51... Line 51...
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.getItemId()</td>
55
			    					<td>$prebookingListing.getItemId()</td>
56
			    					<td>$itemIdDescriptionMap.get($prebookingListing.getItemId())</td>
56
			    					<td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
57
			    					<td>$prebookingListing.getAdvanceAmount()</td>
57
			    					<td>$prebookingListing.getAdvanceAmount()</td>
58
			    					<td>$prebookingListing.getTentativeAmount()</td>
58
			    					<td>$prebookingListing.getTentativeAmount()</td>
59
			    					<td>$prebookingListing.getFormattedCreateTimestamp()</td>
59
			    					<td>$prebookingListing.getCreateTimestamp().format($dateFormatter)</td>
60
			    					#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
60
			    					#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
61
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
61
			    						<td><i class="fa fa-check" aria-hidden="true"></i></td>
62
			    					#else
62
			    					#else
63
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
63
			    						<td><i class="fa fa-times" aria-hidden="true"></i></td>
64
			    					#end
64
			    					#end