-
Notifications
You must be signed in to change notification settings - Fork 0
/
displayq.php
196 lines (175 loc) · 8.01 KB
/
displayq.php
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
<!DOCTYPE html>
<html>
<title>คิวรับยา</title>
<meta charset="UTF-8">
<!-- <link rel="stylesheet" type="text/css" href="source/progress_bar.css"> -->
<link rel="stylesheet" type="text/css" href="w3.css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="source/progress_bar.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.mySlides {display:none;}
.mySlides2 {display:none;}
.w3-striped-blue tbody tr:nth-child(even){background-color:#e6ffff;}
.w3-striped-red tbody tr:nth-child(even){background-color:#ffe6e6;}
</style>
<body>
<?php
//header('refresh: 120; url=display_eng.php');
require("connection.php");
require("source/display_functions_fin_time.php");
require ('function.php');
$fin = find_fin_array(); //เช็คทุกคนที่ไม่ใช่อันสุดท้ายและยกเลิก
$wip = find_wip_array();
date_default_timezone_set("Etc/GMT-7");
$today = date("Y-m-d");
$language = "th";
//$refresh_time = refresh_time($db, $today);
?>
<div id="top"></div>
<!-- <div class="w3-row-padding" style="height: 720px;"> -->
<div class="w3-row-padding" style="height: 100vh">
<!-- Finished Queue -->
<div class="w3-col l5" style="height: 100%;">
<h1 class="w3-center w3-red w3-xxxlarge"><i class="fa fa-check-circle" aria-hidden="true"></i> เชิญรับยา (Finished) </h1>
<!-- ยาต้ม -->
<div class="w3-animate-right mySlides">
<h1 class="w3-center">คลินิกต้มให้ (A)</h1>
<table class="w3-table w3-striped-red w3-xxxlarge">
<?php
//ต้องเรียกใช้จาก source/display_fuction ที่ function finish_table($db, $fin_s_id, $fin, $today, $title){
// ใช้แสดงคิวที่เสร็จแล้ว ต้องใส่ค่อ
//$fin_s_id ซึ่งคือ id ที่แปลว่าพร้อมจ่ายยา, $title เป็นชื่อหัวข้อของตาราง, $today เป็นวันที่อยู่ใน format 'yyyy-mm-dd'
finish_table($db, 15, $fin, $today, 'คลินิกต้มให้ (A)');
?>
</table>
</div>
<!-- ยาจัด -->
<div class="w3-animate-right mySlides">
<h1 class="w3-center">ต้มเอง (B)</h1>
<table class="w3-table w3-striped-red w3-xxxlarge">
<?php
finish_table($db, 23, $fin, $today, 'ต้มเอง (B)');
?>
</table>
</div>
<!-- ยาเคิลี่ -->
<div class="w3-animate-right mySlides">
<h1 class="w3-center">ยาเคอลี่ (C)</h1>
<table class="w3-table w3-striped-red w3-xxxlarge">
<?php
finish_table($db, 32, $fin, $today, 'ยาเคอลี่ (C)');
?>
</table>
</div>
<!-- ยาสำเร็จรูป -->
<div class="w3-animate-right mySlides">
<h1 class="w3-center">ยาสำเร็จรูป (D)</h1>
<table class="w3-table w3-striped-red w3-xxxlarge">
<?php
finish_table($db, 40, $fin, $today, 'ยาสำเร็จรูป (D)');
?>
</table>
</div>
</div>
<!-- Status -->
<div class="w3-col l7" style="height: 100%;">
<h1 class="w3-center w3-blue"><i class="fa fa-cogs" aria-hidden="true"></i> กำลังเตรียม (Preparing) </h1>
<!-- ยาต้ม -->
<div class="w3-animate-right mySlides2">
<h1 class="w3-center"> คลินิกต้มให้ (A)</h1>
<h2 class="w3-center"><?php type_process(1); ?></h2>
<table class="w3-table w3-center w3-padding w3-striped-blue w3-xxxlarge">
<tr class="w3-blue w3-xxlarge">
<th>คิว</th>
<th>เสร็จเวลา</th>
<th>สถานะ</th>
</tr>
<?php
$fin_s_id = 15;
$collected_s_id = 16;
$cancle_s_id = 101;
$t_id = 1;
$title = "คลินิกต้มให้ (A)";
display_status($db, $fin_s_id, $collected_s_id, $cancle_s_id, $t_id, $title, $today, $language);
?>
</table>
</div>
<!-- ยาจัด -->
<div class="w3-animate-right mySlides2">
<h1 class="w3-center"> ต้มเอง (B)</h1>
<h2 class="w3-center"><?php type_process(2); ?></h2>
<table class="w3-table w3-center w3-padding w3-striped-blue w3-xxxlarge">
<tr class="w3-blue w3-xxlarge">
<th>คิว</th>
<th>เสร็จเวลา</th>
<th>สถานะ</th>
</tr>
<?php
$fin_s_id = 23;
$collected_s_id = 24;
$cancle_s_id = 201;
$t_id = 2;
$title = "ต้มเอง (B)";
display_status($db, $fin_s_id, $collected_s_id, $cancle_s_id, $t_id, $title, $today, $language);
?>
</table>
</div>
<!-- เคอลี่ -->
<div class="w3-animate-right mySlides2">
<h1 class="w3-center"> เคอลี่ (C)</h1>
<h2 class="w3-center"><?php type_process(3); ?></h2>
<table class="w3-table w3-center w3-padding w3-striped-blue w3-xxxlarge">
<tr class="w3-blue w3-xxlarge">
<th>คิว</th>
<th>เสร็จเวลา</th>
<th>สถานะ</th>
</tr>
<?php
$fin_s_id = 32;
$collected_s_id = 33;
$cancle_s_id = 301;
$t_id = 3;
$title = "เคอลี่ (C)";
display_status($db, $fin_s_id, $collected_s_id, $cancle_s_id, $t_id, $title, $today, $language);
?>
</table>
</div>
</div>
</div>
<script>
var myIndex = 0;
var myIndex2 = 0;
var fin_end = 0;
var status_end = 0;
carousel();
carousel2();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1; fin_end = 1;}
x[myIndex-1].style.display = "block";
if (fin_end == 1 && status_end == 1){
location.reload(true);
//location.assign("display_eng.php");
}
setTimeout(carousel, 16000); // Change image every 2 seconds
}
function carousel2() {
var j;
var y = document.getElementsByClassName("mySlides2");
for (j = 0; j < y.length; j++) {
y[j].style.display = "none";
}
myIndex2++;
if (myIndex2 > y.length) {myIndex2 = 1; status_end = 1;}
y[myIndex2-1].style.display = "block";
setTimeout(carousel2, 8000); // Change image every 2 seconds
}
</script>
</body>
</html>