-
Notifications
You must be signed in to change notification settings - Fork 3
/
examroom.php
682 lines (623 loc) · 22.3 KB
/
examroom.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
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
<?php
############################################
# ThaiRIS (Thai Radiology Information System)
# Version: 1.0
# File last modified: 30 AUG 2015
# File name: examroom.php
# Description : Show Order worklist in examroom
# http://www.thairis.net
# Email : info.xraythai@gmail.com
############################################
//include "connectdb.php";
include "session.php";
include ("function.php");
set_time_limit(0);
$searchbox = $_POST['searchbox'];
$searchdate = $_POST['searchdate'];
$datestart = $_POST['date001'];
$dateend = $_POST['date002'];
$searchtoday = $_POST['today'];
$todaytype = $_POST['todaytype'];
$searchhn = $_POST['searchhn'];
$searchxn = $_POST['searchxn'];
$searchname = $_POST['searchname'];
$searchlast = $_POST['searchlast'];
$department = $_POST['department'];
$mod1 = $_POST['Mod_option1'];
$mod2 = $_POST['Mod_option2'];
$mod3 = $_POST['Mod_option3'];
$mod4 = $_POST['Mod_option4'];
$mod5 = $_POST['Mod_option5'];
$mod6 = $_POST['Mod_option6'];
$mod7 = $_POST['Mod_option7'];
$mod8 = $_POST['Mod_option8'];
$status_start = $_POST['status_start'];
$status_end = $_POST['status_end'];
$status_qc = $_POST['status_qc'];
$ARRIVAL1 = date("Y-m-d")." 00:00:00";
$ARRIVAL2 = date("Y-m-d")." 23:59:59";
//echo $ARRIVAL1.$ARRIVAL2;
//exit;
if ($datestart =="")
{
$datestart = date("Y-m-d",mktime(0, 0, 0, date("m"), date("d")-3,date("Y"))); // Yesterday
//$datestart = date("Y-m-d",mktime(0, 0, 0, date("m"), date("d")-3,date("Y"))); 3 day back
}
if ($dateend =='')
{
$dateend = date("Y-m-d");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Exam Room</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<link href="css/main.css" rel="stylesheet" type="text/css" />
<link href="css/layout.css" rel="stylesheet" type="text/css" />
<link href="css/modal.css" rel="stylesheet" type="text/css" />
<!--[if IE 6]>
<link href="css/ie6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script type="text/JavaScript" src="examroom-examlist.js"></script>
<script>
<!--
// Auto Refresh
//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="4:39"
if (document.images)
{
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh()
{
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else
{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
//setTimeout("beginrefresh()",1000)
setTimeout("beginrefresh()",500)
}
}
window.onload=beginrefresh
//-->
</script>
<SCRIPT LANGUAGE="JavaScript" SRC="CalendarPopup.js"></SCRIPT>
<script language=JavaScript src="frames_body_array_<?php echo $LANGUAGE; ?>.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>
<!-- Add jQuery library -->
<script type="text/javascript" src="./lib/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="./source/jquery.fancybox.js"></script>
<link rel="stylesheet" type="text/css" href="./source/jquery.fancybox.css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
/*
* Simple image gallery. Uses default settings
*/
$(".fancybox").fancybox({
afterClose : function() {
location.reload();
return;
}
});
$("#fancybox-manual-b").click(function() {
$.fancybox.open({
href : 'iframe.html',
type : 'iframe',
padding : 5
});
});
});
</script>
<style type="text/css">
.fancybox-custom .fancybox-skin {
box-shadow: 0 0 50px #222;
}
</style>
<STYLE>
.TESTcpYearNavigation,
.TESTcpMonthNavigation
{
background-color:#000000;
text-align:center;
vertical-align:center;
text-decoration:none;
color:#FFFFFF;
font-weight:bold;
}
.TESTcpDayColumnHeader,
.TESTcpYearNavigation,
.TESTcpMonthNavigation,
.TESTcpCurrentMonthDate,
.TESTcpCurrentMonthDateDisabled,
.TESTcpOtherMonthDate,
.TESTcpOtherMonthDateDisabled,
.TESTcpCurrentDate,
.TESTcpCurrentDateDisabled,
.TESTcpTodayText,
.TESTcpTodayTextDisabled,
.TESTcpText
{
font-family:arial;
font-size:8pt;
}
TD.TESTcpDayColumnHeader
{
text-align:right;
border:solid thin #6677DD;
border-width:0 0 1 0;
}
.TESTcpCurrentMonthDate,
.TESTcpOtherMonthDate,
.TESTcpCurrentDate
{
text-align:right;
text-decoration:none;
}
.TESTcpCurrentMonthDateDisabled,
.TESTcpOtherMonthDateDisabled,
.TESTcpCurrentDateDisabled
{
color:#D0D0D0;
text-align:right;
text-decoration:line-through;
}
.TESTcpCurrentMonthDate
{
color:#6677DD;
font-weight:bold;
}
.TESTcpCurrentDate
{
color: #FFFFFF;
font-weight:bold;
}
.TESTcpOtherMonthDate
{
color:#808080;
}
TD.TESTcpCurrentDate
{
color:#FFFFFF;
background-color: #6677DD;
border-width:1;
border:solid thin #000000;
}
TD.TESTcpCurrentDateDisabled
{
border-width:1;
border:solid thin #FFAAAA;
}
TD.TESTcpTodayText,
TD.TESTcpTodayTextDisabled
{
border:solid thin #6677DD;
border-width:1 0 0 0;
}
A.TESTcpTodayText,
SPAN.TESTcpTodayTextDisabled
{
height:20px;
}
A.TESTcpTodayText
{
color:#6677DD;
font-weight:bold;
}
SPAN.TESTcpTodayTextDisabled
{
color:#FFFFFF;
}
.TESTcpBorder
{
border:solid thin #000000;
}
</STYLE>
<script type="text/javascript">
$(document).ready(function() {
/*
* Examples - images
*/
$("a#example1").fancybox();
$("a#example2").fancybox({
'overlayShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("a#example3").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none'
});
$("a#example4").fancybox({
'opacity' : true,
'overlayShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'none'
});
$("a#example5").fancybox();
$("a#example6").fancybox({
'titlePosition' : 'outside',
'overlayColor' : '#000',
'overlayOpacity' : 0.9
});
$("a#example7").fancybox({
'titlePosition' : 'inside'
});
$("a#example8").fancybox({
'titlePosition' : 'over'
});
$("a[rel=example_group]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
/*
* Examples - various
*/
$("#various1").fancybox({
'titlePosition' : 'inside',
'transitionIn' : 'none',
'transitionOut' : 'none'
});
$("#various2").fancybox();
$("#various3").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
$("#various4").fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none'
});
<?php
for ($X=0; $X<51; $X++)
{
echo "$(\"#variousL-A".$X."\").fancybox({
'width' : '75%',
'height' : '90%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});"
;}
for ($X=0; $X<51; $X++)
{
echo "$(\"#variousL-B".$X."\").fancybox({
'width' : '75%',
'height' : '90%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});"
;}
?>
});
</script>
</head>
<body bgcolor="gray">
<div id="header-wrap">
<div id="header-container">
<table border=0 cellspacing=0 cellpedding=0 width=100%>
<tr>
<td BACKGROUND="cornner/hl.gif" border=0 width=20 height=36></td>
<td background="cornner/bg.gif" height=36 width=70%></td>
<td background="cornner/hm1.gif" width=33 align=right></td>
<td background="cornner/hm2.gif">Exam Room (Radiographer)</td>
<td background="cornner/hm4.gif" width=1></td>
<td background="cornner/hm2.gif"><?php echo $username; ?></td>
<td background="cornner/hm3.gif" width=30></td>
</tr>
</table>
</div>
</div>
<br/>
<br/>
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#79acf3">
<tr>
<td align=center width=25%>Search Order Xray </td><td align=center width=25%>Option Search Today</td><td align=center width=25%>Department</td><td align=center width=25%>Select Date</td>
</tr>
<tr bgcolor="#79acf3">
<td bgcolor="#f8d290">
<FORM method="post" action="examroom.php" name="searchpatient">
<INPUT TYPE=hidden NAME="searchbox" value="1">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" > HN </td>
<td><input type="text" name="searchhn" value=<?php echo $searchhn; ?>></td>
<td>XN </td>
<td><input type="text" name="searchxn"></td>
</tr>
<tr>
<td> Name </td><td><input type="text" name="searchname" value=<?php echo $searchname; ?>></td>
<td>Lastname </td><td><input type="text" name="searchlast" value=<?php echo $searchlast; ?>></td>
</tr>
</table>
</td>
<td align=center bgcolor="#f8d290">
<table>
<tr>
<td><input type="checkbox" name=Mod_option1 value="CT" /><label for="demo_box_1" name="demo_lbl_1" class="css-label"> CT</label></td>
<td><input type="checkbox" name=Mod_option2 value="MRI" /><label for="demo_box_1" name="demo_lbl_2" class="css-label"> MRI</label></td>
<td><input type="checkbox" name=Mod_option3 value="XRAY" /><label for="demo_box_1" name="demo_lbl_3" class="css-label"> XRAY</label></td>
<td><input type="checkbox" name=Mod_option4 value="MAMMO" /><label for="demo_box_1" name="demo_lbl_4" class="css-label"> MAMMO</label></td>
</tr>
<tr>
<td><input type="checkbox" name=Mod_option5 value="US" /><label for="demo_box_1" name="demo_lbl_5" class="css-label"> U/S</label></td>
<td><input type="checkbox" name=Mod_option6 value="ANGIO" /><label for="demo_box_1" name="demo_lbl_6" class="css-label"> FLU/IVP</label></td>
<td><input type="checkbox" name=Mod_option7 value="BMD" /><label for="demo_box_1" name="demo_lbl_7" class="css-label"> BMD</label></td>
<td><input type="checkbox" name=Mod_option8 value="PORTABLE" /><label for="demo_box_1" name="demo_lbl_8" class="css-label"> PORTABLE</label></td>
</tr>
</table>
<!--<center><input type=button value="refresh" onClick="window.open('order.php','main')"></center>-->
</td>
<td bgcolor="#f8d290"><center>Department
<input type="text" name="department"></center>
</td>
<td bgcolor="#f8d290" align=center>
<SCRIPT LANGUAGE="JavaScript" ID="js18">
var cal18 = new CalendarPopup("testdiv1");
cal18.setCssPrefix("TEST");
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript"></SCRIPT>
<INPUT TYPE="text" NAME="date001" VALUE="<?php echo $datestart; ?>" SIZE=10>
<a href='#'><img src=image/calandar.jpg border='0' onClick="cal18.select(document.forms[2].date001,'anchor18','dd/MM/yyyy'); return false;" TITLE="dd/MM/yyyy" NAME="anchor18" ID="anchor18"></a>
<SCRIPT LANGUAGE="JavaScript" ID="js19">
var cal19 = new CalendarPopup("testdiv1");
cal18.setCssPrefix("TEST");
</SCRIPT>
<!-- The next line prints out the source in this example page. It should not be included when you actually use the calendar popup code -->
<INPUT TYPE="text" NAME="date002" VALUE="<?php echo $dateend; ?>" SIZE=10>
<a href='#'><img src=image/calandar.jpg border='0' onClick="cal18.select(document.forms[2].date002,'anchor19','dd/MM/yyyy'); return false;" TITLE="dd/MM/yyyy" NAME="anchor19" ID="anchor19"></a>
<DIV ID="testdiv1" STYLE="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;"></DIV>
</p>
</td>
</tr>
<tr><td colspan=4 bgcolor=#79acf3><center>
Status :
<input type="checkbox" name=status_start value="1" /> Start Exam
<input type="checkbox" name=status_end value="1" /> End Exam
<input type="checkbox" name=status_qc value="1" /> QC
<button type=submit class="positive" value="reset"><img src="icons/arrow-circle-225-left.png" width=15 alt="reset" border=0 /> Reset </button>
<button type=submit class="positive" value="submit"><img src="icons/find.png" width=15 alt="Search" border=0 /> Search </button>
</center></td></tr>
</form>
</table>
<br />
<p></p>
<?php
//$sql = "SELECT xray_patient_info.MRN, xray_request.REQUEST_NO, xray_request_detail.ACCESSION, xray_patient_info.NAME AS PTNAME, xray_patient_info.LASTNAME AS PTLASTNAME, xray_code.DESCRIPTION, xray_referrer.NAME, xray_request_detail.REQUEST_TIMESTAMP AS ORDERTIME FROM xray_request INNER JOIN xray_request_detail ON (xray_request.REQUEST_NO = xray_request_detail.REQUEST_NO) INNER JOIN xray_user ON (xray_request.USER = xray_user.CODE) INNER JOIN xray_patient_info ON (xray_request.HN = xray_patient_info.MRN) INNER JOIN xray_department ON (xray_request.DEPARTMENT_ID = xray_department.DEPARTMENT_ID) INNER JOIN xray_referrer ON (xray_request.REFERRER = xray_referrer.REFERRER_ID)INNER JOIN xray_code ON (xray_request_detail.XRAY_CODE = xray_code.XRAY_CODE)WHERE xray_request_detail.XRAY_CODE = 'C0106'";
if (($searchbox =='1') AND ($searchhn =='') AND ($searchxn =='') AND ($searchname =='') AND ($searchlast =='') AND ($mod1 =='') AND ($mod2 =='') AND ($mod3 =='') AND ($mod4 =='') AND ($mod5 =='') AND ($mod6 =='') AND ($mod7 =='') AND ($mod8 =='') AND ($department =='') AND ($datestart =='') AND ($dateend ==''))
//if (($searchbox =='1') AND ($searchhn =='') AND ($searchxn =='') AND ($searchname =='') AND ($searchlast =='') AND ($mod1 =='') AND ($mod2 =='') AND ($mod3 =='') AND ($mod4 =='') AND ($mod5 =='') AND ($mod6 =='') AND ($mod7 =='') AND ($mod8 =='') AND ($datestart =='') AND ($dateend ==''))
{
echo "Please search some keyword before click search";
exit;
}
//echo "date";
//echo $datestart;
//echo $dateend;
//echo $mod1.$mod2.$mod3.$mod4.$mod5.$mod6.$mod7.$mod8;
//echo "<br />";
//echo $searchhn;
/*
echo $searchbox;
echo $searchdate;
echo $datestart;
echo $dateend;
echo $searchtoday;
echo $todaytype;
echo $searchhn;
echo $searchxn;
echo $searchname;
echo $searchlast;
echo $mod1;
echo $mod2;
echo $mod3;
echo $mod4;
echo $mod5;
echo $mod6;
echo $mod7;
echo $mod8;
echo $department;
echo $status_start;
echo $status_end;
echo $status_qc;
*/
//if (($searchdate =='') AND ($searchdate =='') AND ($datestart =='') AND ($dateend =='') AND ($)
$sql = "SELECT
xray_patient_info.MRN,
xray_patient_info.CENTER_CODE,
xray_patient_info.NAME AS PTNAME,
xray_patient_info.LASTNAME AS PTLASTNAME,
xray_patient_info.NAME_ENG AS NAMEENG,
xray_patient_info.LASTNAME_ENG AS LASTNAMEENG,
xray_patient_info.SEX,
xray_patient_info.BIRTH_DATE,
xray_request.REQUEST_NO,
xray_request_detail.ID AS ORDERID,
xray_request_detail.REQUEST_DATE AS REQ_DATE,
xray_request_detail.REQUEST_TIME AS REQ_TIME,
xray_request_detail.REQUEST_NO AS REQNUMBER,
xray_request_detail.REQUEST_DATE,
xray_request_detail.ARRIVAL_TIME,
xray_request_detail.ACCESSION,
xray_request_detail.XRAY_CODE AS XRAY_CODE,
xray_request_detail.STATUS,
xray_request_detail.URGENT,
xray_request_detail.REQUEST_TIMESTAMP AS ORDERTIME,
xray_code.XRAY_TYPE_CODE,
xray_department.NAME_THAI AS DEP,
xray_code.DESCRIPTION,
xray_referrer.NAME,
xray_referrer.LASTNAME
FROM xray_request
LEFT JOIN xray_request_detail ON xray_request_detail.REQUEST_NO = xray_request.REQUEST_NO
LEFT JOIN xray_user ON xray_user.CODE = xray_request.USER
LEFT JOIN xray_patient_info ON xray_patient_info.MRN = xray_request.MRN
LEFT JOIN xray_department ON xray_department.DEPARTMENT_ID = xray_request.DEPARTMENT_ID
LEFT JOIN xray_referrer ON xray_referrer.REFERRER_ID = xray_request.REFERRER
LEFT JOIN xray_code ON xray_code.XRAY_CODE = xray_request_detail.XRAY_CODE
WHERE
(xray_request_detail.PAGE = 'EXAM ROOM')
AND (xray_request_detail.STATUS != 'CANCEL')
AND ((xray_request_detail.REQUEST_DATE between '$datestart' AND '$dateend') OR (xray_request_detail.ARRIVAL_TIME between '$ARRIVAL1' AND '$ARRIVAL2'))
AND (xray_patient_info.CENTER_CODE ='$center_code' AND xray_patient_info.MRN like '%$searchhn%' AND xray_patient_info.XN like '%$searchxn%'
AND xray_patient_info.NAME like '%$searchname%' AND xray_patient_info.LASTNAME like '%$searchlast%')
AND (xray_code.XRAY_TYPE_CODE = '$mod1'
OR xray_code.XRAY_TYPE_CODE = '$mod2'
OR xray_code.XRAY_TYPE_CODE = '$mod3'
OR xray_code.XRAY_TYPE_CODE = '$mod4'
OR xray_code.XRAY_TYPE_CODE = '$mod5'
OR xray_code.XRAY_TYPE_CODE = '$mod6'
OR xray_code.XRAY_TYPE_CODE = '$mod7'
OR xray_code.DESCRIPTION like '%$mod8%')
AND xray_department.NAME_THAI like '%$department%'
ORDER BY URGENT desc, ORDERTIME ASC
LIMIT 0 , 999";
//AND ((xray_request_detail.STATUS != 'CANCEL'AND xray_request_detail.REQUEST_DATE between '$datestart' AND '$dateend') OR (xray_request_detail.ARRIVAL_TIME between 'ARRIVAL1' AND 'ARRIVAL2'))
// AND (xray_department.CENTER ='$center_code')
//AND (xray_request_detail.STATUS = '$status_start' OR xray_request_detail.STATUS ='$status_end' OR xray_request_detail.STATUS = '$status_qc')
//$datestart = Date2MySQL($datestart);
//$dateend = Date2MySQL($dateend);
//AND (xray_request_detail.REQUEST_DATE between '$datestart' and '$dateend')
$result = mysql_query($sql);
// HN xray_patient_info.MRN
// REQNUMBER xray_request.REQUEST_NO
// ACCESSION xray_request_detail.ACCESSION
// PATIENT NAME xray_patient_info.NAME AS PTNAME
// PATIENT LASTNAME xray_patient_info.LASTNAME AS PTLASTNAME
// XRAY DESCRIPTION xray_code.DESCRIPTION AS DESCRIPTION
// PHYSICIAN NAME xray_referrer.NAME
// PHYSICIAN LASTNAME xray_referrer.LASTNAME
// DEPARTMENT xray_department.NAMETHAI
// XRAY CODE xray_code.XRAY_CODE
echo "<table border='0' cellspacing='0' bgcolor='#79acf3' width=100%>
<tr>
<th><font color=#000000>ICON</font></th>
<th><font color=#000000>MRN (HN)</font></th>
<th><font color=#000000>ACC</font></th>
<th><font color=#000000>Patient</font></th>
<th><font color=#000000>Sex</font></th>
<th><font color=#000000>Mod</font></th>
<th><font color=#000000>Procedure</font></th>
<th><font color=#000000>Physician</font></th>
<th><font color=#000000>Order Time</font></th>
<th>Status</th>
</tr>\n";
$bg ="#FFCCCC";
$count = 0;
while($row = mysql_fetch_array($result))
{
if($bg == "#FFFFFF")
{ ///Change colour
$bg = "#C8C8C8";
}
else
{
$bg = "#FFFFFF";
}
$count = $count+1;
echo "<tr bgcolor=$bg onMouseOver=this.bgColor='gold'; onMouseOut=this.bgColor='".$bg."';>";
echo "<td>";
$URGENT = $row['URGENT'];
if ($URGENT == 1)
{
$ALERT = "<img src=./icon/urgent.jpg> <img src=icons/notebook--exclamation.png>";
}
if ($URGENT == 0 )
{
$ALERT = "";
}
echo $ALERT;
echo "</td>";
echo "<td>" .$row['MRN'] . "</td>";
//echo "<td>".$row[REQUEST_NO]."</td>";
echo "<td><a id='variousL-A".$count."' href=order-info.php?MRN=".$row['MRN']."&ACCESSION=".$row['ACCESSION']."&XRAYCODE=".$row['XRAY_CODE']."><img border=0 src=./icon-info.png></a>".$row['ACCESSION']."</td>";
echo "<td><a id='variousL-B".$count."' href='patient-info.php?MRN=".$row['MRN']."'>";
if ($row['SEX'] == 'M')
{
echo "<img border=0 src=./icons/user-green.png></a> ".$row['PTNAME']." ".$row['PTLASTNAME'];
}
if ($row['SEX'] == 'F')
{
echo "<img border=0 src=./icons/user-female.png></a> ".$row['PTNAME']." ".$row['PTLASTNAME'];
}
if ($row['SEX'] == 'O')
{
echo "<img border=0 src=./icons/users.png></a> ".$row['PTNAME']." ".$row['PTLASTNAME'];
}
$birthday = $row['BIRTH_DATE'];
echo "<font color=gray size=-2>".AgeCal($birthday)."</font>";
echo "</td>\n";
echo "<td>".$row['SEX']."</td>";
echo "<td>".$row['XRAY_TYPE_CODE']."</td>\n";
echo "<td>".$row['DESCRIPTION']."</td>";
echo "<td>".$row['NAME']." ".$row['LASTNAME']."<br /><font color=green><img src=arrow.gif>".$row['DEP'];
//echo "<td>".$row[ORDERTIME].$row[STATUS]."</td>";
echo "</font><td>".EngEachDate($row['REQ_DATE'])." ".$row['REQ_TIME']."</td>\n";
$status = $row['STATUS'];
$ORDERID = $row['ORDERID'];
if ($row['STATUS']=='READY')
{
// "<td><div id='".$row[ORDERID]."'><input type=button name=Start value=START onclick=pt_arrive('".$row[ORDERID]."','STARTED')></div></td>\n";
echo "<td><div id='".$row['ORDERID']."'><button type=button class=\"positive\" value=\"START\" onclick=pt_arrive('".$row['ORDERID']."','STARTED')> <img src=\"images/book_go.png\" alt=\"\"/> Start Exam</button></div></td>\n";
}
if ($row['STATUS']=='STARTED')
{
echo "<td><div id='".$row['ORDERID']."'><button type=button class=\"positive\" value=COMPLETE onclick=pt_arrive('".$row['ORDERID']."','ENDEXAM')> <img src=\"images/camera_go.png\" alt=\"\"/> Complete Exam</button></div></td>\n";
}
//////////////////////////////////// QC ////////////////////////
if ($row['STATUS']=='QC')
{
$ACCESSION = $row['ACCESSION'];
echo "<!-- popup form #$ACCESSION".$row['ACCESSION']." -->\n";
echo "<td><input id=\"demo_box_1\" type=\"checkbox\" /> ";
echo "<a class=\"fancybox fancybox.iframe\" href=qc.php?ACCESSION=".$row['ACCESSION']."&ORDERID=".$row['ORDERID']."&MRN=".$row['MRN']." > <button type=button class=\"positive\" value=\"QC\"><img src=\"images/chart_bar_edit.png\" alt=\"\" border=0 /> QC </button></a>\n";
echo "</td>";
}
if ($row['STATUS']=='ENDEXAM')
{
$sql2 ="select *
FROM xray_user
WHERE USER_TYPE_CODE ='RADIOLOGIST' AND CENTER_CODE='$center_code' order by NAME";
$result2 = mysql_query($sql2);
echo "<td><div id='".$row['ORDERID']."'>\n";
echo "<select name=selectrad id=selectrad".$row['ORDERID'].">";
echo "<option value=''>Select Radiologist</option>\n";
while ($row =mysql_fetch_array($result2))
{
echo "<option name=radid value=\"".$row['CODE']."\">".$row['NAME']." ".$row['LASTNAME']."</option>\n";
}
echo "</select><input type=button name=Start value=ASSIGN onclick=assignrad('".$ORDERID."','ASSIGN')></div>";
}
echo "</td></tr>\n";
}
echo "<tr><th colspan=8 align=right>";
echo "Total =".$count;
echo "</th></tr></table>\n";
?>
<script language=javascript>
document.searchpatient.searchhn.focus();
</script>
</body>
</html>