| 23419 |
ashik.ali |
1 |
<style>
|
|
|
2 |
.row{
|
|
|
3 |
margin:0 auto;
|
|
|
4 |
}
|
|
|
5 |
.modal-content{
|
|
|
6 |
background : white;
|
|
|
7 |
}
|
|
|
8 |
.modelHeaderCustom{
|
|
|
9 |
font-size:14px;
|
|
|
10 |
font-weight:bold;
|
|
|
11 |
}
|
|
|
12 |
.border-highlight{
|
|
|
13 |
border : 3px solid red;
|
|
|
14 |
}
|
|
|
15 |
hr{
|
|
|
16 |
background-color:#007aff;
|
|
|
17 |
border:none;
|
|
|
18 |
height:1px;
|
|
|
19 |
background:#007aff;
|
|
|
20 |
}
|
|
|
21 |
.control-label {
|
|
|
22 |
margin-top: 0;
|
|
|
23 |
margin-bottom: 0;
|
|
|
24 |
padding-top: 7px;
|
|
|
25 |
font-weight:bold;
|
|
|
26 |
font-size:14px;
|
|
|
27 |
}
|
|
|
28 |
.form-group{
|
|
|
29 |
border-bottom: 1px solid #eff2f7;
|
|
|
30 |
padding-bottom: 15px;
|
|
|
31 |
margin-bottom: 15px;
|
|
|
32 |
}
|
|
|
33 |
.right{
|
|
|
34 |
float:right;
|
|
|
35 |
}
|
|
|
36 |
.form-control{
|
|
|
37 |
color:black;
|
|
|
38 |
text-transform:uppercase;
|
|
|
39 |
}
|
|
|
40 |
.table-align-center{
|
|
|
41 |
text-align:center;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
</style>
|
|
|
45 |
|
|
|
46 |
<script type="text/javascript">
|
|
|
47 |
|
|
|
48 |
configureItemsDescriptionDropDown();
|
|
|
49 |
|
|
|
50 |
</script>
|
|
|
51 |
|
|
|
52 |
<section class="wrapper">
|
|
|
53 |
<div class="row">
|
|
|
54 |
<div class="col-lg-12">
|
|
|
55 |
<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING LISTING</h3>
|
|
|
56 |
<ol class="breadcrumb">
|
|
|
57 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
58 |
<li><i class="icon_document_alt"></i>CREATE</li>
|
|
|
59 |
</ol>
|
|
|
60 |
</div>
|
|
|
61 |
</div>
|
|
|
62 |
<form id="create-prebooking-listing-form">
|
|
|
63 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
64 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Prebooking Listing Information</h4>
|
|
|
65 |
<div>
|
|
|
66 |
<div class = "row">
|
|
|
67 |
<div class="col-lg-2">
|
|
|
68 |
<div class="dropdown">
|
|
|
69 |
<button class="btn btn-default btn-block dropdown-toggle input-sm" type="button" data-toggle="dropdown" id="brand-value">Brands<span class="caret"></span></button>
|
|
|
70 |
<ul class="dropdown-menu" id="brands">
|
|
|
71 |
#foreach ($brand in $brands)
|
|
|
72 |
<li><a href="javascript:void(0);">$brand</a></li>
|
|
|
73 |
#end
|
|
|
74 |
</ul>
|
|
|
75 |
</div>
|
|
|
76 |
</div>
|
|
|
77 |
|
|
|
78 |
<div class="col-lg-3" id="items-description-container">
|
|
|
79 |
<select class="form-control input-sm" id = "itemsDescription" placeholder="itemsDescription" >
|
|
|
80 |
</select>
|
|
|
81 |
</div>
|
|
|
82 |
|
|
|
83 |
<div class="col-lg-2 form-group">
|
|
|
84 |
<input placeholder = "Advance Amount" id="advanceAmount" name="advanceAmount" type="number" value="0" class="form-control phone input-sm">
|
|
|
85 |
</div>
|
|
|
86 |
|
|
|
87 |
<div class="col-lg-2 form-group">
|
|
|
88 |
<input placeholder = "Tentative Amount" id="tentativeAmount" name="tentativeAmount" type="number" value="0" class="form-control phone input-sm">
|
|
|
89 |
</div>
|
|
|
90 |
|
|
|
91 |
<div class="col-lg-3" style="float:right;">
|
|
|
92 |
<input class="btn btn-primary create-prebooking-listing" type="submit" style="width:100%;border-radius:0px;" value="Create Prebooking Listing">
|
|
|
93 |
</div>
|
|
|
94 |
</div>
|
|
|
95 |
</div>
|
|
|
96 |
</div>
|
|
|
97 |
|
|
|
98 |
</form>
|
|
|
99 |
</section>
|
|
|
100 |
<script type="text/javascript" src="resources/js/create-prebooking-listing.js"></script>
|