Added feature to allow for bulk change of campaign and in-group ranks and
grades in the User Modify page. Added "Admin Lead Source ID Display" System Settings option to allow Modify Lead page modification of Source ID field, and display in hopper list. git-svn-id: svn://192.168.202.10@2940 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -282,6 +282,12 @@ OTHER CHANGES:
|
||||
script tab to cover the dispo screen after hanging up the customer to
|
||||
allow for Agent-API-enabled IFRAMEs to control the agent dispo process.
|
||||
|
||||
77. Added feature to allow for bulk change of campaign and in-group ranks and
|
||||
grades in the User Modify page.
|
||||
|
||||
76. Added "Admin Lead Source ID Display" System Settings option to allow Modify
|
||||
Lead page modification of Source ID field, and display in hopper list.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1760,7 +1760,8 @@ allow_manage_active_lists ENUM('0','1') default '0',
|
||||
expired_lists_inactive ENUM('0','1') default '0',
|
||||
did_system_filter ENUM('0','1') default '0',
|
||||
anyone_callback_inactive_lists ENUM('default','NO_ADD_TO_HOPPER','KEEP_IN_HOPPER') default 'default',
|
||||
enable_gdpr_download_deletion ENUM('0','1','2') default '0'
|
||||
enable_gdpr_download_deletion ENUM('0','1','2') default '0',
|
||||
source_id_display ENUM('0','1') default '0'
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE TABLE vicidial_campaigns_list_mix (
|
||||
@@ -4187,4 +4188,4 @@ INSERT INTO vicidial_settings_containers(container_id,container_notes,container_
|
||||
|
||||
UPDATE system_settings set vdc_agent_api_active='1';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1539',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
UPDATE system_settings SET db_schema_version='1540',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
|
||||
@@ -581,3 +581,7 @@ UPDATE system_settings SET db_schema_version='1538',db_schema_update_date=NOW()
|
||||
ALTER TABLE vicidial_campaigns ADD script_top_dispo ENUM('Y', 'N') default 'N';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1539',db_schema_update_date=NOW() where db_schema_version < 1539;
|
||||
|
||||
ALTER TABLE system_settings ADD source_id_display ENUM('0','1') default '0';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1540',db_schema_update_date=NOW() where db_schema_version < 1540;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
# AST_VICIDIAL_hopperlist.php
|
||||
#
|
||||
# Copyright (C) 2017 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
||||
# Copyright (C) 2018 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
||||
#
|
||||
# CHANGES
|
||||
#
|
||||
@@ -25,6 +25,7 @@
|
||||
# 141230-0048 - Added code for on-the-fly language translations display
|
||||
# 161026-0931 - Added links to leads and lists, added phone code, age, last call columns
|
||||
# 170409-1544 - Added IP List validation code
|
||||
# 180310-2250 - Added optional source_id display
|
||||
#
|
||||
|
||||
$startMS = microtime();
|
||||
@@ -48,7 +49,7 @@ if (isset($_GET["SUBMIT"])) {$SUBMIT=$_GET["SUBMIT"];}
|
||||
|
||||
#############################################
|
||||
##### START SYSTEM_SETTINGS LOOKUP #####
|
||||
$stmt = "SELECT use_non_latin,enable_languages,language_method FROM system_settings;";
|
||||
$stmt = "SELECT use_non_latin,enable_languages,language_method,source_id_display FROM system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($DB) {echo "$stmt\n";}
|
||||
$qm_conf_ct = mysqli_num_rows($rslt);
|
||||
@@ -58,6 +59,7 @@ if ($qm_conf_ct > 0)
|
||||
$non_latin = $row[0];
|
||||
$SSenable_languages = $row[1];
|
||||
$SSlanguage_method = $row[2];
|
||||
$SSsource_id_display = $row[3];
|
||||
}
|
||||
##### END SETTINGS LOOKUP #####
|
||||
###########################################
|
||||
@@ -334,13 +336,20 @@ else
|
||||
##############################
|
||||
######### LEAD STATS
|
||||
|
||||
$SIDhead='';
|
||||
$SIDline='';
|
||||
if ($SSsource_id_display > 0)
|
||||
{
|
||||
$SIDhead='+----------------------';
|
||||
$SIDline="| "._QXZ("SOURCE ID",20)." ";
|
||||
}
|
||||
echo "\n";
|
||||
echo "---------- "._QXZ("LEADS IN HOPPER")."\n";
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------+----------+-----------+\n";
|
||||
echo "|"._QXZ("ORDER",5)." |"._QXZ("PRIORITY",8)."| "._QXZ("LEAD ID",9)." | "._QXZ("LIST ID",10)." | "._QXZ("PHONE NUM",11)." | "._QXZ("PH CODE",7)." | "._QXZ("STATE",5)." | "._QXZ("STATUS",6)." | "._QXZ("COUNT",5)." | "._QXZ("GMT",6)." | "._QXZ("ALT",5)." | "._QXZ("SOURCE",6)."| "._QXZ("VENDOR LEAD CODE",20)." | "._QXZ("AGE DAYS",8)." | "._QXZ("LAST CALL",9)." |\n";
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------+----------+-----------+\n";
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------$SIDhead+----------+-----------+\n";
|
||||
echo "|"._QXZ("ORDER",5)." |"._QXZ("PRIORITY",8)."| "._QXZ("LEAD ID",9)." | "._QXZ("LIST ID",10)." | "._QXZ("PHONE NUM",11)." | "._QXZ("PH CODE",7)." | "._QXZ("STATE",5)." | "._QXZ("STATUS",6)." | "._QXZ("COUNT",5)." | "._QXZ("GMT",6)." | "._QXZ("ALT",5)." | "._QXZ("SOURCE",6)."| "._QXZ("VENDOR LEAD CODE",20)." $SIDline| "._QXZ("AGE DAYS",8)." | "._QXZ("LAST CALL",9)." |\n";
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------$SIDhead+----------+-----------+\n";
|
||||
|
||||
$stmt="select vicidial_hopper.lead_id,phone_number,vicidial_hopper.state,vicidial_list.status,called_count,vicidial_hopper.gmt_offset_now,hopper_id,alt_dial,vicidial_hopper.list_id,vicidial_hopper.priority,vicidial_hopper.source,vicidial_hopper.vendor_lead_code, phone_code,UNIX_TIMESTAMP(entry_date),UNIX_TIMESTAMP(last_local_call_time) from vicidial_hopper,vicidial_list where vicidial_hopper.campaign_id='" . mysqli_real_escape_string($link, $group) . "' and vicidial_hopper.status='READY' and vicidial_hopper.lead_id=vicidial_list.lead_id $LOGallowed_campaignsSQL order by priority desc,hopper_id limit 5000;";
|
||||
$stmt="select vicidial_hopper.lead_id,phone_number,vicidial_hopper.state,vicidial_list.status,called_count,vicidial_hopper.gmt_offset_now,hopper_id,alt_dial,vicidial_hopper.list_id,vicidial_hopper.priority,vicidial_hopper.source,vicidial_hopper.vendor_lead_code, phone_code,UNIX_TIMESTAMP(entry_date),UNIX_TIMESTAMP(last_local_call_time),source_id from vicidial_hopper,vicidial_list where vicidial_hopper.campaign_id='" . mysqli_real_escape_string($link, $group) . "' and vicidial_hopper.status='READY' and vicidial_hopper.lead_id=vicidial_list.lead_id $LOGallowed_campaignsSQL order by priority desc,hopper_id limit 5000;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($DB) {echo "$stmt\n";}
|
||||
$users_to_print = mysqli_num_rows($rslt);
|
||||
@@ -392,6 +401,7 @@ else
|
||||
$phone_code = sprintf("%-7s", $row[12]);
|
||||
$entry_epoch = $row[13];
|
||||
$last_call_epoch = $row[14];
|
||||
$source_id_TEXT = "| ".sprintf("%-20s", $row[15])." ";
|
||||
|
||||
$lead_age = intval(($STARTtime - $entry_epoch) / 86400);
|
||||
$lead_age = sprintf("%-8s", $lead_age);
|
||||
@@ -431,14 +441,16 @@ else
|
||||
}
|
||||
}
|
||||
|
||||
if ($SSsource_id_display < 1)
|
||||
{$source_id_TEXT='';}
|
||||
|
||||
if ($DB) {echo "| $FMT_i | $priority | <a href='./admin_modify_lead.php?lead_id=$lead_id_ns&archive_search=No&archive_log=0'>$lead_id</a> | <a href='./admin.php?ADD=311&list_id=$list_id_ns'>$list_id</a> | $phone_number $phone_code || $state | $status | $count | $gmt | $alt_dial | $source | $vendor_lead_code | $lead_age | $last_call_age_TEXT | $hopper_id |\n";}
|
||||
else {echo "| $FMT_i | $priority | <a href='./admin_modify_lead.php?lead_id=$lead_id_ns&archive_search=No&archive_log=0'>$lead_id</a> | <a href='./admin.php?ADD=311&list_id=$list_id_ns'>$list_id</a> | $phone_number | $phone_code | $state | $status | $count | $gmt | $alt_dial | $source | $vendor_lead_code | $lead_age | $last_call_age_TEXT |\n";}
|
||||
else {echo "| $FMT_i | $priority | <a href='./admin_modify_lead.php?lead_id=$lead_id_ns&archive_search=No&archive_log=0'>$lead_id</a> | <a href='./admin.php?ADD=311&list_id=$list_id_ns'>$list_id</a> | $phone_number | $phone_code | $state | $status | $count | $gmt | $alt_dial | $source | $vendor_lead_code $source_id_TEXT| $lead_age | $last_call_age_TEXT |\n";}
|
||||
|
||||
$i++;
|
||||
}
|
||||
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------+----------+-----------+\n";
|
||||
echo "+------+--------+-----------+------------+-------------+---------+-------+--------+-------+--------+-------+-------+----------------------$SIDhead+----------+-----------+\n";
|
||||
}
|
||||
|
||||
if ($db_source == 'S')
|
||||
|
||||
+164
-11
File diff suppressed because one or more lines are too long
@@ -88,6 +88,7 @@
|
||||
# 171216-2058 - Added ability to modify all active scheduled callbacks, and view callbacks log
|
||||
# 180212-2340 - Added basic GDPR compliance features
|
||||
# 180302-1605 - Added complete GDPR compliance features
|
||||
# 180310-2300 - Added optional source_id display
|
||||
#
|
||||
|
||||
require("dbconnect_mysqli.php");
|
||||
@@ -98,6 +99,8 @@ $PHP_AUTH_PW=$_SERVER['PHP_AUTH_PW'];
|
||||
$PHP_SELF=$_SERVER['PHP_SELF'];
|
||||
if (isset($_GET["vendor_id"])) {$vendor_id=$_GET["vendor_id"];}
|
||||
elseif (isset($_POST["vendor_id"])) {$vendor_id=$_POST["vendor_id"];}
|
||||
if (isset($_GET["source_id"])) {$source_id=$_GET["source_id"];}
|
||||
elseif (isset($_POST["source_id"])) {$source_id=$_POST["source_id"];}
|
||||
if (isset($_GET["phone"])) {$phone=$_GET["phone"];}
|
||||
elseif (isset($_POST["phone"])) {$phone=$_POST["phone"];}
|
||||
if (isset($_GET["old_phone"])) {$old_phone=$_GET["old_phone"];}
|
||||
@@ -229,7 +232,7 @@ if ($nonselectable_statuses > 0)
|
||||
|
||||
#############################################
|
||||
##### START SYSTEM_SETTINGS LOOKUP #####
|
||||
$stmt = "SELECT use_non_latin,custom_fields_enabled,webroot_writable,allow_emails,enable_languages,language_method,active_modules,log_recording_access,admin_screen_colors,enable_gdpr_download_deletion FROM system_settings;";
|
||||
$stmt = "SELECT use_non_latin,custom_fields_enabled,webroot_writable,allow_emails,enable_languages,language_method,active_modules,log_recording_access,admin_screen_colors,enable_gdpr_download_deletion,source_id_display FROM system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($DB) {echo "$stmt\n";}
|
||||
$qm_conf_ct = mysqli_num_rows($rslt);
|
||||
@@ -246,6 +249,7 @@ if ($qm_conf_ct > 0)
|
||||
$log_recording_access = $row[7];
|
||||
$SSadmin_screen_colors = $row[8];
|
||||
$enable_gdpr_download_deletion = $row[9];
|
||||
$SSsource_id_display = $row[10];
|
||||
}
|
||||
##### END SETTINGS LOOKUP #####
|
||||
###########################################
|
||||
@@ -729,6 +733,7 @@ $label_state = _QXZ("State");
|
||||
$label_province = _QXZ("Province");
|
||||
$label_postal_code = _QXZ("Postal Code");
|
||||
$label_vendor_lead_code = _QXZ("Vendor ID");
|
||||
$label_source_id = _QXZ("Source ID");
|
||||
$label_gender = _QXZ("Gender");
|
||||
$label_phone_number = _QXZ("Phone");
|
||||
$label_phone_code = _QXZ("DialCode");
|
||||
@@ -764,6 +769,7 @@ if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
|
||||
##### BEGIN vicidial_list FIELD LENGTH LOOKUP #####
|
||||
$MAXvendor_lead_code = '20';
|
||||
$MAXsource_id = '50';
|
||||
$MAXphone_code = '10';
|
||||
$MAXphone_number = '18';
|
||||
$MAXtitle = '4';
|
||||
@@ -797,6 +803,8 @@ while ($scvl_ct > $s)
|
||||
{
|
||||
if ( ($vl_field == 'vendor_lead_code') and ($MAXvendor_lead_code != $vl_type) )
|
||||
{$MAXvendor_lead_code = $vl_type;}
|
||||
if ( ($vl_field == 'source_id') and ($MAXsource_id != $vl_type) )
|
||||
{$MAXsource_id = $vl_type;}
|
||||
if ( ($vl_field == 'phone_code') and ($MAXphone_code != $vl_type) )
|
||||
{$MAXphone_code = $vl_type;}
|
||||
if ( ($vl_field == 'phone_number') and ($MAXphone_number != $vl_type) )
|
||||
@@ -1012,7 +1020,10 @@ if ($lead_id == 'NEW')
|
||||
|
||||
if ( ($list_valid > 0) or (preg_match('/\-ALL/i', $LOGallowed_campaigns)) )
|
||||
{
|
||||
$stmt="INSERT INTO vicidial_list set status='" . mysqli_real_escape_string($link, $status) . "',title='" . mysqli_real_escape_string($link, $title) . "',first_name='" . mysqli_real_escape_string($link, $first_name) . "',middle_initial='" . mysqli_real_escape_string($link, $middle_initial) . "',last_name='" . mysqli_real_escape_string($link, $last_name) . "',address1='" . mysqli_real_escape_string($link, $address1) . "',address2='" . mysqli_real_escape_string($link, $address2) . "',address3='" . mysqli_real_escape_string($link, $address3) . "',city='" . mysqli_real_escape_string($link, $city) . "',state='" . mysqli_real_escape_string($link, $state) . "',province='" . mysqli_real_escape_string($link, $province) . "',postal_code='" . mysqli_real_escape_string($link, $postal_code) . "',country_code='" . mysqli_real_escape_string($link, $country_code) . "',alt_phone='" . mysqli_real_escape_string($link, $alt_phone) . "',phone_number='$phone_number',phone_code='$phone_code',email='" . mysqli_real_escape_string($link, $email) . "',security_phrase='" . mysqli_real_escape_string($link, $security) . "',comments='" . mysqli_real_escape_string($link, $comments) . "',rank='" . mysqli_real_escape_string($link, $rank) . "',owner='" . mysqli_real_escape_string($link, $owner) . "',vendor_lead_code='" . mysqli_real_escape_string($link, $vendor_id) . "', list_id='" . mysqli_real_escape_string($link, $list_id) . "',date_of_birth='" . mysqli_real_escape_string($link, $date_of_birth) . "',gmt_offset_now='$gmt_offset',entry_date=NOW();";
|
||||
$source_idSQL='';
|
||||
if ($SSsource_id_display > 0)
|
||||
{$source_idSQL = ",source_id='" . mysqli_real_escape_string($link, $source_id) . "'";}
|
||||
$stmt="INSERT INTO vicidial_list set status='" . mysqli_real_escape_string($link, $status) . "',title='" . mysqli_real_escape_string($link, $title) . "',first_name='" . mysqli_real_escape_string($link, $first_name) . "',middle_initial='" . mysqli_real_escape_string($link, $middle_initial) . "',last_name='" . mysqli_real_escape_string($link, $last_name) . "',address1='" . mysqli_real_escape_string($link, $address1) . "',address2='" . mysqli_real_escape_string($link, $address2) . "',address3='" . mysqli_real_escape_string($link, $address3) . "',city='" . mysqli_real_escape_string($link, $city) . "',state='" . mysqli_real_escape_string($link, $state) . "',province='" . mysqli_real_escape_string($link, $province) . "',postal_code='" . mysqli_real_escape_string($link, $postal_code) . "',country_code='" . mysqli_real_escape_string($link, $country_code) . "',alt_phone='" . mysqli_real_escape_string($link, $alt_phone) . "',phone_number='$phone_number',phone_code='$phone_code',email='" . mysqli_real_escape_string($link, $email) . "',security_phrase='" . mysqli_real_escape_string($link, $security) . "',comments='" . mysqli_real_escape_string($link, $comments) . "',rank='" . mysqli_real_escape_string($link, $rank) . "',owner='" . mysqli_real_escape_string($link, $owner) . "',vendor_lead_code='" . mysqli_real_escape_string($link, $vendor_id) . "'$source_idSQL, list_id='" . mysqli_real_escape_string($link, $list_id) . "',date_of_birth='" . mysqli_real_escape_string($link, $date_of_birth) . "',gmt_offset_now='$gmt_offset',entry_date=NOW();";
|
||||
if ($DB) {echo "$stmt\n";}
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
$affected_rows = mysqli_affected_rows($link);
|
||||
@@ -1071,8 +1082,11 @@ if ($end_call > 0)
|
||||
|
||||
if ( ($list_valid > 0) or (preg_match('/\-ALL/i', $LOGallowed_campaigns)) )
|
||||
{
|
||||
$source_idSQL='';
|
||||
if ($SSsource_id_display > 0)
|
||||
{$source_idSQL = ",source_id='" . mysqli_real_escape_string($link, $source_id) . "'";}
|
||||
### update the lead record in the vicidial_list table
|
||||
$stmtA="UPDATE $vl_table set status='" . mysqli_real_escape_string($link, $status) . "',title='" . mysqli_real_escape_string($link, $title) . "',first_name='" . mysqli_real_escape_string($link, $first_name) . "',middle_initial='" . mysqli_real_escape_string($link, $middle_initial) . "',last_name='" . mysqli_real_escape_string($link, $last_name) . "',address1='" . mysqli_real_escape_string($link, $address1) . "',address2='" . mysqli_real_escape_string($link, $address2) . "',address3='" . mysqli_real_escape_string($link, $address3) . "',city='" . mysqli_real_escape_string($link, $city) . "',state='" . mysqli_real_escape_string($link, $state) . "',province='" . mysqli_real_escape_string($link, $province) . "',postal_code='" . mysqli_real_escape_string($link, $postal_code) . "',country_code='" . mysqli_real_escape_string($link, $country_code) . "',alt_phone='" . mysqli_real_escape_string($link, $alt_phone) . "',phone_number='$phone_number',phone_code='$phone_code',email='" . mysqli_real_escape_string($link, $email) . "',security_phrase='" . mysqli_real_escape_string($link, $security) . "',comments='" . mysqli_real_escape_string($link, $comments) . "',rank='" . mysqli_real_escape_string($link, $rank) . "',owner='" . mysqli_real_escape_string($link, $owner) . "',vendor_lead_code='" . mysqli_real_escape_string($link, $vendor_id) . "',date_of_birth='" . mysqli_real_escape_string($link, $date_of_birth) . "' where lead_id='" . mysqli_real_escape_string($link, $lead_id) . "'";
|
||||
$stmtA="UPDATE $vl_table set status='" . mysqli_real_escape_string($link, $status) . "',title='" . mysqli_real_escape_string($link, $title) . "',first_name='" . mysqli_real_escape_string($link, $first_name) . "',middle_initial='" . mysqli_real_escape_string($link, $middle_initial) . "',last_name='" . mysqli_real_escape_string($link, $last_name) . "',address1='" . mysqli_real_escape_string($link, $address1) . "',address2='" . mysqli_real_escape_string($link, $address2) . "',address3='" . mysqli_real_escape_string($link, $address3) . "',city='" . mysqli_real_escape_string($link, $city) . "',state='" . mysqli_real_escape_string($link, $state) . "',province='" . mysqli_real_escape_string($link, $province) . "',postal_code='" . mysqli_real_escape_string($link, $postal_code) . "',country_code='" . mysqli_real_escape_string($link, $country_code) . "',alt_phone='" . mysqli_real_escape_string($link, $alt_phone) . "',phone_number='$phone_number',phone_code='$phone_code',email='" . mysqli_real_escape_string($link, $email) . "',security_phrase='" . mysqli_real_escape_string($link, $security) . "',comments='" . mysqli_real_escape_string($link, $comments) . "',rank='" . mysqli_real_escape_string($link, $rank) . "',owner='" . mysqli_real_escape_string($link, $owner) . "',vendor_lead_code='" . mysqli_real_escape_string($link, $vendor_id) . "'$source_idSQL,date_of_birth='" . mysqli_real_escape_string($link, $date_of_birth) . "' where lead_id='" . mysqli_real_escape_string($link, $lead_id) . "'";
|
||||
if ($DB) {echo "|$stmt|\n";}
|
||||
$rslt=mysql_to_mysqli($stmtA, $link);
|
||||
|
||||
@@ -1621,6 +1635,7 @@ else
|
||||
$dispo = $row[3];
|
||||
$tsr = $row[4];
|
||||
$vendor_id = $row[5];
|
||||
$source_id = $row[6];
|
||||
$list_id = $row[7];
|
||||
$gmt_offset_now = $row[8];
|
||||
$called_since_last_reset = $row[9];
|
||||
@@ -1742,6 +1757,8 @@ else
|
||||
echo "<tr><td align=right>$label_email : </td><td align=left>$email</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_security_phrase : </td><td align=left>$security</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_vendor_lead_code : </td><td align=left>$vendor_id></td></tr>\n";
|
||||
if ($SSsource_id_display > 0)
|
||||
{echo "<tr><td align=right>$label_source_id : </td><td align=left>$source_id></td></tr>\n";}
|
||||
echo "<tr><td align=right>"._QXZ("Rank")." : </td><td align=left>$rank</td></tr>\n";
|
||||
echo "<tr><td align=right>"._QXZ("Owner")." : </td><td align=left>$owner</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_comments : </td><td align=left>$comments</td></tr>\n";
|
||||
@@ -1768,6 +1785,8 @@ else
|
||||
echo "<tr><td align=right>$label_email : </td><td align=left><input type=text name=email size=40 maxlength=$MAXemail value=\"".htmlparse($email)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_security_phrase : </td><td align=left><input type=text name=security size=30 maxlength=$MAXsecurity_phrase value=\"".htmlparse($security)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_vendor_lead_code : </td><td align=left><input type=text name=vendor_id size=30 maxlength=$MAXvendor_lead_code value=\"".htmlparse($vendor_id)."\"></td></tr>\n";
|
||||
if ($SSsource_id_display > 0)
|
||||
{echo "<tr><td align=right>$label_source_id : </td><td align=left><input type=text name=source_id size=30 maxlength=$MAXsource_id value=\"".htmlparse($source_id)."\"></td></tr>\n";}
|
||||
echo "<tr><td align=right>"._QXZ("Rank")." : </td><td align=left><input type=text name=rank size=7 maxlength=5 value=\"".htmlparse($rank)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>"._QXZ("Owner")." : </td><td align=left><input type=text name=owner size=22 maxlength=$MAXowner value=\"".htmlparse($owner)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_comments : </td><td align=left><TEXTAREA name=comments ROWS=3 COLS=65>".htmlparse($comments)."</TEXTAREA></td></tr>\n";
|
||||
|
||||
@@ -155,6 +155,7 @@
|
||||
# 180214-0042 - Added cid_groups
|
||||
# 180217-0810 - Added pause_max_dispo
|
||||
# 180306-1639 - Added script_top_dispo
|
||||
# 180310-2246 - Added settings-source_id_display
|
||||
#
|
||||
|
||||
require("dbconnect_mysqli.php");
|
||||
@@ -5599,6 +5600,11 @@ FR_SPAC 00 00 00 00 00 - <?php echo _QXZ("France space separated phone number");
|
||||
<BR>
|
||||
<B><?php echo _QXZ("Enable Drop Lists"); ?> -</B><?php echo _QXZ("This setting if enabled will make the Drop Lists feature appear under the LISTS menu. This feature set can take dropped call log records and create new leads in a list from multiple inbound groups. Default is 0 for disabled."); ?>
|
||||
|
||||
<BR>
|
||||
<A NAME="settings-source_id_display">
|
||||
<BR>
|
||||
<B><?php echo _QXZ("Admin Lead Source ID Display"); ?> -</B><?php echo _QXZ("This setting if enabled will show the source_id field of a lead in the hopper display and the Modify Lead page. Default is 0 for disabled."); ?>
|
||||
|
||||
<BR>
|
||||
<A NAME="settings-agent_debug_logging">
|
||||
<BR>
|
||||
|
||||
Reference in New Issue
Block a user