| Line 28... |
Line 28... |
| 28 |
<section class="wrapper">
|
28 |
<section class="wrapper">
|
| 29 |
<div class="row">
|
29 |
<div class="row">
|
| 30 |
<div class="col-lg-12">
|
30 |
<div class="col-lg-12">
|
| 31 |
<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING</h3>
|
31 |
<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING</h3>
|
| 32 |
<ol class="breadcrumb">
|
32 |
<ol class="breadcrumb">
|
| 33 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
33 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("prebookings.home")</a></li>
|
| 34 |
<li><i class="icon_document_alt"></i>ORDERS</li>
|
34 |
<li><i class="icon_document_alt"></i>#springMessage("prebookings.orders")</li>
|
| 35 |
</ol>
|
35 |
</ol>
|
| 36 |
</div>
|
36 |
</div>
|
| 37 |
</div>
|
37 |
</div>
|
| 38 |
<div id="prebooking-orders-table">
|
38 |
<div id="prebooking-orders-table">
|
| 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>#springMessage("prebookings.itemid")</th>
|
| 45 |
<th>Description</th>
|
45 |
<th>#springMessage("prebookings.description")</th>
|
| 46 |
<th>Advance Amount</th>
|
46 |
<th>#springMessage("prebookings.advanceamount")</th>
|
| 47 |
<th>Tentative Amount</th>
|
47 |
<th>#springMessage("prebookings.tentativeamount")</th>
|
| 48 |
<th>Quantity</th>
|
48 |
<th>#springMessage("prebookings.quantity")</th>
|
| 49 |
<th>Customer Name</th>
|
49 |
<th>#springMessage("prebookings.customername")</th>
|
| 50 |
<th>Customer Mobile Number</th>
|
50 |
<th>#springMessage("prebookings.customermobilenumber")</th>
|
| 51 |
<th>Customer Email Id</th>
|
51 |
<th>#springMessage("prebookings.customeremailid")</th>
|
| 52 |
<th>Created On</th>
|
52 |
<th>#springMessage("prebookings.createdon")</th>
|
| 53 |
</tr>
|
53 |
</tr>
|
| 54 |
#if(!$prebookingOrders.isEmpty())
|
54 |
#if(!$prebookingOrders.isEmpty())
|
| 55 |
#foreach( $prebookingOrder in $prebookingOrders )
|
55 |
#foreach( $prebookingOrder in $prebookingOrders )
|
| 56 |
#set($prebookingListing = $catalogIdPrebookingListingMap.get($prebookingOrder.getCatalogId()))
|
56 |
#set($prebookingListing = $catalogIdPrebookingListingMap.get($prebookingOrder.getCatalogId()))
|
| 57 |
<tr class="prebooking-order-details" data="$prebookingOrder.getId()">
|
57 |
<tr class="prebooking-order-details" data="$prebookingOrder.getId()">
|
| Line 81... |
Line 81... |
| 81 |
<div class="col-lg-9">
|
81 |
<div class="col-lg-9">
|
| 82 |
<p>Showing <span class="start">$start</span> to <span class="end">$end</span> of <span class="size">$size</span> items</p>
|
82 |
<p>Showing <span class="start">$start</span> to <span class="end">$end</span> of <span class="size">$size</span> items</p>
|
| 83 |
</div>
|
83 |
</div>
|
| 84 |
<div class="col-lg-3" style="text-align:right;">
|
84 |
<div class="col-lg-3" style="text-align:right;">
|
| 85 |
<div class="btn-group" style="width:40%">
|
85 |
<div class="btn-group" style="width:40%">
|
| 86 |
<button class="btn btn-primary previous" disabled="disabled" style="width:100%">Previous</button>
|
86 |
<button class="btn btn-primary previous" disabled="disabled" style="width:100%">#springMessage("prebookings.previous")</button>
|
| 87 |
</div>
|
87 |
</div>
|
| 88 |
<div class="btn-group" style="width:40%">
|
88 |
<div class="btn-group" style="width:40%">
|
| 89 |
#if($end >= $size)
|
89 |
#if($end >= $size)
|
| 90 |
<button class="btn btn-primary next" style="width:100%" disabled="disabled">Next</button>
|
90 |
<button class="btn btn-primary next" style="width:100%" disabled="disabled">#springMessage("prebookings.next")</button>
|
| 91 |
#else
|
91 |
#else
|
| 92 |
<button class="btn btn-primary next" style="width:100%">Next</button>
|
92 |
<button class="btn btn-primary next" style="width:100%">Next</button>
|
| 93 |
#end
|
93 |
#end
|
| 94 |
</div>
|
94 |
</div>
|
| 95 |
</div>
|
95 |
</div>
|