Page 1 of 1

stats bugs on auto dialer

PostPosted: Wed Nov 12, 2008 5:24 am
by bobbymc
in order to know how many people picked up on a auto dialer campaign we need to make sure that AST_VDauto_dial.pl wont overwrite the status with NA if the status was PU.. this way we know how many really pick up and how many were no answer.. because no answer should only be when the call was never answered.

chnage


$stmtA = "UPDATE vicidial_list set status='$CLnew_status' where lead_id='$CLlead_id'";

to:

$stmtA = "UPDATE vicidial_list set status='$CLnew_status' where status!='PU' and lead_id='$CLlead_id'";

please give me any feedback if im wrong

PostPosted: Wed Nov 12, 2008 12:17 pm
by mflorell
I have done that for other statuses in the SVN version. I think it may be good to have that as configurable option at some point.

PostPosted: Wed Nov 12, 2008 12:18 pm
by bobbymc
which statuses have you done for it?

PostPosted: Wed Nov 12, 2008 12:20 pm
by mflorell
CALLBK is all that I can think of at the moment