| Line 105... |
Line 105... |
| 105 |
<div class="col-lg-12">
|
105 |
<div class="col-lg-12">
|
| 106 |
<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING LISTING</h3>
|
106 |
<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING LISTING</h3>
|
| 107 |
<ol class="breadcrumb">
|
107 |
<ol class="breadcrumb">
|
| 108 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
108 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
| 109 |
<li><i class="icon_document_alt"></i>CREATE</li>
|
109 |
<li><i class="icon_document_alt"></i>CREATE</li>
|
| - |
|
110 |
<!--Training Video -->
|
| - |
|
111 |
<li><a href="#videoModal" class="btn btn-danger" data-toggle="modal" data-src="sqU3kfZ3GGM"><span
|
| - |
|
112 |
class="glyphicon glyphicon-play-circle"></span> Play Video</a></li>
|
| 110 |
</ol>
|
113 |
</ol>
|
| 111 |
</div>
|
114 |
</div>
|
| 112 |
</div>
|
115 |
</div>
|
| 113 |
<form id="create-prebooking-order-form">
|
116 |
<form id="create-prebooking-order-form">
|
| 114 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
117 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
| 115 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Prebooking Order Information</h4>
|
118 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Prebooking Order Information</h4>
|
| 116 |
<div>
|
119 |
<div>
|
| 117 |
<div class = "row">
|
120 |
<div class="row">
|
| 118 |
|
121 |
|
| 119 |
<div class="col-lg-4 form-group" id="items-container">
|
122 |
<div class="col-lg-4 form-group" id="items-container">
|
| 120 |
<select class="form-control input-sm" id = "activePrebookingItemsDescription" placeholder="activePrebookingItemsDescription" >
|
123 |
<select class="form-control input-sm" id = "activePrebookingItemsDescription" placeholder="activePrebookingItemsDescription" >
|
| 121 |
#foreach($prebookingListing in $prebookingListings)
|
124 |
#foreach($prebookingListing in $prebookingListings)
|
| 122 |
<option value="$prebookingListing.getCatalogId(),$prebookingListing.getAdvanceAmount(),$prebookingListing.getTentativeAmount(),$prebookingListing.getPlacementPolicy(),$prebookingListing.getActivationPolicy(),$prebookingListing.getActiveTimestamp().format($dateTimeFormatter),$prebookingListing.getExpireTimestamp().format($dateTimeFormatter),$statusMap.get($prebookingListing.getId())">$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</option>
|
125 |
<option value="$prebookingListing.getCatalogId(),$prebookingListing.getAdvanceAmount(),$prebookingListing.getTentativeAmount(),$prebookingListing.getPlacementPolicy(),$prebookingListing.getActivationPolicy(),$prebookingListing.getActiveTimestamp().format($dateTimeFormatter),$prebookingListing.getExpireTimestamp().format($dateTimeFormatter),$statusMap.get($prebookingListing.getId())">$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</option>
|
| 123 |
#end
|
126 |
#end
|
| Line 213... |
Line 216... |
| 213 |
|
216 |
|
| 214 |
<div class="row">
|
217 |
<div class="row">
|
| 215 |
<div class="col-lg-2 form-group">
|
218 |
<div class="col-lg-2 form-group">
|
| 216 |
<p style = font-size:15px;><b>Placement Policy</b></p>
|
219 |
<p style = font-size:15px;><b>Placement Policy</b></p>
|
| 217 |
#if($prebookingListings.isEmpty())
|
220 |
#if($prebookingListings.isEmpty())
|
| 218 |
<div height:"0px"; id="placementPolicy">
|
221 |
<div style="height:0px;" id="placementPolicy">
|
| 219 |
</div>
|
222 |
</div>
|
| 220 |
#else
|
223 |
#else
|
| 221 |
<div id="placementPolicy" >
|
224 |
<div id="placementPolicy" >
|
| 222 |
$prebookingListings.get(0).getPlacementPolicy()
|
225 |
$prebookingListings.get(0).getPlacementPolicy()
|
| 223 |
</div>
|
226 |
</div>
|