Displaying 2 results from an estimated 2 matches for "patientq".
Did you mean:
patient
2004 Jul 03
1
Caller ID and DNIS Problems (Non-Pri T1)
...en => 3521234567,2,Queue(administrativeq)
exten => 3521234567,3,Hangup
exten => 8001234567,1,Answer
exten => 8001234567,2,Queue(administrativeq)
exten => 8001234567,3,Hangup
; Calls incoming to the main AR/Patient line.
exten => 1234567890,1,Answer
exten => 1234567890,2,Queue(patientq)
exten => 1234567890,3,Hangup
exten => 8007654321,1,Answer
exten => 8007654321,2,Queue(patientq)
exten => 8007654321,3,Hangup
; Nothing works except this last piece currently.
exten => _.,1,Goto(mainmenu,s,1)
2004 Apr 18
0
AGI Module
...countNumber = $AGI->get_data('agi-enteraccountnumber','15000','5');
# If accountNumber is blank then just queue the caller into the
# 'unverified' queue.
if ('foo' . $accountNumber eq 'foo') {
$AGI->exec('Queue', 'unverified-patientq');
$AGI->verbose('No account number entered', 1);
exit(0);
}
# Run query to get verification data from server.
$AGI->verbose('Executing queury',3);
my $sth = $dbh->prepare("select SSN, [Birth Date], Zip, [Home Phone]
from SEARCHBASE where [Demo#] =...