source: schedule/Module/control.php@ 17487

Last change on this file since 17487 was 17487, checked in by tose, 12 years ago
File size: 17.0 KB
Line 
1<script language="javascript">
2
3 var ctr;
4
5 function clearNode(node){
6 var child = node.childNodes[0];
7 while(child != null)
8 {
9 node.removeChild(child);
10 child = node.childNodes[0];
11 }
12 }
13
14 function addRow(table){
15 var targetView = table;
16 var cctr=$('.dataTable tr').length;
17 ctr=cctr+1;
18 // CREATE ELEMENT
19 var newtr = document.createElement("tr");
20 newtr.setAttribute("class","tr");
21 var newtd_c1 = document.createElement("td");
22 newtd_c1.setAttribute("width","147");
23 newtd_c1.setAttribute("align","center");
24 newtd_c1.appendChild(
25 input_data = document.createElement("input"),
26 input_data.setAttribute("type","time"),
27 input_data.setAttribute("size","10"),
28 input_data.setAttribute("autofocus","true"),
29 input_data.setAttribute("hidden","true")
30 );
31 var newtd_c2 = document.createElement("td");
32 newtd_c2.setAttribute("width","138");
33 newtd_c2.setAttribute("align","center");
34 newtd_c2.appendChild(
35 select = document.createElement("select"),
36 select.setAttribute("class","measure"),
37 $.ajax({ //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
38 type:"post",
39 url:"Transaction/measurement.php",
40 success:function(data){
41 var obj=$.parseJSON(data);
42 $.each(obj,function(){
43 select.appendChild(
44 option = document.createElement("option"),
45 option.setAttribute('value',this['fMeasurementKey']),
46 option.appendChild(document.createTextNode(this['fMeasurement']))
47 )
48 })
49 }
50 }) // End of retrieving
51 );
52 newtd_c2.setAttribute("width","115");
53 newtd_c2.setAttribute("align","center");
54 newtd_c2.appendChild(
55 input_data = document.createElement("input"),
56 input_data.setAttribute("type","button"),
57 input_data.setAttribute("value","+"),
58 input_data.onclick = function(){ return addRow(newtr);
59 ctr++;
60 }
61 );
62 var newtd_c3 = document.createElement("td");
63 newtd_c3.setAttribute("width","98");
64 newtd_c3.setAttribute("align","center");
65 newtd_c3.appendChild(
66 selection = document.createElement("select"),
67 selection.setAttribute("class","source"),
68 $.ajax({ //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
69 type:"post",
70 url:"Transaction/source.php",
71 success:function(data)
72 {
73 var obj = $.parseJSON(data);
74 $.each(obj,function(){
75 selection.appendChild(
76 option=document.createElement('option'),
77 option.setAttribute('value',this['fSourceKEY']),
78 option.appendChild(document.createTextNode(this['fSourceName']))
79 )
80 });
81 }
82 }) // End of retrieving
83 );
84 var newtd_c4 = document.createElement("td");
85 newtd_c4.setAttribute("width","119");
86 newtd_c4.setAttribute("align","center");
87 newtd_c4.appendChild(
88 input_data = document.createElement("input"),
89 input_data.setAttribute("type","text"),
90 input_data.setAttribute("class","selected"),
91 input_data.setAttribute("size","12"),
92 input_data.setAttribute("placeholder","Value")
93 );
94 var newtd_c5 = document.createElement("td");
95 newtd_c5.setAttribute("width","115");
96 newtd_c5.setAttribute("align","center");
97 newtd_c5.appendChild(
98 input_data = document.createElement("input"),
99 input_data.setAttribute("type","button"),
100 input_data.setAttribute("value","Delete"),
101 input_data.onclick = function(){ return clearNode(newtr); }
102 );
103
104 newtr.appendChild(newtd_c2);
105 newtr.appendChild(newtd_c3);
106 newtr.appendChild(newtd_c4);
107 newtr.appendChild(newtd_c5);
108
109 $(targetView).after(newtr);
110 }
111function deleteRow(tableID){
112 try{
113 var table = document.getElementById(tableID);
114 var rowCount = table.rows.length;
115
116 for(var i = 0; i < rowCount; i++){
117 var row = table.rows[i];
118 var chkbox = row.cells[0].childNodes[0];
119 if(null != chkbox && true == chkbox.checked){
120 if(rowCount <= 1){
121 alert("Cannot delete all the rows.");
122 break;
123 }
124 table.deleteRow(i);
125 rowCount--;
126 i--;
127 }
128 }
129 }catch(e){
130 alert(e);
131 }
132 }
133
134<?php
135$cnt=0;
136if(isset($_GET['days']))
137{
138 $day = $_GET['days'];
139}
140else
141{
142 $day =date("Y-m-d");
143}
144
145// $day=$_GET['days'];
146$days = Date('Y-m-d',strtotime($day));
147$prev_time = array();
148?>
149function addRowCloneNew(nextrow){
150 var targetView = document.getElementById("Data");
151 // CREATE ELEMENT
152 // COUNT LIST
153 var list = $(".datalisting").length;
154 var newlist = list+1;
155 var cctr=$('.dataTable tr').length;
156 ctr=cctr+1;
157 var newdiv = document.createElement("div");
158 newdiv.setAttribute("id","list_"+newlist);
159 newdiv.setAttribute("class","datalisting");
160 newdiv.setAttribute("style","margin:5px 0;");
161 var newtable = document.createElement("table");
162 newtable.setAttribute("class","dataTable");
163 newtable.setAttribute("width","100%");
164 newtable.setAttribute("border","1");
165 newtable.setAttribute("cellspacing","0");
166 newtable.setAttribute("cellpadding","0");
167 var newInnertable = document.createElement("table");
168 newInnertable.setAttribute("class","dataTable");
169 newInnertable.setAttribute("width","100%");
170 newInnertable.setAttribute("border","1");
171
172 newInnertable.setAttribute("cellspacing","0");
173 newInnertable.setAttribute("cellpadding","0");
174
175 var newtr = document.createElement("tr");
176 newtr.setAttribute('class','tr');
177 var newtd_c1 = document.createElement("td");
178 newtd_c1.setAttribute("width","200");
179 newtd_c1.setAttribute("align","center");
180 newtd_c1.appendChild(
181 input_data = document.createElement("input"),
182 input_data.setAttribute("type","time"),
183 input_data.setAttribute("class","time"),
184 input_data.setAttribute("size","10"),
185 input_data.setAttribute("autofocus","true")
186 );
187 newtd_c1.appendChild(
188 input_data = document.createElement("input"),
189 input_data.setAttribute("type","button"),
190 input_data.setAttribute("value","+"),
191 input_data.onclick = function(){
192 addRowCloneNew("list_"+newlist);
193 }
194 );
195 var newtd_c2 = document.createElement("td");
196
197 newtd_c2.setAttribute("width","138");
198 newtd_c2.setAttribute("align","center");
199 newtd_c2.appendChild(
200 select = document.createElement("select"),
201 select.setAttribute("class","measure"),
202 $.ajax({ //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
203 type:"post",
204 url:"Transaction/measurement.php",
205 success:function(data){
206 var obj=$.parseJSON(data);
207 $.each(obj,function(){
208 select.appendChild(
209 option = document.createElement("option"),
210 option.setAttribute('value',this['fMeasurementKey']),
211 option.appendChild(document.createTextNode(this['fMeasurement']))
212 )
213 })
214
215 }
216 }) // End of retrieving
217 );
218 newtd_c2.setAttribute("width","115");
219 newtd_c2.setAttribute("align","center");
220 newtd_c2.appendChild(
221 input_data = document.createElement("input"),
222 input_data.setAttribute("type","button"),
223 input_data.setAttribute("value","+"),
224 input_data.onclick = function(){
225 return addRow(newtr);
226 ctr++;
227 });
228 var newtd_c3 = document.createElement("td");
229 newtd_c3.setAttribute("width","98");
230 newtd_c3.setAttribute("align","center");
231 newtd_c3.appendChild(
232 selection = document.createElement("select"),
233 selection.setAttribute("class","source"),
234 $.ajax({ //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
235 type:"post",
236 url:"Transaction/source.php",
237 success:function(data)
238 {
239 var obj = $.parseJSON(data);
240 $.each(obj,function(){
241 selection.appendChild(
242 option=document.createElement('option'),
243 option.setAttribute('value',this['fSourceKEY']),
244 option.appendChild(document.createTextNode(this['fSourceName']))
245 )
246 });
247 }
248 }) // End of retrieving
249 );
250 var newtd_c4 = document.createElement("td");
251 newtd_c4.setAttribute("width","119");
252 newtd_c4.setAttribute("align","center");
253 newtd_c4.appendChild(
254 input_data = document.createElement("input"),
255 input_data.setAttribute("type","text"),
256 input_data.setAttribute("class","selected"),
257 input_data.setAttribute("size","12"),
258 input_data.setAttribute("placeholder","Value")
259 );
260 var newtd_c5 = document.createElement("td");
261 newtd_c5.setAttribute("width","115");
262 newtd_c5.setAttribute("align","center");
263 newtd_c5.setAttribute("width","115");
264 newtd_c5.setAttribute("align","center");
265 newtd_c5.appendChild(
266 input_data = document.createElement("input"),
267 input_data.setAttribute("type","button"),
268 input_data.setAttribute("value","Delete"),
269 input_data.onclick = function(){ return clearNode(newtr);
270 }
271 );
272 newtr.appendChild(newtd_c2);
273 newtr.appendChild(newtd_c3);
274 newtr.appendChild(newtd_c4);
275 newtr.appendChild(newtd_c5);
276 newInnertable.appendChild(newtr);
277 var newtd_c6 = document.createElement("td");
278 newtd_c6.appendChild(newInnertable);
279
280 var newtd_c7 = document.createElement("td");
281 newtd_c7.setAttribute("width","115");
282 newtd_c7.setAttribute("align","center");
283 newtd_c7.appendChild(
284 input_data = document.createElement("input"),
285 input_data.setAttribute("type","button"),
286 input_data.setAttribute("value","Delete Main"),
287 input_data.onclick = function(){ return clearNode(newdiv); }
288 );
289
290 var newOutertr = document.createElement("tr");
291
292 newtable.appendChild(newtd_c1);
293 newtable.appendChild(newtd_c6);
294 newtable.appendChild(newtd_c7);
295
296 newdiv.appendChild(newtable);
297 if(nextrow != null){
298 var doc = document.getElementById(nextrow);
299 $(doc).after(newdiv);
300 }else{
301 targetView.appendChild(newdiv);
302 }
303}
304
305
306function addRowClone(nextrow){
307 <?php
308 $fetch = mysql_query("SELECT * FROM schedule WHERE date(fStart) = '$days' ORDER BY fScheduleID ASC, fMeasurementID ASC") or die(mysql_error());
309 $observationsCount = mysql_query("SELECT COUNT(DISTINCT fStart) FROM schedule WHERE date(fStart) = '$days'");
310 $observationsTime = mysql_query("SELECT DISTINCT fStart FROM schedule WHERE date(fStart) = '$days'");
311
312 $cnt3=0;
313 $prevtimestamp = 0;
314 while($times = mysql_fetch_array($observationsTime))
315 {
316 $timestamp=strtotime($times['fStart']);
317 $actualtime = date('Y-m-d H:i:s', $timestamp);
318 $timestamp2 = date('Y-m-d',$timestamp);
319 $date_time = date('H:i:s',$timestamp);
320 $prev_time[$cnt3]= $date_time;
321 ?>
322 $('#save').attr('value','UPDATE');
323 var targetView = document.getElementById("Data");
324 // CREATE ELEMENT
325 // COUNT LIST
326 var list = $(".datalisting").length;
327 var newlist = list+1;
328
329 var cctr=$('.dataTable tr').length;
330 ctr=cctr+1;
331
332 var newdiv = document.createElement("div");
333 newdiv.setAttribute("id","list_"+newlist);
334 newdiv.setAttribute("class","datalisting");
335 newdiv.setAttribute("style","margin:5px 0;");
336
337 var newtable = document.createElement("table");
338 newtable.setAttribute("class","dataTable");
339 newtable.setAttribute("width","100%");
340 newtable.setAttribute("border","1");
341 newtable.setAttribute("cellspacing","0");
342 newtable.setAttribute("cellpadding","0");
343
344 var newInnertable = document.createElement("table");
345 newInnertable.setAttribute("class","dataTable");
346 newInnertable.setAttribute("width","100%");
347 newInnertable.setAttribute("border","1");
348
349 newInnertable.setAttribute("cellspacing","0");
350 newInnertable.setAttribute("cellpadding","0");
351
352 var newtd_c1 = document.createElement("td");
353 newtd_c1.setAttribute("width","200");
354 newtd_c1.setAttribute("align","center");
355 newtd_c1.appendChild(
356 input_data = document.createElement("input"),
357 input_data.setAttribute("type","time"),
358 input_data.setAttribute("class","time"),
359 input_data.setAttribute("size","10"),
360 input_data.setAttribute("value","<?php echo $date_time; ?>"),
361 input_data.setAttribute("autofocus","true")
362 );
363 newtd_c1.appendChild(
364 input_data = document.createElement("input"),
365 input_data.setAttribute("type","button"),
366 input_data.setAttribute("value","+"),
367 input_data.onclick = function(){
368 addRowCloneNew("list_<?php echo $cnt+1; ?>");
369 }
370 );
371
372 <?php
373
374 $observations = mysql_query("SELECT * FROM schedule WHERE fStart = '$actualtime'");
375
376 while($rows = mysql_fetch_array($observations))
377 {
378 ?>
379 var newtr<?php echo $cnt; ?> = document.createElement("tr");
380 newtr<?php echo $cnt; ?>.setAttribute('class','tr');
381
382 var newtd_c2 = document.createElement("td");
383 newtd_c2.setAttribute("width","138");
384 newtd_c2.setAttribute("align","center");
385 newtd_c2.appendChild(
386 selection = document.createElement("select"),
387 <?php
388 $selectm = mysql_query("SELECT * FROM measurement");
389 while($rowmeasure = mysql_fetch_array($selectm))
390 {
391 ?>
392 selection.appendChild(
393 option = document.createElement("option"),
394 option.setAttribute("value","<?php echo $rowmeasure['fMeasurementKey']; ?>"),
395 <?php if($rows['fMeasurementTypeKey']==$rowmeasure['fMeasurementKey']){ echo "option.setAttribute('selected',true),";} ?>
396 option.appendChild(document.createTextNode("<?php echo $rowmeasure['fMeasurement']; ?>"))
397 ),
398 <?php
399 }
400 ?>
401
402
403 selection.setAttribute('id','measure'),
404 selection.setAttribute('class','measure')
405 );
406 newtd_c2.setAttribute("width","115");
407 newtd_c2.setAttribute("align","center");
408 newtd_c2.appendChild(
409 input_data = document.createElement("input"),
410 input_data.setAttribute("type","button"),
411 input_data.setAttribute("value","+"),
412 input_data.onclick = function(){
413 return addRow(newtr<?php echo $cnt; ?>);
414 ctr++;
415 });
416 var newtd_c3 = document.createElement("td");
417 newtd_c3.setAttribute("width","98");
418 newtd_c3.setAttribute("align","center");
419 newtd_c3.appendChild(
420 selection = document.createElement("select"),
421 <?php
422 $select = mysql_query("SELECT * FROM source");
423 while($rowsource = mysql_fetch_array($select))
424 {
425 ?>
426 selection.appendChild(
427 option = document.createElement("option"),
428 option.setAttribute('value','<?php echo $rowsource['fSourceKEY']; ?>'),
429 <?php if($rows['fSourceKey'] == $rowsource['fSourceKEY']){ echo "option.setAttribute('selected',true),"; } ?>
430 option.appendChild(document.createTextNode("<?php echo $rowsource['fSourceName']; ?>"))
431 ),
432 <?php
433 }
434 ?>
435
436 selection.setAttribute('id','source'), // End of retrieving
437 selection.setAttribute('class','source') // End of retrieving
438 );
439 var newtd_c4 = document.createElement("td");
440 newtd_c4.setAttribute("width","119");
441 newtd_c4.setAttribute("align","center");
442 newtd_c4.appendChild(
443 input_data = document.createElement("input"),
444 input_data.setAttribute("type","text"),
445 input_data.setAttribute("class","selected"),
446 input_data.setAttribute("size","12"),
447 input_data.setAttribute("value","<?php echo $rows['fData']; ?>"),
448 input_data.setAttribute("placeholder","Value")
449 );
450 var newtd_c5 = document.createElement("td");
451 newtd_c5.setAttribute("width","115");
452 newtd_c5.setAttribute("align","center");
453 newtd_c5.setAttribute("width","115");
454 newtd_c5.setAttribute("align","center");
455 newtd_c5.appendChild(
456 input_data = document.createElement("input"),
457 input_data.setAttribute("type","button"),
458 input_data.setAttribute("value","Delete"),
459 input_data.onclick = function(){ return clearNode(newtr<?php echo $cnt; ?>);
460 }
461 );
462
463 newtr<?php echo $cnt; ?>.appendChild(newtd_c2);
464 newtr<?php echo $cnt; ?>.appendChild(newtd_c3);
465 newtr<?php echo $cnt; ?>.appendChild(newtd_c4);
466 newtr<?php echo $cnt; ?>.appendChild(newtd_c5);
467 newInnertable.appendChild(newtr<?php echo $cnt; ?>);
468 <?php
469 $cnt++;
470 $prevtimestamp = $timestamp;
471 }
472 ?>
473 var newtd_c6 = document.createElement("td");
474 newtd_c6.appendChild(newInnertable);
475
476 var newtd_c7 = document.createElement("td");
477 newtd_c7.setAttribute("width","115");
478 newtd_c7.setAttribute("align","center");
479 newtd_c7.appendChild(
480 input_data = document.createElement("input"),
481 input_data.setAttribute("type","button"),
482 input_data.setAttribute("value","Delete Main"),
483 input_data.onclick = function(){ return clearNode(newdiv); }
484 );
485
486 var newOutertr = document.createElement("tr");
487
488 newtable.appendChild(newtd_c1);
489 newtable.appendChild(newtd_c6);
490 newtable.appendChild(newtd_c7);
491
492 newdiv.appendChild(newtable);
493
494 if(nextrow != null){
495 var doc = document.getElementById(nextrow);
496 $(doc).after(newdiv);
497 } else {
498 targetView.appendChild(newdiv);
499 }
500 <?php
501 }
502
503 if(mysql_num_rows($fetch)<1)
504 {
505 ?>
506 $('#save').attr('value','SAVE');
507 addRowCloneNew();
508 <?php
509 }
510 ?>
511
512}
513
514 </script>
515
Note: See TracBrowser for help on using the repository browser.