Subversion Repositories SmartDukaan

Rev

Rev 24220 | Rev 26218 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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();
24882 tejbeer 49
 
50
 </script>
51
 
52
<script type="text/javascript">
53
$(function(){
54
 	getItemAheadOptions($("#typeaheaditem"),function(selectedItem){
55
 	itemCatalogId = selectedItem.catalogId;
56
 
57
	console.log(itemCatalogId);
58
	});
59
});
60
</script>
23419 ashik.ali 61
 
62
 
24882 tejbeer 63
 
23419 ashik.ali 64
<section class="wrapper">
65
	<div class="row">
66
		<div class="col-lg-12">
67
			<h3 class="page-header"><i class="icon_document_alt"></i>PREBOOKING LISTING</h3>
68
			<ol class="breadcrumb">
69
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
70
				<li><i class="icon_document_alt"></i>CREATE</li>						  	
71
			</ol>
72
		</div>
73
	</div>
74
	<form id="create-prebooking-listing-form">
75
		<div id="customer-details" style="background:white;background-color:white;padding:10px;">
76
			<h4 class="modelHeaderCustom" style="font-size:22px;">Prebooking Listing Information</h4>
77
			<div>
78
				<div class = "row">
79
 
24882 tejbeer 80
 
81
					<div  class="col-lg-3 form-group">
82
							<input placeholder="Items" type="text" class="typeahead form-control" id="typeaheaditem" name="Item" data-provide="typeahead" autocomplete="off">
23419 ashik.ali 83
					</div>
24882 tejbeer 84
 
23419 ashik.ali 85
					<div class="col-lg-2 form-group">
23434 ashik.ali 86
						<input placeholder = "Advance Amount" id="advanceAmount" name="advanceAmount" type="number" value="" class="form-control phone input-sm">
23419 ashik.ali 87
					</div>
88
 
89
					<div class="col-lg-2 form-group">
23434 ashik.ali 90
						<input placeholder = "Tentative Amount" id="tentativeAmount" name="tentativeAmount" type="number" value="" class="form-control phone input-sm">
23419 ashik.ali 91
					</div>
92
 
93
					<div class="col-lg-3" style="float:right;">
24882 tejbeer 94
						<input class="btn btn-primary create-prebooking-listin" type="submit" value="Create Prebooking Listing">	
23419 ashik.ali 95
					</div>
96
				</div>
97
			</div>
98
		</div>
99
 
100
	</form>
101
</section>
24085 amit.gupta 102
<script type="text/javascript" src="resources/js/create-prebooking-listing.js?v=${version}"></script>