release 1.1.11

git-svn-id: svn://192.168.202.10@6 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2006-07-07 15:19:21 +00:00
parent dcbe8f2faa
commit 2598ae9ec2
31 changed files with 419 additions and 218 deletions
+17 -6
View File
@@ -100,7 +100,9 @@
# - Changed several permissions to database-defined
# 60419-1529 - Prevent manual dial or callbacks when alt-dial lead not finished
# 60420-1647 - Fixed DiaLDiaLAltPhonE error, Call Agent Again DialControl error
# 60421-1229 - check GET/POST vars lines with isset to not trigger PHP NOTICES
# 60421-1229 - Check GET/POST vars lines with isset to not trigger PHP NOTICES
# 60424-1005 - Fixed Alt phone disabled bug for callbacks and manual dials
# 60426-1058 - Added vicidial_user setting for default blended check for CLOSER
#
require("dbconnect.php");
@@ -137,8 +139,8 @@ if (isset($_GET["relogin"])) {$relogin=$_GET["relogin"];}
$forever_stop=0;
$version = '1.1.76';
$build = '60421-1229';
$version = '1.1.78';
$build = '60426-1058';
if ($force_logout)
{
@@ -164,7 +166,7 @@ $multi_line_comments = '1'; # set to 1 to allow multi-line comment box
$user_login_first = '0'; # set to 1 to have the vicidial_user login before the phone login
$view_scripts = '1'; # set to 1 to show the SCRIPTS tab
$dispo_check_all_pause = '0'; # set to 1 to allow for persistent pause after dispo
$agentcallsstatus = '1'; # set to 1 to show agent status and call count
$agentcallsstatus = '0'; # set to 1 to show agent status and call count
$campagentstatctmax = '0'; # Number of seconds for campaign call and agent stats
$TEST_all_statuses = '0'; # TEST variable allows all statuses in dispo screen
@@ -394,7 +396,7 @@ $VDloginDISPLAY=0;
$login=strtoupper($VD_login);
$password=strtoupper($VD_pass);
##### grab the full name of the agent
$stmt="SELECT full_name,user_level,hotkeys_active,agent_choose_ingroups,scheduled_callbacks,agentonly_callbacks,agentcall_manual,vicidial_recording,vicidial_transfers from vicidial_users where user='$VD_login' and pass='$VD_pass'";
$stmt="SELECT full_name,user_level,hotkeys_active,agent_choose_ingroups,scheduled_callbacks,agentonly_callbacks,agentcall_manual,vicidial_recording,vicidial_transfers,closer_default_blended from vicidial_users where user='$VD_login' and pass='$VD_pass'";
$rslt=mysql_query($stmt, $link);
$row=mysql_fetch_row($rslt);
$LOGfullname=$row[0];
@@ -406,6 +408,7 @@ $VDloginDISPLAY=0;
$agentcall_manual=$row[6];
$VU_vicidial_recording=$row[7];
$VU_vicidial_transfers=$row[8];
$VU_closer_default_blended=$row[9];
fwrite ($fp, "vdweb|GOOD|$date|$VD_login|$VD_pass|$ip|$browser|$LOGfullname|\n");
fclose($fp);
@@ -1199,6 +1202,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
var logout_stop_timeouts = 0;
var VICIDiaL_allow_closers = '<? echo $VICIDiaL_allow_closers ?>';
var VICIDiaL_closer_blended = '0';
var VU_closer_default_blended = '<? echo $VU_closer_default_blended ?>';
var VDstop_rec_after_each_call = '<? echo $VDstop_rec_after_each_call ?>';
var phone_login = '<? echo $phone_login ?>';
var phone_pass = '<? echo $phone_pass ?>';
@@ -1304,6 +1308,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
var agentonly_callbacks = '<? echo $agentonly_callbacks ?>'
var agentcall_manual = '<? echo $agentcall_manual ?>'
var manual_dial_preview = '<? echo $manual_dial_preview ?>'
var starting_alt_phone_dialing = '<? echo $alt_phone_dialing ?>'
var alt_phone_dialing = '<? echo $alt_phone_dialing ?>'
var DiaLControl_auto_HTML = "<IMG SRC=\"./images/vdc_LB_pause_OFF.gif\" border=0 alt=\"Pause\"><a href=\"#\" onclick=\"AutoDial_ReSume_PauSe('VDADready');\"><IMG SRC=\"./images/vdc_LB_resume.gif\" border=0 alt=\"Resume\"></a>";
var DiaLControl_auto_HTML_ready = "<a href=\"#\" onclick=\"AutoDial_ReSume_PauSe('VDADpause');\"><IMG SRC=\"./images/vdc_LB_pause.gif\" border=0 alt=\"Pause\"></a><IMG SRC=\"./images/vdc_LB_resume_OFF.gif\" border=0 alt=\"Resume\">";
@@ -2020,6 +2025,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
// Finish the alternate dialing and move on to disposition the call
function ManualDialAltDonE()
{
alt_phone_dialing=starting_alt_phone_dialing;
alt_dial_active = 0;
open_dispo_screen=1;
document.getElementById("MainStatuSSpan").innerHTML = "Dial Next Number";
@@ -2248,6 +2254,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
// Open up a callback customer record as manual dial preview mode
function new_callback_call(taskCBid,taskLEADid)
{
alt_phone_dialing=1;
auto_dial_level=0;
manual_dial_in_progress=1;
MainPanelToFront();
@@ -2264,6 +2271,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
// Finish Callback and go back to original screen
function manual_dial_finished()
{
alt_phone_dialing=starting_alt_phone_dialing;
auto_dial_level=starting_dial_level;
MainPanelToFront();
CalLBacKsCounTCheck();
@@ -2301,6 +2309,7 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
}
else
{
alt_phone_dialing=1;
auto_dial_level=0;
manual_dial_in_progress=1;
MainPanelToFront();
@@ -4423,6 +4432,8 @@ if ($enable_fast_refresh < 1) {echo "\tvar refresh_interval = 1000;\n";}
}
if (INgroupCOUNT > 0)
{
if (VU_closer_default_blended == 1)
{document.vicidial_form.CloserSelectBlended.checked=true}
showDiv('CloserSelectBox');
var CloserSelecting = 1;
CloserSelectContent_create();
@@ -4950,7 +4961,7 @@ echo "</head>\n";
<?
if (eregi("X",dial_prefix))
{
echo "Note: a dial prefix of $dial_prefix with be added to the beginning of this number<BR>\n";
echo "Note: a dial prefix of $dial_prefix will be added to the beginning of this number<BR>\n";
}
?>
Note: all new manual dial leads will go into list 999<BR><BR>