There seems one issue in agent screen of version 2.0.5.
VICIDIAL web-client version: 2.0.5-203
BUILD: 90323-1554
Actually calls going smoothely but when the call is being hung up by customer side, then agent is not being notified on their screen like "Customer has hung up" and go back and Finish and Disposition Call links.
I have checked the code which is displaying this screen is,
- Code: Select all
<span style="position:absolute;left:0px;top:0px;z-index:29;" id="CustomerGoneBox">
<table border=1 bgcolor="#CCFFFF" width=<?=$CAwidth ?> height=500><TR><TD align=center> Customer has hung up: <span id="CustomerGoneChanneL"></span><BR>
<a href="#" onclick="CustomerGoneOK();return false;">Go Back</a>
<BR><BR>
<a href="#" onclick="CustomerGoneHangup();return false;">Finish and Disposition Call</a>
</TD></TR></TABLE>
</span>
and this will be pop up by this code,
- Code: Select all
if ( (custchannellive < -30) && (lastcustchannel.length > 3) ) {CustomerChanneLGone();}
i debugged the value of both custchannellive and lastcustchannel variable by alert,
lastcustchannel value seems fine, and custchannellive variable is increasing when call is connected but when customer hangup, i mean channel is dropped that time but the value of custchannelive is stopped increasing, its just gone constant not even decreasing.
That is the only reason of not popping up the screen for customer hang up.
anybody faced the same issue?
also please help me out if you have solution.
Thanks in advance.