automatic redirection to disposition screen for call hangups

General and Support topics relating to ViciDialNow and GoAutoDial ISO installers

Moderators: enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, s0lid

automatic redirection to disposition screen for call hangups

Postby striker » Mon Jan 31, 2011 7:38 am

Goautodial latest "upgraded to 2.4 vicidial"
version=2.4-296
build=110111-1305
no extra hardware,

hi

My agent screen automatically gets redirected to the disposition screen as soon as the called party disconnects the call.
how to avoid this because i am using the dial next number option , the agent have to edit the coutomer datas in a long custom fields.
also this disposition screen automatic redirect works in ratio dialling ,
i think the vicidial group have update this new option , but in my case i dont want this option , agent have to click the hangup coustomer.

how to stop this automatic redirect to dispositon screen
www.striker24x7.com www.youtube.com/c/striker24x7 Telegram/skype id : striker24x7
striker
 
Posts: 962
Joined: Sun Jun 06, 2010 10:25 am

Postby williamconley » Mon Jan 31, 2011 10:43 am

check the changelog for the agent screen and see if you can identify whether it will be a user pref, a campaign pref, or an option on the agent screen or what. maybe even a usergroup pref.
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20256
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Postby mikejett » Sat Feb 05, 2011 7:55 pm

$version = '2.4-301';
$build = '101128-0102';


Guys, I have addressed the issue of hangups going straight to the disposition screen. Here is documentation of the changes that I have made in vicidial.php:

Firstly, the function dialedcall_send_hangup(dispowindow,hotkeysused,altdispo,nodeletevdac)
the dispowindow argument passed to this function determines whether the disposition DIV is displayed or not.

This is the section we are concerned about in this function:

// if (dispowindow == 'NO')
// {
open_dispo_screen=0;
// }
/* else
{
if (auto_dial_level == 0)
{
if (document.vicidial_form.DiaLAltPhonE.checked==true)
{
reselect_alt_dial = 1;
open_dispo_screen=0;
}
else
{
reselect_alt_dial = 0;
open_dispo_screen=1;
}
}
else
{
if (document.vicidial_form.DiaLAltPhonE.checked==true)
{
reselect_alt_dial = 1;
open_dispo_screen=0;
auto_dial_level=0;
manual_dial_in_progress=1;
auto_dial_alt_dial=1;
}
else
{
reselect_alt_dial = 0;
open_dispo_screen=1;
}
}
} */

As you can see, I' ve commented out anything that would cause the dispo screen to be displayed at this time.

Next, we need to display a button that allows the agent to move on to the dispo screen. For this, I commented out the code that would display the "disabled" hangup button, and replace it with a button that sets open_dispo_screen to 1:

// document.getElementById("HangupControl").innerHTML = "<IMG SRC=\"./images/vdc_LB_hangupcustomer_OFF.gif\" border=0 alt=\"Hangup Customer\">";
document.getElementById("HangupControl").innerHTML = "<IMG SRC=\"./images/vdc_LB_dispo.gif\" border=0 onClick=\"javascript: open_dispo_screen = 1;\" alt=\"Dispostion Call\">";

Next, in the function DispoSelect_submit(), we re-add the code to turn the dispo button back into the "disabled" hangup button, in the appropriate section of the function where other DOM objects are displayed and taken away, so the agent cannot create two dispositions for the same record.

document.getElementById("HangupControl").innerHTML = "<IMG SRC=\"./images/vdc_LB_hangupcustomer_OFF.gif\" border=0 alt=\"Hangup Customer\">";

Edit:

I'm not doing any alternate dialing in my campaign. Before you implement any change like this, you should make sure that you enable stuff that's relevant to alt_dialing, instead of just commenting out the whole block like I did, you should instead going through this section and commenting out each individual line that says open_dispo_screen=1;
mikejett
 
Posts: 1
Joined: Sat Feb 05, 2011 7:52 pm


Return to ViciDialNow - GoAutoDial

Who is online

Users browsing this forum: No registered users and 83 guests