= qh_h($ticket['ticket_number']) ?>
-
= qh_h(qh_name($ticket, 'doctor_name', qh_t('Doctor', 'الطبيب'))) ?>
-
- = qh_h(qh_t('Room', 'غرفة')) ?> = qh_h($ticket['doctor_room'] ?? '--') ?>
-
+
+
= qh_h(qh_t('Nursing Station', 'محطة التمريض')) ?>
+
+ = qh_h(qh_t('Vitals', 'العلامات الحيوية')) ?>
+
+
+
= qh_h(qh_name($ticket, 'doctor_name', qh_t('Doctor', 'الطبيب'))) ?>
+
+ = qh_h(qh_t('Room', 'غرفة')) ?> = qh_h($ticket['doctor_room'] ?? '--') ?>
+
+
= qh_format_datetime($ticket['called_at'] ?? $ticket['updated_at']) ?>
diff --git a/reception.php b/reception.php
index 3310b41..8386c9c 100644
--- a/reception.php
+++ b/reception.php
@@ -7,7 +7,7 @@ qh_reception_handle_request();
$clinics = qh_fetch_clinics();
$doctors = qh_fetch_doctors();
$currentTicket = isset($_GET['ticket_id']) ? qh_fetch_ticket((int) $_GET['ticket_id']) : null;
-$todayTickets = qh_fetch_tickets(['waiting_vitals', 'ready_for_doctor', 'called', 'in_progress', 'done', 'no_show'], null, 12);
+$todayTickets = qh_fetch_tickets(['waiting_vitals', 'nursing_called', 'ready_for_doctor', 'called', 'in_progress', 'done', 'no_show'], null, 12);
qh_page_start(
'reception',