Page 1 of 1

fix in agi-VDADtransferSURVEY.agi to accuratly show stats in

PostPosted: Wed Nov 12, 2008 6:18 pm
by bobbymc
$stmtA = "UPDATE vicidial_auto_calls set status='XFER', stage='XFER-$drop_timer' where callerid='$callerid';";
$affected_rows = $dbhA->do($stmtA);
if ($AGILOG) {$agi_string = "-- VDAD XFER : |$affected_rows|update of vac table: $callerid\n|$stmtA|"; &agi_output;}

after this we should also update the vicidial_log that this call was trasnfered.. or else it always stays in QUEUE if the calls get transfered to a remote agent



#my addition after that line
$stmtA = "UPDATE vicidial_log set status='XFER' where uniqueid = '$uniqueid';";
$affected_rows = $dbhA->do($stmtA);
if ($AGILOG) {$agi_string = "-- VDAD vicidial_log update : |$affected_rows|update of vicidial_log table: $uniqueid\n|$stmtA|"; &agi_output;}



let me know if its added int he svn.. thx

PostPosted: Wed Nov 12, 2008 8:54 pm
by mflorell
I believe SVN trunk already has this changed in the ALL_outbound script.

PostPosted: Wed Nov 12, 2008 8:55 pm
by bobbymc
i see.. when will the 2.0.5 version be released as stable?

PostPosted: Wed Nov 12, 2008 8:59 pm
by mflorell
No idea as for a release date for 2.0.5, we have many clients running SVN trunk right now in production. If I can get a solid week of uninterrupted time I can get another release out, but I really want to finish QC functionality first which is at least a month away.

PostPosted: Wed Nov 12, 2008 9:00 pm
by bobbymc
sorry im a little behind.. whats QC? queue mertrics?

PostPosted: Wed Nov 12, 2008 9:15 pm
by mflorell
QC = Quality Control

We are working on a Quality Control component to VICIDIAL.

PostPosted: Wed Nov 12, 2008 9:25 pm
by bobbymc
ohhh.. nice.. where can i read on it? i like to contribute to it if possible =)

PostPosted: Wed Nov 12, 2008 10:16 pm
by mflorell
Look at the QC_PROCESS.txt doc in the SVN trunk code-base.