From e17beb847a361793865d83fe50abdd3b7b225e35 Mon Sep 17 00:00:00 2001 From: sunsetsystems Date: Tue, 29 Jul 2008 16:52:10 +0000 Subject: [PATCH] added PID display and notification of count of matching records --- interface/main/finder/patient_select.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/interface/main/finder/patient_select.php b/interface/main/finder/patient_select.php index 2cdf7e21f..a62323baa 100644 --- a/interface/main/finder/patient_select.php +++ b/interface/main/finder/patient_select.php @@ -4,6 +4,7 @@ include_once("$srcdir/patient.inc"); $patient = $_REQUEST['patient']; $findBy = $_REQUEST['findBy']; +$MAXSHOW = 500; // maximum number of results to display at once // this is a quick fix so it doesn't go to thousands records. // the searching functions on patient.inc need improvement. @@ -48,8 +49,9 @@ form { .srName { width: 12%; } .srPhone { width: 11%; } .srSS { width: 11%; } -.srDOB { width: 11%; } -.srID { width: 11%; } +.srDOB { width: 8%; } +.srID { width: 7%; } +.srPID { width: 7%; } .srNumEnc { width: 11%; } .srNumDays { width: 11%; } .srDateLast { width: 11%; } @@ -100,10 +102,9 @@ form { -=100): ?> -More than 100 records found. Please narrow your search criteria. + $MAXSHOW): ?> + - records found. +
@@ -131,6 +132,7 @@ elseif ($findBy == "Phone") //(CHEMED) Search by phone number + @@ -181,6 +183,7 @@ if ($result) { echo " "; } echo "" . $iter['pubpid'] . ""; + echo "" . $iter['pid'] . ""; //setup for display of encounter date info $encounter_count = 0; $day_diff = ''; -- 2.11.4.GIT