Blame view

app/partials/enterFuelOrder/enterFuelOrder.html 3.96 KB
8f7dbe97c   Swarn Singh   fuel order comple...
1
  <style type="text/css">
8fc0ea8f4   Kuldeep Arora   update menu items
2
  	.subnavbar .mainnav > li:nth-child(4) > a{
6f19fff16   Kuldeep Arora   Rebranding-FBOins...
3
  		color: #c44646;
8f7dbe97c   Swarn Singh   fuel order comple...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  	}
  	.customInputWrap{
  		margin-top: 15px;
  	}
  	.customInputWrap label{
  		font-weight: normal;
  		margin-bottom: 0;
  	}
  </style>
  <div class="myLoader" ng-show="showLoader">
     <img src="../img/hourglass.gif" width="50px;">
  </div>
  
  <div class="container">
  	<div class="row">
  		<div class="col-md-5">
  			<div class="widget stacked">
  				<div class="widget-header">
  					<i class="fa fa-search" aria-hidden="true"></i>
  					<h3>Search and Dispatch Fuel</h3>
  				</div>
  				<div class="widget-content new-widget-content">
d121d5539   Kuldeep Arora   UI Changes
26
  					<form name="orderform" novalidate>
8f7dbe97c   Swarn Singh   fuel order comple...
27
28
29
30
31
32
  
  						<div class="customInputWrap">
  							<div class="col-md-3 text-right">
  								<label>Company</label>
  							</div>
  							<div class="col-md-9">
d121d5539   Kuldeep Arora   UI Changes
33
  								<select ui-select2 ng-model="order.companyName" ng-change="getAircraft(order.companyName)" style="width: 100%;" required>
8f7dbe97c   Swarn Singh   fuel order comple...
34
35
36
37
38
39
40
41
42
43
44
45
  									<option value="" selected disabled>Select Company</option>
  									<option ng-repeat="list in companyList">{{list.companyName}}</option>
  								</select>
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  						<div class="customInputWrap">
  							<div class="col-md-3 text-right">
  								<label>Aircraft</label>
  							</div>
  							<div class="col-md-3">
d121d5539   Kuldeep Arora   UI Changes
46
  								<select class="form-control" ng-model="order.aircraftName" required>
8f7dbe97c   Swarn Singh   fuel order comple...
47
  									<option selected disabled value="">Select Aircraft</option>
d121d5539   Kuldeep Arora   UI Changes
48
  									<option ng-repeat="list in aircraftList" value="{{list}}">{{list.tail}}</option>
8f7dbe97c   Swarn Singh   fuel order comple...
49
50
51
52
53
54
  								</select>
  							</div>
  							<div class="col-md-3 text-right">
  								<label>Requested Volume</label>
  							</div>
  							<div class="col-md-3">
d121d5539   Kuldeep Arora   UI Changes
55
  								<input type="text" ng-model="order.volume" class="form-control" required>
8f7dbe97c   Swarn Singh   fuel order comple...
56
57
58
59
60
61
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  						<div class="customInputWrap">
  							<div class="col-md-3 text-right">
70200a3ca   Kuldeep Arora   minor change
62
  								<label>Product</label>
8f7dbe97c   Swarn Singh   fuel order comple...
63
64
  							</div>
  							<div class="col-md-8 col-md-offset-1">
5aeaba43b   Anchit Jindal   fixed price issues
65
  								<select class="form-control" ng-model="order.priceQuote" required>
70200a3ca   Kuldeep Arora   minor change
66
  									<option value="" selected disabled>Select Product</option>
e563b15f3   Kuldeep Arora   updates
67
  									<option ng-repeat="margin in marginList" value="{{margin}}">${{margin.papTotal | number : 2}} {{margin.productName}}</option>
8f7dbe97c   Swarn Singh   fuel order comple...
68
69
70
71
72
73
74
75
76
77
78
  								</select>
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  						<div class="customInputWrap">
  							<div class="col-md-3 text-right">
  								<label>Tier Break</label>
  							</div>
  							<div class="col-md-8 col-md-offset-1">
  								<select class="form-control" ng-model="order.tierBreak">
efcd5bfce   Anchit Jindal   minor changes
79
  									<option value="" selected disabled>Select Tier Break</option>
8f7dbe97c   Swarn Singh   fuel order comple...
80
  									<option ng-repeat="list in tierList" value="{{list.minTierBreak}}-{{list.maxTierBreak}}">
a9aef0b1c   Anchit Jindal   new changes imple...
81
  										{{list.minTierBreak}}-{{list.maxTierBreak}} = ${{list.marginTotal | number: 2}} {{list.marginTemplate.marginName}}
8f7dbe97c   Swarn Singh   fuel order comple...
82
83
84
85
86
87
88
89
90
91
92
  									</option>
  								</select>
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  						<div class="customInputWrap">
  							<div class="col-md-3 text-right">
  								<label>Uplift Date</label>
  							</div>
  							<div class="col-md-3">
d121d5539   Kuldeep Arora   UI Changes
93
  								<input type="text" ng-model="order.upliftDate" datepicker class="form-control" style="width: 100px" required>
8f7dbe97c   Swarn Singh   fuel order comple...
94
95
  							</div>
  							<div class="col-md-3 text-right">
d121d5539   Kuldeep Arora   UI Changes
96
  								<!-- <label>Departing FBO</label> -->
8f7dbe97c   Swarn Singh   fuel order comple...
97
98
  							</div>
  							<div class="col-md-3">
d121d5539   Kuldeep Arora   UI Changes
99
  								<!-- <input type="text" ng-model="order.departingDate" datepicker class="form-control"> -->
8f7dbe97c   Swarn Singh   fuel order comple...
100
101
102
103
104
105
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  						<div class="customInputWrap text-right">
  							<div class="col-xs-12">
25082c4e3   Anchit Jindal   flight dept order...
106
  								<input type="cancel" value="Cancel" ng-click="cancelOrder()" class="btn btn-default" style="margin-right: 15px; width: 100px;">
d121d5539   Kuldeep Arora   UI Changes
107
  								<input type="submit" value="Dispatch" ng-click="dispatchFuel()" class="btn btn-primary" ng-disabled="orderform.$invalid">
8f7dbe97c   Swarn Singh   fuel order comple...
108
109
110
111
112
113
114
115
116
  							</div>
  							<div class="clearfix"></div>
  						</div>
  
  					</form>
  				</div>
  			</div>
  		</div>
  	</div>
d121d5539   Kuldeep Arora   UI Changes
117
  </div>