by karlb » Thu Jan 24, 2013 3:43 pm
I think I fixed this.
I made 2 changes to agi-VDAD_ALL_outbound.agi
The line numbers are from SVN 1915. (Not sure if they'd be the same on a different SVN version.)
On line 3,175:
$stmtA = "UPDATE vicidial_log FORCE INDEX(lead_id) set status='IVRXFR',end_epoch='$now_date_epoch',length_in_sec='$drop_seconds',term_reason='CALLMENUXFER' where lead_id = '$CIDlead_id' and uniqueid LIKE \"$Euniqueid%\";";
CHANGE TO:
$stmtA = "UPDATE vicidial_log FORCE INDEX(lead_id) set status='DROP',end_epoch='$now_date_epoch',length_in_sec='$drop_seconds',term_reason='CALLMENUXFER' where lead_id = '$CIDlead_id' and uniqueid LIKE \"$Euniqueid%\";";
On line 3,180:
$stmtA = "UPDATE vicidial_list set status='IVRXFR' where lead_id = '$CIDlead_id';";
CHANGE TO:
$stmtA = "UPDATE vicidial_list set status='DROP' where lead_id = '$CIDlead_id';";
From the way I see it, any dropped lead in the campaign is going to that call menu. I don't need to see the disp as IVRXFR, I already know it's a DROP. DROP status works fine and gets updated in stats like it should.
Hope this can help someone else with the same problem.
Karl Babcock
Last edited by
karlb on Tue Jun 04, 2013 5:18 pm, edited 1 time in total.