feat: match MRN, Gender, DOB, and Age only (removed Name check)
This commit is contained in:
@@ -1148,14 +1148,13 @@
|
||||
|
||||
// Extract matching credentials from URL query params
|
||||
const mrn = urlParams.get('mrn');
|
||||
const name = urlParams.get('name');
|
||||
const gender = urlParams.get('gender');
|
||||
const dob = urlParams.get('dob');
|
||||
const age = urlParams.get('age');
|
||||
|
||||
if (mrn || name) {
|
||||
if (mrn) {
|
||||
isMatchingMode = true;
|
||||
matchParams = { mrn, name, gender, dob, age };
|
||||
matchParams = { mrn, gender, dob, age };
|
||||
|
||||
// Show verification loading overlay initially
|
||||
const overlay = document.getElementById('verificationOverlay');
|
||||
@@ -1163,7 +1162,7 @@
|
||||
overlay.className = 'verification-overlay loading';
|
||||
document.getElementById('verificationIcon').textContent = '🔄';
|
||||
document.getElementById('verificationTitle').textContent = 'Verifying Patient Credentials...';
|
||||
document.getElementById('verificationMsg').textContent = 'Matching MRN, Name, Gender, DOB, and Age with live patient monitors...';
|
||||
document.getElementById('verificationMsg').textContent = 'Matching MRN, Gender, DOB, and Age with live patient monitors...';
|
||||
}
|
||||
|
||||
initWaveforms();
|
||||
|
||||
Reference in New Issue
Block a user