Added more screen labels for non-form fields
git-svn-id: svn://192.168.202.10@3428 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -1908,7 +1908,22 @@ two_factor_container VARCHAR(40) default '---DISABLED---',
|
||||
agent_hidden_sound VARCHAR(20) default 'click_quiet',
|
||||
agent_hidden_sound_volume TINYINT(3) UNSIGNED default '25',
|
||||
agent_hidden_sound_seconds TINYINT(3) UNSIGNED default '0',
|
||||
agent_screen_timer VARCHAR(20) default 'setTimeout'
|
||||
agent_screen_timer VARCHAR(20) default 'setTimeout',
|
||||
label_lead_id VARCHAR(60) default '',
|
||||
label_list_id VARCHAR(60) default '',
|
||||
label_entry_date VARCHAR(60) default '',
|
||||
label_gmt_offset_now VARCHAR(60) default '',
|
||||
label_source_id VARCHAR(60) default '',
|
||||
label_called_since_last_reset VARCHAR(60) default '',
|
||||
label_status VARCHAR(60) default '',
|
||||
label_user VARCHAR(60) default '',
|
||||
label_date_of_birth VARCHAR(60) default '',
|
||||
label_country_code VARCHAR(60) default '',
|
||||
label_last_local_call_time VARCHAR(60) default '',
|
||||
label_called_count VARCHAR(60) default '',
|
||||
label_rank VARCHAR(60) default '',
|
||||
label_owner VARCHAR(60) default '',
|
||||
label_entry_list_id VARCHAR(60) default ''
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE TABLE vicidial_campaigns_list_mix (
|
||||
@@ -2954,7 +2969,22 @@ label_alt_phone VARCHAR(60) default '',
|
||||
label_security_phrase VARCHAR(60) default '',
|
||||
label_email VARCHAR(60) default '',
|
||||
label_comments VARCHAR(60) default '',
|
||||
user_group VARCHAR(20) default '---ALL---'
|
||||
user_group VARCHAR(20) default '---ALL---',
|
||||
label_lead_id VARCHAR(60) default '',
|
||||
label_list_id VARCHAR(60) default '',
|
||||
label_entry_date VARCHAR(60) default '',
|
||||
label_gmt_offset_now VARCHAR(60) default '',
|
||||
label_source_id VARCHAR(60) default '',
|
||||
label_called_since_last_reset VARCHAR(60) default '',
|
||||
label_status VARCHAR(60) default '',
|
||||
label_user VARCHAR(60) default '',
|
||||
label_date_of_birth VARCHAR(60) default '',
|
||||
label_country_code VARCHAR(60) default '',
|
||||
label_last_local_call_time VARCHAR(60) default '',
|
||||
label_called_count VARCHAR(60) default '',
|
||||
label_rank VARCHAR(60) default '',
|
||||
label_owner VARCHAR(60) default '',
|
||||
label_entry_list_id VARCHAR(60) default ''
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE TABLE vicidial_agent_skip_log (
|
||||
@@ -4898,4 +4928,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='1630',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
UPDATE system_settings SET db_schema_version='1631',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
|
||||
@@ -1640,3 +1640,37 @@ ALTER TABLE vicidial_campaigns ADD calls_waiting_vl_one VARCHAR(25) default 'DIS
|
||||
ALTER TABLE vicidial_campaigns ADD calls_waiting_vl_two VARCHAR(25) default 'DISABLED';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1630',db_schema_update_date=NOW() where db_schema_version < 1630;
|
||||
|
||||
ALTER TABLE system_settings ADD label_lead_id VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_list_id VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_entry_date VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_gmt_offset_now VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_source_id VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_called_since_last_reset VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_status VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_user VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_date_of_birth VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_country_code VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_last_local_call_time VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_called_count VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_rank VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_owner VARCHAR(60) default '';
|
||||
ALTER TABLE system_settings ADD label_entry_list_id VARCHAR(60) default '';
|
||||
|
||||
ALTER TABLE vicidial_screen_labels ADD label_lead_id VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_list_id VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_entry_date VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_gmt_offset_now VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_source_id VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_called_since_last_reset VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_status VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_user VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_date_of_birth VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_country_code VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_last_local_call_time VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_called_count VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_rank VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_owner VARCHAR(60) default '';
|
||||
ALTER TABLE vicidial_screen_labels ADD label_entry_list_id VARCHAR(60) default '';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1631',db_schema_update_date=NOW() where db_schema_version < 1631;
|
||||
|
||||
@@ -505,10 +505,11 @@
|
||||
# 210329-1515 - Fix for issue on transfer list user fullname having an underscore
|
||||
# 210330-2255 - Fixed issues with dashes as custom fields values throwing off delimiters
|
||||
# 210417-1109 - Added calls_waiting_vl_ options
|
||||
# 210421-2111 - Added more screen labels
|
||||
#
|
||||
|
||||
$version = '2.14-398';
|
||||
$build = '210417-1109';
|
||||
$version = '2.14-399';
|
||||
$build = '210421-2111';
|
||||
$php_script = 'vdc_db_query.php';
|
||||
$mel=1; # Mysql Error Log enabled = 1
|
||||
$mysql_log_count=850;
|
||||
@@ -17168,8 +17169,23 @@ if ($ACTION == 'SEARCHRESULTSview')
|
||||
$label_security_phrase = _QXZ("Show");
|
||||
$label_email = _QXZ(" Email");
|
||||
$label_comments = _QXZ(" Comments");
|
||||
$label_lead_id = _QXZ("Lead ID");
|
||||
$label_list_id = _QXZ("List ID");
|
||||
$label_entry_date = _QXZ("Entry Date");
|
||||
$label_gmt_offset_now = _QXZ("Timezone");
|
||||
$label_source_id = _QXZ("Source ID");
|
||||
$label_called_since_last_reset = _QXZ("Reset Code");
|
||||
$label_status = _QXZ("Status");
|
||||
$label_user = _QXZ("User");
|
||||
$label_date_of_birth = _QXZ("Date of Birth");
|
||||
$label_country_code = _QXZ("Country");
|
||||
$label_last_local_call_time = _QXZ("Last Call");
|
||||
$label_called_count = _QXZ("Called Count");
|
||||
$label_rank = _QXZ("Rank");
|
||||
$label_owner = _QXZ("Owner");
|
||||
$label_entry_list_id = _QXZ("Entry List ID");
|
||||
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_hide_field_logs from system_settings;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id,label_hide_field_logs from system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00725',$user,$server_ip,$session_name,$one_mysql_log);}
|
||||
$row=mysqli_fetch_row($rslt);
|
||||
@@ -17192,11 +17208,26 @@ if ($ACTION == 'SEARCHRESULTSview')
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
$label_hide_field_logs = $row[19];
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
$label_hide_field_logs = $row[34];
|
||||
|
||||
if ( ($screen_labels != '--SYSTEM-SETTINGS--') and (strlen($screen_labels)>1) )
|
||||
{
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_hide_field_logs from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id,label_hide_field_logs from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00726',$user,$server_ip,$session_name,$one_mysql_log);}
|
||||
$screenlabels_count = mysqli_num_rows($rslt);
|
||||
@@ -17222,7 +17253,22 @@ if ($ACTION == 'SEARCHRESULTSview')
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
$label_hide_field_logs = $row[19];
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
$label_hide_field_logs = $row[34];
|
||||
### END find any custom field labels ###
|
||||
$hide_gender=0;
|
||||
if ($label_gender == '---HIDE---')
|
||||
@@ -18100,8 +18146,23 @@ if ($ACTION == 'LEADINFOview')
|
||||
$label_security_phrase = _QXZ("Show");
|
||||
$label_email = _QXZ(" Email");
|
||||
$label_comments = _QXZ(" Comments");
|
||||
$label_lead_id = _QXZ("Lead ID");
|
||||
$label_list_id = _QXZ("List ID");
|
||||
$label_entry_date = _QXZ("Entry Date");
|
||||
$label_gmt_offset_now = _QXZ("Timezone");
|
||||
$label_source_id = _QXZ("Source ID");
|
||||
$label_called_since_last_reset = _QXZ("Reset Code");
|
||||
$label_status = _QXZ("Status");
|
||||
$label_user = _QXZ("User");
|
||||
$label_date_of_birth = _QXZ("Date of Birth");
|
||||
$label_country_code = _QXZ("Country");
|
||||
$label_last_local_call_time = _QXZ("Last Call");
|
||||
$label_called_count = _QXZ("Called Count");
|
||||
$label_rank = _QXZ("Rank");
|
||||
$label_owner = _QXZ("Owner");
|
||||
$label_entry_list_id = _QXZ("Entry List ID");
|
||||
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_hide_field_logs from system_settings;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id,label_hide_field_logs from system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00417',$user,$server_ip,$session_name,$one_mysql_log);}
|
||||
$row=mysqli_fetch_row($rslt);
|
||||
@@ -18124,11 +18185,26 @@ if ($ACTION == 'LEADINFOview')
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
$label_hide_field_logs = $row[19];
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
$label_hide_field_logs = $row[34];
|
||||
|
||||
if ( ($screen_labels != '--SYSTEM-SETTINGS--') and (strlen($screen_labels)>1) )
|
||||
{
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_hide_field_logs from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id,label_hide_field_logs from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00418',$user,$server_ip,$session_name,$one_mysql_log);}
|
||||
$screenlabels_count = mysqli_num_rows($rslt);
|
||||
@@ -18154,7 +18230,22 @@ if ($ACTION == 'LEADINFOview')
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
$label_hide_field_logs = $row[19];
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
$label_hide_field_logs = $row[34];
|
||||
### END find any custom field labels ###
|
||||
$hide_gender=0;
|
||||
if ($label_gender == '---HIDE---')
|
||||
@@ -18284,12 +18375,12 @@ if ($ACTION == 'LEADINFOview')
|
||||
}
|
||||
##### END check for postal_code and phone time zones if alert enabled
|
||||
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("Status:")." </td><td ALIGN=left><font class='sb_text'>$row[0]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_status </td><td ALIGN=left><font class='sb_text'>$row[0]</td></tr>";
|
||||
if ( ($label_vendor_lead_code!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_vendor_lead_code: </td><td ALIGN=left><font class='sb_text'>$row[1]</td></tr>";}
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("List ID:")." </td><td ALIGN=left><font class='sb_text'>$row[2]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("Timezone:")." </td><td ALIGN=left><font class='sb_text'>$row[3]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("Called Since Last Reset:")." </td><td ALIGN=left><font class='sb_text'>$row[4]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_list_id </td><td ALIGN=left><font class='sb_text'>$row[2]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_gmt_offset_now </td><td ALIGN=left><font class='sb_text'>$row[3]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_called_since_last_reset </td><td ALIGN=left><font class='sb_text'>$row[4]</td></tr>";
|
||||
if ( ($label_phone_code!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_phone_code: </td><td ALIGN=left><font class='sb_text'>$row[5]</td></tr>";}
|
||||
if ( ($label_phone_number!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
@@ -18353,7 +18444,7 @@ if ($ACTION == 'LEADINFOview')
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_province: </td><td ALIGN=left><font class='sb_text'>$row[16]</td></tr>";}
|
||||
if ( ($label_postal_code!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_postal_code: </td><td ALIGN=left><font class='sb_text'>$row[17]</td></tr>";}
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>Country: </td><td ALIGN=left><font class='sb_text'>$row[18]</td></tr>";
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_country_code: </td><td ALIGN=left><font class='sb_text'>$row[18]</td></tr>";
|
||||
if ( ($label_gender!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_gender: </td><td ALIGN=left><font class='sb_text'>$row[19]</td></tr>";}
|
||||
if ( ($label_alt_phone!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
@@ -18384,8 +18475,8 @@ if ($ACTION == 'LEADINFOview')
|
||||
if ( ($label_comments!='---HIDE---') or ($label_hide_field_logs=='N') )
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_comments: </td><td ALIGN=left><font class='sb_text'>$row[23]</td></tr>";}
|
||||
if ($hide_call_log_info=='N')
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("Called Count:")." </td><td ALIGN=left><font class='sb_text'>$row[24]</td></tr>";}
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>"._QXZ("Last Local Call Time:")." </td><td ALIGN=left><font class='sb_text'>$row[25]</td></tr>";
|
||||
{$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_called_count </td><td ALIGN=left><font class='sb_text'>$row[24]</td></tr>";}
|
||||
$INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>$label_last_local_call_time </td><td ALIGN=left><font class='sb_text'>$row[25]</td></tr>";
|
||||
# $INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>Rank: </td><td ALIGN=left><font class='sb_text'>$row[26]</td></tr>";
|
||||
# $INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>Owner: </td><td ALIGN=left><font class='sb_text'>$row[27]</td></tr>";
|
||||
# $INFOout .= "<tr bgcolor=white><td ALIGN=right><font class='sb_text'>Entry List ID: </td><td ALIGN=left><font class='sb_text'>$row[28]</td></tr>";
|
||||
|
||||
@@ -665,10 +665,11 @@
|
||||
# 210327-2058 - Added system setting(agent_screen_timer) for selection of JavaScript timer: setTimeout or EventSource
|
||||
# 210330-2254 - Fixed issues with dashes as custom fields values throwing off delimiters
|
||||
# 210417-1109 - Added calls_waiting_vl_ campaign options
|
||||
# 210421-2110 - Added more screen labels
|
||||
#
|
||||
|
||||
$version = '2.14-633c';
|
||||
$build = '210417-1109';
|
||||
$version = '2.14-634c';
|
||||
$build = '210421-2110';
|
||||
$mel=1; # Mysql Error Log enabled = 1
|
||||
$mysql_log_count=95;
|
||||
$one_mysql_log=0;
|
||||
@@ -1984,8 +1985,23 @@ else
|
||||
$label_security_phrase = _QXZ("Show");
|
||||
$label_email = _QXZ("Email");
|
||||
$label_comments = _QXZ(" Comments");
|
||||
$label_lead_id = _QXZ("Lead ID");
|
||||
$label_list_id = _QXZ("List ID");
|
||||
$label_entry_date = _QXZ("Entry Date");
|
||||
$label_gmt_offset_now = _QXZ("Timezone");
|
||||
$label_source_id = _QXZ("Source ID");
|
||||
$label_called_since_last_reset = _QXZ("Reset Code");
|
||||
$label_status = _QXZ("Status");
|
||||
$label_user = _QXZ("User");
|
||||
$label_date_of_birth = _QXZ("Date of Birth");
|
||||
$label_country_code = _QXZ("Country");
|
||||
$label_last_local_call_time = _QXZ("Last Call");
|
||||
$label_called_count = _QXZ("Called Count");
|
||||
$label_rank = _QXZ("Rank");
|
||||
$label_owner = _QXZ("Owner");
|
||||
$label_entry_list_id = _QXZ("Entry List ID");
|
||||
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments from system_settings;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id from system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
$row=mysqli_fetch_row($rslt);
|
||||
if (strlen($row[0])>0) {$label_title = $row[0];}
|
||||
@@ -2007,6 +2023,21 @@ else
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
### END find any custom field labels ###
|
||||
if ($label_gender == '---HIDE---')
|
||||
{$hide_gender=1;}
|
||||
@@ -2559,7 +2590,7 @@ else
|
||||
|
||||
if ( ($screen_labels != '--SYSTEM-SETTINGS--') and (strlen($screen_labels)>1) )
|
||||
{
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id from vicidial_screen_labels where label_id='$screen_labels' and active='Y' limit 1;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'01073',$VD_login,$server_ip,$session_name,$one_mysql_log);}
|
||||
$screenlabels_count = mysqli_num_rows($rslt);
|
||||
@@ -2585,6 +2616,22 @@ else
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
|
||||
### END find any custom field labels ###
|
||||
if ($label_gender == '---HIDE---')
|
||||
{$hide_gender=1;}
|
||||
@@ -4619,6 +4666,21 @@ if ( ($calls_waiting_vl_one != 'DISABLED') and (strlen($calls_waiting_vl_one) >
|
||||
if ($calls_waiting_vl_one == 'security_phrase') {$calls_waiting_vl_oneLABEL = $label_security_phrase;}
|
||||
if ($calls_waiting_vl_one == 'email') {$calls_waiting_vl_oneLABEL = $label_email;}
|
||||
if ($calls_waiting_vl_one == 'comments') {$calls_waiting_vl_oneLABEL = $label_comments;}
|
||||
if ($calls_waiting_vl_one == 'entry_date') {$calls_waiting_vl_oneLABEL = $label_entry_date;}
|
||||
if ($calls_waiting_vl_one == 'source_id') {$calls_waiting_vl_oneLABEL = $label_source_id;}
|
||||
if ($calls_waiting_vl_one == 'date_of_birth') {$calls_waiting_vl_oneLABEL = $label_date_of_birth;}
|
||||
if ($calls_waiting_vl_one == 'rank') {$calls_waiting_vl_oneLABEL = $label_rank;}
|
||||
if ($calls_waiting_vl_one == 'owner') {$calls_waiting_vl_oneLABEL = $label_owner;}
|
||||
if ($calls_waiting_vl_one == 'last_local_call_time') {$calls_waiting_vl_oneLABEL = $label_last_local_call_time;}
|
||||
if ($calls_waiting_vl_one == 'entry_list_id') {$calls_waiting_vl_oneLABEL = $label_entry_list_id;}
|
||||
if ($calls_waiting_vl_one == 'list_id') {$calls_waiting_vl_oneLABEL = $label_list_id;}
|
||||
if ($calls_waiting_vl_one == 'lead_id') {$calls_waiting_vl_oneLABEL = $label_lead_id;}
|
||||
if ($calls_waiting_vl_one == 'gmt_offset_now') {$calls_waiting_vl_oneLABEL = $label_gmt_offset_now;}
|
||||
if ($calls_waiting_vl_one == 'called_count') {$calls_waiting_vl_oneLABEL = $label_called_count;}
|
||||
if ($calls_waiting_vl_one == 'status') {$calls_waiting_vl_oneLABEL = $label_status;}
|
||||
if ($calls_waiting_vl_one == 'user') {$calls_waiting_vl_oneLABEL = $label_user;}
|
||||
if ($calls_waiting_vl_one == 'called_since_last_reset') {$calls_waiting_vl_oneLABEL = $label_called_since_last_reset;}
|
||||
if ($calls_waiting_vl_one == 'country_code') {$calls_waiting_vl_oneLABEL = $label_country_code;}
|
||||
$calls_waiting_vl_oneLABEL = strtoupper($calls_waiting_vl_oneLABEL);
|
||||
}
|
||||
if ( ($calls_waiting_vl_two != 'DISABLED') and (strlen($calls_waiting_vl_two) > 2) )
|
||||
@@ -4643,6 +4705,21 @@ if ( ($calls_waiting_vl_two != 'DISABLED') and (strlen($calls_waiting_vl_two) >
|
||||
if ($calls_waiting_vl_two == 'security_phrase') {$calls_waiting_vl_twoLABEL = $label_security_phrase;}
|
||||
if ($calls_waiting_vl_two == 'email') {$calls_waiting_vl_twoLABEL = $label_email;}
|
||||
if ($calls_waiting_vl_two == 'comments') {$calls_waiting_vl_twoLABEL = $label_comments;}
|
||||
if ($calls_waiting_vl_two == 'entry_date') {$calls_waiting_vl_twoLABEL = $label_entry_date;}
|
||||
if ($calls_waiting_vl_two == 'source_id') {$calls_waiting_vl_twoLABEL = $label_source_id;}
|
||||
if ($calls_waiting_vl_two == 'date_of_birth') {$calls_waiting_vl_twoLABEL = $label_date_of_birth;}
|
||||
if ($calls_waiting_vl_two == 'rank') {$calls_waiting_vl_twoLABEL = $label_rank;}
|
||||
if ($calls_waiting_vl_two == 'owner') {$calls_waiting_vl_twoLABEL = $label_owner;}
|
||||
if ($calls_waiting_vl_two == 'last_local_call_time') {$calls_waiting_vl_twoLABEL = $label_last_local_call_time;}
|
||||
if ($calls_waiting_vl_two == 'entry_list_id') {$calls_waiting_vl_twoLABEL = $label_entry_list_id;}
|
||||
if ($calls_waiting_vl_two == 'list_id') {$calls_waiting_vl_twoLABEL = $label_list_id;}
|
||||
if ($calls_waiting_vl_two == 'lead_id') {$calls_waiting_vl_twoLABEL = $label_lead_id;}
|
||||
if ($calls_waiting_vl_two == 'gmt_offset_now') {$calls_waiting_vl_twoLABEL = $label_gmt_offset_now;}
|
||||
if ($calls_waiting_vl_two == 'called_count') {$calls_waiting_vl_twoLABEL = $label_called_count;}
|
||||
if ($calls_waiting_vl_two == 'status') {$calls_waiting_vl_twoLABEL = $label_status;}
|
||||
if ($calls_waiting_vl_two == 'user') {$calls_waiting_vl_twoLABEL = $label_user;}
|
||||
if ($calls_waiting_vl_two == 'called_since_last_reset') {$calls_waiting_vl_twoLABEL = $label_called_since_last_reset;}
|
||||
if ($calls_waiting_vl_two == 'country_code') {$calls_waiting_vl_twoLABEL = $label_country_code;}
|
||||
$calls_waiting_vl_twoLABEL = strtoupper($calls_waiting_vl_twoLABEL);
|
||||
}
|
||||
|
||||
@@ -21446,27 +21523,27 @@ $zi=2;
|
||||
|
||||
if (preg_match("/entry_date/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Entry Date").": <font class=\"body_text\"><span id=\"entry_dateDISP\"> </span> </font>";
|
||||
echo "$label_entry_date: <font class=\"body_text\"><span id=\"entry_dateDISP\"> </span> </font>";
|
||||
}
|
||||
if (preg_match("/source_id/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Source ID").": <font class=\"body_text\"><span id=\"source_idDISP\"> </span> </font>";
|
||||
echo "$label_source_id: <font class=\"body_text\"><span id=\"source_idDISP\"> </span> </font>";
|
||||
}
|
||||
if (preg_match("/date_of_birth/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Date of Birth").": <font class=\"body_text\"><span id=\"date_of_birthDISP\"> </span> </font>";
|
||||
echo "$label_date_of_birth: <font class=\"body_text\"><span id=\"date_of_birthDISP\"> </span> </font>";
|
||||
}
|
||||
if (preg_match("/rank/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Rank").": <font class=\"body_text\"><span id=\"rankDISP\"> </span> </font>";
|
||||
echo "$label_rank: <font class=\"body_text\"><span id=\"rankDISP\"> </span> </font>";
|
||||
}
|
||||
if (preg_match("/owner/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Owner").": <font class=\"body_text\"><span id=\"ownerDISP\"> </span> </font>";
|
||||
echo "$label_owner: <font class=\"body_text\"><span id=\"ownerDISP\"> </span> </font>";
|
||||
}
|
||||
if (preg_match("/last_local_call_time/",$agent_display_fields))
|
||||
{
|
||||
echo _QXZ("Last Call").": <font class=\"body_text\"><span id=\"last_local_call_timeDISP\"> </span> </font>";
|
||||
echo "$label_last_local_call_time: <font class=\"body_text\"><span id=\"last_local_call_timeDISP\"> </span> </font>";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -104,6 +104,7 @@
|
||||
# 201109-1725 - Fix for blank page after certain updates submitted
|
||||
# 201123-1704 - Added today called count display
|
||||
# 210304-1509 - Added option '5' for modify_lead for this page to work as read-only
|
||||
# 210421-2120 - Added more screen labels
|
||||
#
|
||||
|
||||
require("dbconnect_mysqli.php");
|
||||
@@ -913,9 +914,24 @@ $label_alt_phone = _QXZ("Alt. Phone");
|
||||
$label_security_phrase = _QXZ("Show");
|
||||
$label_email = _QXZ("Email");
|
||||
$label_comments = _QXZ("Comments");
|
||||
$label_lead_id = _QXZ("Lead ID");
|
||||
$label_list_id = _QXZ("List ID");
|
||||
$label_entry_date = _QXZ("Entry Date");
|
||||
$label_gmt_offset_now = _QXZ("Timezone");
|
||||
$label_source_id = _QXZ("Source ID");
|
||||
$label_called_since_last_reset = _QXZ("Reset Code");
|
||||
$label_status = _QXZ("Status");
|
||||
$label_user = _QXZ("User");
|
||||
$label_date_of_birth = _QXZ("Date of Birth");
|
||||
$label_country_code = _QXZ("Country");
|
||||
$label_last_local_call_time = _QXZ("Last Call");
|
||||
$label_called_count = _QXZ("Called Count");
|
||||
$label_rank = _QXZ("Rank");
|
||||
$label_owner = _QXZ("Owner");
|
||||
$label_entry_list_id = _QXZ("Entry List ID");
|
||||
|
||||
### find any custom field labels
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments from system_settings;";
|
||||
$stmt="SELECT label_title,label_first_name,label_middle_initial,label_last_name,label_address1,label_address2,label_address3,label_city,label_state,label_province,label_postal_code,label_vendor_lead_code,label_gender,label_phone_number,label_phone_code,label_alt_phone,label_security_phrase,label_email,label_comments,label_lead_id,label_list_id,label_entry_date,label_gmt_offset_now,label_source_id,label_called_since_last_reset,label_status,label_user,label_date_of_birth,label_country_code,label_last_local_call_time,label_called_count,label_rank,label_owner,label_entry_list_id from system_settings;";
|
||||
$rslt=mysql_to_mysqli($stmt, $link);
|
||||
$row=mysqli_fetch_row($rslt);
|
||||
if (strlen($row[0])>0) {$label_title = $row[0];}
|
||||
@@ -937,6 +953,21 @@ if (strlen($row[15])>0) {$label_alt_phone = $row[15];}
|
||||
if (strlen($row[16])>0) {$label_security_phrase = $row[16];}
|
||||
if (strlen($row[17])>0) {$label_email = $row[17];}
|
||||
if (strlen($row[18])>0) {$label_comments = $row[18];}
|
||||
if (strlen($row[19])>0) {$label_lead_id = $row[19];}
|
||||
if (strlen($row[20])>0) {$label_list_id = $row[20];}
|
||||
if (strlen($row[21])>0) {$label_entry_date = $row[21];}
|
||||
if (strlen($row[22])>0) {$label_gmt_offset_now = $row[22];}
|
||||
if (strlen($row[23])>0) {$label_source_id = $row[23];}
|
||||
if (strlen($row[24])>0) {$label_called_since_last_reset = $row[24];}
|
||||
if (strlen($row[25])>0) {$label_status = $row[25];}
|
||||
if (strlen($row[26])>0) {$label_user = $row[26];}
|
||||
if (strlen($row[27])>0) {$label_date_of_birth = $row[27];}
|
||||
if (strlen($row[28])>0) {$label_country_code = $row[28];}
|
||||
if (strlen($row[29])>0) {$label_last_local_call_time = $row[29];}
|
||||
if (strlen($row[30])>0) {$label_called_count = $row[30];}
|
||||
if (strlen($row[31])>0) {$label_rank = $row[31];}
|
||||
if (strlen($row[32])>0) {$label_owner = $row[32];}
|
||||
if (strlen($row[33])>0) {$label_entry_list_id = $row[33];}
|
||||
|
||||
|
||||
##### BEGIN vicidial_list FIELD LENGTH LOOKUP #####
|
||||
@@ -1771,7 +1802,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$call_log .= "<td align=left><font size=2><font color=blue><u><span id=\"vicidial_log_status_$u\" onClick=\"ModifyLogDisplayShow(event, $u,'vicidial_log','$row[0]','$row[1]','$row[4]','$row[8]','$row[11]')\">$row[8]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_log_mod[$u] = \"Call Date: $row[4]<br>Lead ID: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_log_mod[$u] = \"Call Date: $row[4]<br>$label_lead_id: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$call_log .= "<td align=left><font size=2> $row[8]</td>\n";}
|
||||
@@ -1877,7 +1908,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$agent_log .= "<td align=left><font size=2> <font color=blue><u><span id=\"vicidial_agent_log_status_$y\" onClick=\"ModifyLogDisplayShow(event, $y,'vicidial_agent_log','$row[0]','$row[4]','$row[3]','$row[14]','$row[1]')\">$row[14]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_agent_log_mod[$y] = \"Event Date: $row[3]<br>Lead ID: $row[4]<br>Current Status: $row[14]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_agent_log_mod[$y] = \"Event Date: $row[3]<br>$label_lead_id: $row[4]<br>Current Status: $row[14]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$agent_log .= "<td align=left><font size=2> $row[14]</td>\n";}
|
||||
@@ -1913,7 +1944,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$closer_log .= "<td align=left><font size=2><font color=blue><u><span id=\"vicidial_closer_log_status_$y\" onClick=\"ModifyLogDisplayShow(event, $y,'vicidial_closer_log','$row[0]','$row[1]','$row[4]','$row[8]','$row[11]')\">$row[8]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_closer_log_mod[$y] = \"Call Date: $row[4]<br>Lead ID: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_closer_log_mod[$y] = \"Call Date: $row[4]<br>$label_lead_id: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$closer_log .= "<td align=left><font size=2> $row[8]</td>\n";}
|
||||
@@ -1998,7 +2029,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$call_log .= "<td align=left><font size=2><font color=blue><u><span id=\"vicidial_log_archive_status_$u\" onClick=\"ModifyLogDisplayShow(event, $u,'vicidial_log_archive','$row[0]','$row[1]','$row[4]','$row[8]','$row[11]')\">$row[8]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_log_archive_mod[$u] = \"Call Date: $row[4]<br>Lead ID: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_log_archive_mod[$u] = \"Call Date: $row[4]<br>$label_lead_id: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$call_log .= "<td align=left><font size=2> $row[8]</td>\n";}
|
||||
@@ -2092,7 +2123,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$agent_log .= "<td align=left><font size=2> <font color=blue><u><span id=\"vicidial_agent_log_archive_status_$y\" onClick=\"ModifyLogDisplayShow(event, $y,'vicidial_agent_log_archive','$row[0]','$row[4]','$row[3]','$row[14]','$row[1]')\">$row[14]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_agent_log_archive_mod[$y] = \"Event Date: $row[3]<br>Lead ID: $row[4]<br>Current Status: $row[14]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_agent_log_archive_mod[$y] = \"Event Date: $row[3]<br>$label_lead_id: $row[4]<br>Current Status: $row[14]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$agent_log .= "<td align=left><font size=2> $row[14]</td>\n";}
|
||||
@@ -2128,7 +2159,7 @@ else
|
||||
if ( ($LOGmodify_leads == '3') or ($LOGmodify_leads == '4') )
|
||||
{
|
||||
$closer_log .= "<td align=left><font size=2><font color=blue><u><span id=\"vicidial_closer_log_archive_status_$y\" onClick=\"ModifyLogDisplayShow(event, $y,'vicidial_closer_log_archive','$row[0]','$row[1]','$row[4]','$row[8]','$row[11]')\">$row[8]</span></u></font></td>\n";
|
||||
$HTML_inline_script .= "vicidial_closer_log_archive_mod[$y] = \"Call Date: $row[4]<br>Lead ID: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
$HTML_inline_script .= "vicidial_closer_log_archive_mod[$y] = \"Call Date: $row[4]<br>$label_lead_id: $row[1]<br>Current Status: $row[8]<br>\";\n";
|
||||
}
|
||||
else
|
||||
{$closer_log .= "<td align=left><font size=2> $row[8]</td>\n";}
|
||||
@@ -2367,8 +2398,8 @@ else
|
||||
echo "<input type=hidden name=parked_time value=\"$parked_time\">\n";
|
||||
echo "<input type=hidden name=FORM_LOADED id=FORM_LOADED value=\"0\" />\n";
|
||||
echo "<table cellpadding=1 cellspacing=0>\n";
|
||||
echo "<tr><td colspan=2>"._QXZ("Lead ID").": $lead_id "._QXZ("List ID").": $list_id <font size=2>"._QXZ("GMT offset").": $gmt_offset_now "._QXZ("CSLR").": $called_since_last_reset</td></tr>\n";
|
||||
echo "<tr><td colspan=2>"._QXZ("Fronter").": <A HREF=\"user_stats.php?user=$tsr\">$tsr</A> "._QXZ("Called Count").": $called_count <font size=2>("._QXZ("today").": $call_count_today)</font> "._QXZ("Last Local Call").": $last_local_call_time</td></tr>\n";
|
||||
echo "<tr><td colspan=2>$label_lead_id: $lead_id $label_list_id: $list_id <font size=2>$label_gmt_offset_now: $gmt_offset_now $label_called_since_last_reset: $called_since_last_reset</td></tr>\n";
|
||||
echo "<tr><td colspan=2>$label_user: <A HREF=\"user_stats.php?user=$tsr\">$tsr</A> $label_called_count: $called_count <font size=2>("._QXZ("today").": $call_count_today)</font> $label_last_local_call_time: $last_local_call_time</td></tr>\n";
|
||||
if ($archive_search=="Yes")
|
||||
{
|
||||
echo "<tr><td colspan=2 align='center'>";
|
||||
@@ -2407,8 +2438,8 @@ else
|
||||
echo " $label_postal_code: $postal_code </td></tr>\n";
|
||||
|
||||
echo "<tr><td align=right>$label_province : </td><td align=left>$province</td></tr>\n";
|
||||
echo "<tr><td align=right>"._QXZ("Country")." : </td><td align=left>$country_code \n";
|
||||
echo " "._QXZ("Date of Birth").": $date_of_birth </td></tr>\n";
|
||||
echo "<tr><td align=right>$label_country_code : </td><td align=left>$country_code \n";
|
||||
echo " $label_date_of_birth: $date_of_birth </td></tr>\n";
|
||||
echo "<tr><td align=right>$label_phone_number : </td><td align=left>$phone_number</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_phone_code : </td><td align=left>$phone_code</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_alt_phone : </td><td align=left>$alt_phone</td></tr>\n";
|
||||
@@ -2417,8 +2448,8 @@ else
|
||||
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_rank : </td><td align=left>$rank</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_owner : </td><td align=left>$owner</td></tr>\n";
|
||||
echo "<tr><td align=right>$label_comments : </td><td align=left>$comments</td></tr>\n";
|
||||
}
|
||||
else
|
||||
@@ -2435,8 +2466,8 @@ else
|
||||
echo " $label_postal_code: <input type=text name=postal_code id=postal_code size=10 maxlength=$MAXpostal_code value=\"".htmlparse($postal_code)."\"> </td></tr>\n";
|
||||
|
||||
echo "<tr><td align=right>$label_province : </td><td align=left><input type=text name=province id=province size=40 maxlength=$MAXprovince value=\"".htmlparse($province)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>"._QXZ("Country")." : </td><td align=left><input type=text name=country_code id=country_code size=3 maxlength=$MAXcountry_code value=\"".htmlparse($country_code)."\"> \n";
|
||||
echo " "._QXZ("Date of Birth").": <input type=text name=date_of_birth id=date_of_birth size=12 maxlength=10 value=\"".htmlparse($date_of_birth)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_country_code : </td><td align=left><input type=text name=country_code id=country_code size=3 maxlength=$MAXcountry_code value=\"".htmlparse($country_code)."\"> \n";
|
||||
echo " $label_date_of_birth: <input type=text name=date_of_birth id=date_of_birth size=12 maxlength=10 value=\"".htmlparse($date_of_birth)."\"></td></tr>\n";
|
||||
|
||||
if ( ($LOGmodify_leads == '1') or ($LOGmodify_leads == '3') or ($lead_id == 'NEW') )
|
||||
{
|
||||
@@ -2456,8 +2487,8 @@ else
|
||||
echo "<tr><td align=right>$label_vendor_lead_code : </td><td align=left><input type=text name=vendor_id id=vendor_lead_code 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 id=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 id=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 id=owner size=22 maxlength=$MAXowner value=\"".htmlparse($owner)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_rank : </td><td align=left><input type=text name=rank id=rank size=7 maxlength=5 value=\"".htmlparse($rank)."\"></td></tr>\n";
|
||||
echo "<tr><td align=right>$label_owner : </td><td align=left><input type=text name=owner id=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 id=comments ROWS=3 COLS=65>".htmlparse($comments)."</TEXTAREA></td></tr>\n";
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# version: 20210417101401
|
||||
# version: 20210421221501
|
||||
users-user User ID <QXZ>This field is where you put the users ID number, can be up to 8 digits in length, Must be at least 2 characters in length.</QXZ>
|
||||
users-pass Password <QXZ>This field is where you put the users password. Must be at least 2 characters in length. Only letters and numbers are allowed in user passwords. A medium strength user password will be at least 10 characters in length, and a strong user password will be at least 20 characters in length and have letters as well as at least one number. It is recommended that you use a longer password if possible, stringing together several unrelated words with no spaces, and a number somewhere in the string. The maximum size of a password is 100 characters.</QXZ>
|
||||
users-force_change_password Force Change Password <QXZ>If this option is set to Y then the user will be prompted to change their password the next time they log in to the administration webpage or the agent screen. Default is N.</QXZ>
|
||||
@@ -1138,7 +1138,7 @@ settings-report_default_format Report Default Format <QXZ>Determines whether the
|
||||
settings-slave_db_server Slave Database Server <QXZ>If you have a MySQL slave database server then enter the local IP address for that server here. This option is currently only used by the selected reports in the next option and has nothing to do with automatically configuring MySQL master-slave replication. Default is empty for disabled.</QXZ>
|
||||
settings-reports_use_slave_db Reports to use Slave DB <QXZ>This option allows you to select the reports that you want to have use the MySQL slave database as defined in the option above instead of the master database that your live system is running on. You must set up the MySQL slave replication before you can enable this option. Default is empty for disabled.</QXZ>
|
||||
settings-custom_reports_use_slave_db Custom Reports to use Slave DB <QXZ>This option allows you to select the custom reports that you want to have use the MySQL slave database as defined in the option above instead of the master database that your live system is running on. You must set up the MySQL slave replication before you can enable this option. Default is empty for disabled.</QXZ>
|
||||
settings-default_field_labels Default Field Labels <QXZ>These 19 fields allow you to set the name as it will appear in the agent interface as well as the administrative modify lead page. Default is empty which will use the hard-coded defaults in the agent interface. You can also set a label to ---HIDE--- to hide both the label and the field. Another option for most fields is ---READONLY--- which will display but not allow an agent to modify the field. One more option for most fields is ---REQUIRED--- which will force an agent to populate that field on all calls before being able to hang up and disposition each call. For the REQUIRED option to work, the campaign must have Allow Required Fields enabled.</QXZ>
|
||||
settings-default_field_labels Default Field Labels <QXZ>These fields allow you to set the name as it will appear in the agent interface as well as the administrative modify lead page. Default is empty which will use the hard-coded defaults in the agent interface. For the first 19 fields, which are form entry fields, you can also set a label to ---HIDE--- to hide both the label and the field. Another option for most fields is ---READONLY--- which will display but not allow an agent to modify the field. One more option for most fields is ---REQUIRED--- which will force an agent to populate that field on all calls before being able to hang up and disposition each call. For the REQUIRED option to work, the campaign must have Allow Required Fields enabled.</QXZ>
|
||||
settings-admin_screen_colors Admin Screen Colors <QXZ>This feature allows you to set different color schemes and logo for the administrative web screens. These can be defined in the Screen Colors section. Default is default, for the standard blue screen colors</QXZ>
|
||||
settings-agent_screen_colors Agent Screen Colors <QXZ>This feature allows you to set different color schemes and logo for the agent screen. These can be defined in the Screen Colors section. Default is default, for the standard blue screen colors</QXZ>
|
||||
settings-agent_chat_screen_colors Agent Chat Screen Colors <QXZ>This feature allows you to set the different colors that are used for the users chatting within the internal chat window in the agent screen. These can be defined in the Screen Colors section, and only the five standard and three alternate colors are used. Default is default, for a standard set of eight colors</QXZ>
|
||||
@@ -1196,7 +1196,7 @@ screen_labels-label_id Screen Label ID <QXZ>This field needs to be at least 2 ch
|
||||
screen_labels-label_name Screen Label Name <QXZ>This is the descriptive name of the screen label entry.</QXZ>
|
||||
screen_labels-user_group Admin User Group <QXZ>This is the administrative user group for this record, this allows admin viewing of this record restricted by user group. Default is --ALL-- which allows any admin user to view this record.</QXZ>
|
||||
screen_labels-label_hide_field_logs Hide Label in Call Logs <QXZ>If a label is set to ---HIDE--- then the agent call logs, if enabled on the campaign, will still show the field and data unless this option is set to Y. Default is N.</QXZ>
|
||||
screen_labels-default_field_labels Default Field Labels <QXZ>These 19 fields allow you to set the name as it will appear in the agent interface as well as the administrative modify lead page. Default is empty which will use the hard-coded defaults in the agent interface. You can also set a label to ---HIDE--- to hide both the label and the field. Another option for most fields is ---READONLY--- which will display but not allow an agent to modify the field. One more option for most fields is ---REQUIRED--- which will force an agent to populate that field on all calls before being able to hang up and disposition each call. For the REQUIRED option to work, the campaign must have Allow Required Fields enabled.</QXZ>
|
||||
screen_labels-default_field_labels Default Field Labels <QXZ>These fields allow you to set the name as it will appear in the agent interface as well as the administrative modify lead page. Default is empty which will use the hard-coded defaults in the agent interface. For the first 19 fields, which are form entry fields, you can also set a label to ---HIDE--- to hide both the label and the field. Another option for most fields is ---READONLY--- which will display but not allow an agent to modify the field. One more option for most fields is ---REQUIRED--- which will force an agent to populate that field on all calls before being able to hang up and disposition each call. For the REQUIRED option to work, the campaign must have Allow Required Fields enabled.</QXZ>
|
||||
screen_labels-active Active <QXZ>Set whether the screen label is active or not.</QXZ>
|
||||
screen_colors Screen colors give you the option of setting a different color scheme and logo for the web interface in the System Settings. <B><QXZ>Screen colors give you the option of setting a different color scheme and logo for the web interface in the System Settings.</QXZ></B>
|
||||
screen_colors-colors_id Screen Colors ID <QXZ>This field needs to be at least 2 characters in length and no more than 20 characters in length, no spaces or special characters. This is the ID that will be used to identify the screen colors in the system.</QXZ>
|
||||
|
||||
Reference in New Issue
Block a user