-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_tabs_ui.php
More file actions
292 lines (182 loc) · 7.12 KB
/
setup_tabs_ui.php
File metadata and controls
292 lines (182 loc) · 7.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<?php
session_start();
if (empty($_SESSION['username'])) {
//header('Refresh: 2; URL = login.php');
header("Location: login.php");
}
include("connect.php");
$link=Connection();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>KODAMS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="css/fullcalendar.css" />
<link rel="stylesheet" href="css/matrix-style.css" />
<link rel="stylesheet" href="css/matrix-media.css" />
<link href="font-awesome/css/font-awesome.css" rel="stylesheet" />
<link rel="stylesheet" href="css/jquery.gritter.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800' rel='stylesheet' type='text/css'>
<style type="text/css">
.alert{
display: none;
}
</style>
<script src="js/excanvas.min.js"></script>
<script src="js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.get("view_all_tab_machine_allocation.php",function(all_tab_machine_allocation){
$("#all_tab_machine_allocation").html(all_tab_machine_allocation);
});
});
</script>
<script src="js/jquery.ui.custom.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.flot.min.js"></script>
<script src="js/jquery.flot.resize.min.js"></script>
<script src="js/jquery.peity.min.js"></script>
<script src="js/fullcalendar.min.js"></script>
<script src="js/matrix.js"></script>
<script src="js/matrix.dashboard.js"></script>
<script src="js/jquery.gritter.min.js"></script>
<script src="js/matrix.interface.js"></script>
<script src="js/matrix.chat.js"></script>
<script src="js/jquery.validate.js"></script>
<script src="js/matrix.form_validation.js"></script>
<script src="js/jquery.wizard.js"></script>
<script src="js/jquery.uniform.js"></script>
<script src="js/select2.min.js"></script>
<script src="js/matrix.popover.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/matrix.tables.js"></script>
</head>
<body>
<?php include 'nav.php';?>
<!--main-container-part-->
<div id="content">
<!--breadcrumbs-->
<div id="content-header">
<div id="breadcrumb"> <a href="index.php" title="Go to Home" class="tip-bottom"><i class="icon-home"></i> Home</a> <a href="#" class="current">Setup tabs</a> </div>
</div>
<!--End-breadcrumbs-->
<!--Action boxes-->
<div class="container-fluid">
<?php include 'action_boxes.php';?>
<!--End-Action boxes-->
<hr/>
<div class="row-fluid">
<div class="span12">
<div class="widget-box">
<div class="widget-title"> <span class="icon"> <i class="icon-align-justify"></i> </span>
<h5>Upload tab-machine allocation (Select only a .csv file containing valid tab id's and machines to be allocated to them)</h5>
</div>
<div class="widget-content nopadding">
<form class="form-horizontal" id="fileUploadForm" >
<div class="control-group">
<label class="control-label">Select tab-machine alllocation:</label>
<div class="controls">
<input type="file" name="fileToUpload" id="fileToUpload" >
</div>
</div>
<div class="form-actions">
<button id="btnSave" type="submit" name="submit" class="btn btn-success">Upload</button>
<button id="btnRefresh" type="reset" class="btn btn-success">Refresh</button>
</div>
</form>
<!-- Error message area -->
<div class ="row-fluid">
<div class="span12">
<div class="widget-content">
<div id="result" class="alert alert-block"> <a class="close" data-dismiss="alert" href="#">×</a>
</div>
</div>
</div>
</div>
<div class ="row-fluid">
<div class="span6">
<div class="widget-content" id="all_tab_machine_allocation">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--end-main-container-part-->
<!--Footer-part-->
<div class="row-fluid">
<div id="footer" class="span12"> 2017 © MAS Autonomation Group </div>
</div>
<!--end-Footer-part-->
<!-- Custom js to save data -->
<script type="text/javascript">
// This function is called from the pop-up menus to transfer to
// a different page. Ignore if the value returned is a null string:
function goPage (newURL) {
// if url is empty, skip the menu dividers and reset the menu selection to default
if (newURL != "") {
// if url is "-", it is this page -- reset the menu:
if (newURL == "-" ) {
resetMenu();
}
// else, send page to designated URL
else {
document.location.href = newURL;
}
}
}
// resets the menu selection upon entry to this page:
function resetMenu() {
document.gomenu.selector.selectedIndex = 2;
}
</script>
<script type="text/javascript">
$("#btnSave").click(function (event) {
//stop submit the form, we will post it manually.
event.preventDefault();
// Get form
var form = $('#fileUploadForm')[0];
// Create an FormData object
var data = new FormData(form);
// If you want to add an extra field for the FormData
// var styleNumber = $("#styleNumber").val();
// data.append("styleNumber", styleNumber);
// disabled the submit button
$("#btnSave").prop("disabled", true);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "upload_tab_machine_allocation.php",
data: data,
processData: false,
contentType: false,
cache: false,
timeout: 600000,
success: function (data) {
//$("#result").text(data);
$("#result").html(data).fadeIn();
console.log("SUCCESS : ", data);
$("#btnSave").prop("disabled", false);
},
error: function (e) {
// $("#result").text(e.responseText);
$("#result").html(data).fadeIn();
console.log("ERROR : ", e);
$("#btnSave").prop("disabled", false);
}
});
});
$("#btnRefresh").click(function(event){
location.reload();
// $.get("view_all_defect_types.php",function(all_defects){
// $("#defect_types").html(all_defects);
// });
});
</script>
</body>
</html>