javascript popup. git-svn-id: svn://192.168.202.10@2979 3d104415-ff17-0410-8863-d5cf3c621b8a
1025 lines
47 KiB
PHP
1025 lines
47 KiB
PHP
<?php
|
|
# medialog_inventory_report.php
|
|
#
|
|
# Copyright (C) 2018 Joe Johnson <freewermadmin@gmail.com>, Matt Florell <mattf@vicidial.com> LICENSE: AGPLv2
|
|
#
|
|
# This is a report designed for showing custom statistics based on client
|
|
# requirements. This is not a standard VICIdial report.
|
|
#
|
|
# CHANGES
|
|
# 160411-1917 - First build based upon called_counts_multilist_report.php
|
|
# 160412-2022 - Callback bug fixed, modified Total count to use modify_date instead of entry_date
|
|
# 160427-1655 - Added called count categories
|
|
# 170409-1540 - Added IP List validation code
|
|
# 180508-2315 - Added new help display
|
|
#
|
|
|
|
$startMS = microtime();
|
|
|
|
header ("Content-type: text/html; charset=utf-8");
|
|
|
|
require("dbconnect_mysqli.php");
|
|
require("functions.php");
|
|
require("screen_colors.php");
|
|
|
|
$PHP_AUTH_USER=$_SERVER['PHP_AUTH_USER'];
|
|
$PHP_AUTH_PW=$_SERVER['PHP_AUTH_PW'];
|
|
$PHP_SELF=$_SERVER['PHP_SELF'];
|
|
$QUERY_STRING=$_SERVER['QUERY_STRING'];
|
|
|
|
if (isset($_GET["list_ids"])) {$list_ids=$_GET["list_ids"];}
|
|
elseif (isset($_POST["list_ids"])) {$list_ids=$_POST["list_ids"];}
|
|
if (isset($_GET["override_date"])) {$override_date=$_GET["override_date"];}
|
|
elseif (isset($_POST["override_date"])) {$override_date=$_POST["override_date"];}
|
|
if (isset($_GET["group"])) {$group=$_GET["group"];}
|
|
elseif (isset($_POST["group"])) {$group=$_POST["group"];}
|
|
if (isset($_GET["query_date"])) {$query_date=$_GET["query_date"];}
|
|
elseif (isset($_POST["query_date"])) {$query_date=$_POST["query_date"];}
|
|
if (isset($_GET["end_date"])) {$end_date=$_GET["end_date"];}
|
|
elseif (isset($_POST["end_date"])) {$end_date=$_POST["end_date"];}
|
|
if (isset($_GET["shift"])) {$shift=$_GET["shift"];}
|
|
elseif (isset($_POST["shift"])) {$shift=$_POST["shift"];}
|
|
if (isset($_GET["DB"])) {$DB=$_GET["DB"];}
|
|
elseif (isset($_POST["DB"])) {$DB=$_POST["DB"];}
|
|
if (isset($_GET["submit"])) {$submit=$_GET["submit"];}
|
|
elseif (isset($_POST["submit"])) {$submit=$_POST["submit"];}
|
|
if (isset($_GET["file_download"])) {$file_download=$_GET["file_download"];}
|
|
elseif (isset($_POST["file_download"])) {$file_download=$_POST["file_download"];}
|
|
if (isset($_GET["SUBMIT"])) {$SUBMIT=$_GET["SUBMIT"];}
|
|
elseif (isset($_POST["SUBMIT"])) {$SUBMIT=$_POST["SUBMIT"];}
|
|
if (isset($_GET["report_display_type"])) {$report_display_type=$_GET["report_display_type"];}
|
|
elseif (isset($_POST["report_display_type"])) {$report_display_type=$_POST["report_display_type"];}
|
|
if (isset($_GET["search_archived_data"])) {$search_archived_data=$_GET["search_archived_data"];}
|
|
elseif (isset($_POST["search_archived_data"])) {$search_archived_data=$_POST["search_archived_data"];}
|
|
|
|
if (strlen($shift)<2) {$shift='ALL';}
|
|
if (strlen($bottom_graph)<2) {$bottom_graph='NO';}
|
|
if (strlen($carrier_stats)<2) {$carrier_stats='NO';}
|
|
if (strlen($include_rollover)<2) {$include_rollover='NO';}
|
|
|
|
$today=date("Y-m-d");
|
|
|
|
$report_name = 'Medialog Inventory Report';
|
|
$db_source = 'M';
|
|
$JS_text="<script language='Javascript'>\n";
|
|
$JS_text.="function openNewWindow(url)\n";
|
|
$JS_text.=" {\n";
|
|
$JS_text.=" window.open (url,\"\",'width=620,height=300,scrollbars=yes,menubar=yes,address=yes');\n";
|
|
$JS_text.=" }\n";
|
|
$JS_onload="onload = function() {\n";
|
|
|
|
##### START SYSTEM_SETTINGS LOOKUP #####
|
|
$stmt = "SELECT use_non_latin,outbound_autodial_active,slave_db_server,reports_use_slave_db,enable_languages,language_method FROM system_settings;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
# if ($DB) {echo "$stmt\n";}
|
|
$qm_conf_ct = mysqli_num_rows($rslt);
|
|
if ($qm_conf_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$non_latin = $row[0];
|
|
$outbound_autodial_active = $row[1];
|
|
$slave_db_server = $row[2];
|
|
$reports_use_slave_db = $row[3];
|
|
$SSenable_languages = $row[4];
|
|
$SSlanguage_method = $row[5];
|
|
}
|
|
##### END SETTINGS LOOKUP #####
|
|
###########################################
|
|
|
|
### ARCHIVED DATA CHECK CONFIGURATION
|
|
$archives_available="N";
|
|
$log_tables_array=array("vicidial_list", "vicidial_log", "vicidial_closer_log", "vicidial_agent_log", "user_call_log");
|
|
for ($t=0; $t<count($log_tables_array); $t++)
|
|
{
|
|
$table_name=$log_tables_array[$t];
|
|
$archive_table_name=use_archive_table($table_name);
|
|
if ($archive_table_name!=$table_name) {$archives_available="Y";}
|
|
}
|
|
|
|
if ($search_archived_data)
|
|
{
|
|
$vicidial_list_table=use_archive_table("vicidial_list");
|
|
$vicidial_closer_log_table=use_archive_table("vicidial_closer_log");
|
|
$vicidial_agent_log_table=use_archive_table("vicidial_agent_log");
|
|
$user_call_log_table=use_archive_table("user_call_log");
|
|
$vicidial_log_table=use_archive_table("vicidial_log");
|
|
}
|
|
else
|
|
{
|
|
$vicidial_list_table="vicidial_list";
|
|
$vicidial_closer_log_table="vicidial_closer_log";
|
|
$vicidial_agent_log_table="vicidial_agent_log";
|
|
$user_call_log_table="user_call_log";
|
|
$vicidial_log_table="vicidial_log";
|
|
}
|
|
#############
|
|
|
|
##### SERVER CARRIER LOGGING LOOKUP #####
|
|
$stmt = "SELECT count(*) FROM servers where carrier_logging_active='Y' and max_vicidial_trunks > 0;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
# if ($DB) {echo "$stmt\n";}
|
|
$srv_conf_ct = mysqli_num_rows($rslt);
|
|
if ($srv_conf_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$carrier_logging_active = $row[0];
|
|
}
|
|
|
|
if ($non_latin < 1)
|
|
{
|
|
$PHP_AUTH_USER = preg_replace('/[^-_0-9a-zA-Z]/', '', $PHP_AUTH_USER);
|
|
$PHP_AUTH_PW = preg_replace('/[^-_0-9a-zA-Z]/', '', $PHP_AUTH_PW);
|
|
}
|
|
else
|
|
{
|
|
$PHP_AUTH_PW = preg_replace("/'|\"|\\\\|;/","",$PHP_AUTH_PW);
|
|
$PHP_AUTH_USER = preg_replace("/'|\"|\\\\|;/","",$PHP_AUTH_USER);
|
|
}
|
|
$group = preg_replace("/'|\"|\\\\|;/","",$group);
|
|
|
|
$stmt="SELECT selected_language from vicidial_users where user='$PHP_AUTH_USER';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$sl_ct = mysqli_num_rows($rslt);
|
|
if ($sl_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$VUselected_language = $row[0];
|
|
}
|
|
|
|
$auth=0;
|
|
$reports_auth=0;
|
|
$admin_auth=0;
|
|
$auth_message = user_authorization($PHP_AUTH_USER,$PHP_AUTH_PW,'REPORTS',1,0);
|
|
if ($auth_message == 'GOOD')
|
|
{$auth=1;}
|
|
|
|
if ($auth > 0)
|
|
{
|
|
$stmt="SELECT count(*) from vicidial_users where user='$PHP_AUTH_USER' and user_level > 7 and view_reports='1';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$admin_auth=$row[0];
|
|
|
|
$stmt="SELECT count(*) from vicidial_users where user='$PHP_AUTH_USER' and user_level > 6 and view_reports='1';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$reports_auth=$row[0];
|
|
|
|
if ($reports_auth < 1)
|
|
{
|
|
$VDdisplayMESSAGE = _QXZ("You are not allowed to view reports");
|
|
Header ("Content-type: text/html; charset=utf-8");
|
|
echo "$VDdisplayMESSAGE: |$PHP_AUTH_USER|$auth_message|\n";
|
|
exit;
|
|
}
|
|
if ( ($reports_auth > 0) and ($admin_auth < 1) )
|
|
{
|
|
$ADD=999999;
|
|
$reports_only_user=1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$VDdisplayMESSAGE = _QXZ("Login incorrect, please try again");
|
|
if ($auth_message == 'LOCK')
|
|
{
|
|
$VDdisplayMESSAGE = _QXZ("Too many login attempts, try again in 15 minutes");
|
|
Header ("Content-type: text/html; charset=utf-8");
|
|
echo "$VDdisplayMESSAGE: |$PHP_AUTH_USER|$auth_message|\n";
|
|
exit;
|
|
}
|
|
if ($auth_message == 'IPBLOCK')
|
|
{
|
|
$VDdisplayMESSAGE = _QXZ("Your IP Address is not allowed") . ": $ip";
|
|
Header ("Content-type: text/html; charset=utf-8");
|
|
echo "$VDdisplayMESSAGE: |$PHP_AUTH_USER|$auth_message|\n";
|
|
exit;
|
|
}
|
|
Header("WWW-Authenticate: Basic realm=\"CONTACT-CENTER-ADMIN\"");
|
|
Header("HTTP/1.0 401 Unauthorized");
|
|
echo "$VDdisplayMESSAGE: |$PHP_AUTH_USER|$PHP_AUTH_PW|$auth_message|\n";
|
|
exit;
|
|
}
|
|
|
|
##### BEGIN log visit to the vicidial_report_log table #####
|
|
$LOGip = getenv("REMOTE_ADDR");
|
|
$LOGbrowser = getenv("HTTP_USER_AGENT");
|
|
$LOGscript_name = getenv("SCRIPT_NAME");
|
|
$LOGserver_name = getenv("SERVER_NAME");
|
|
$LOGserver_port = getenv("SERVER_PORT");
|
|
$LOGrequest_uri = getenv("REQUEST_URI");
|
|
$LOGhttp_referer = getenv("HTTP_REFERER");
|
|
$LOGbrowser=preg_replace("/\'|\"|\\\\/","",$LOGbrowser);
|
|
$LOGrequest_uri=preg_replace("/\'|\"|\\\\/","",$LOGrequest_uri);
|
|
$LOGhttp_referer=preg_replace("/\'|\"|\\\\/","",$LOGhttp_referer);
|
|
if (preg_match("/443/i",$LOGserver_port)) {$HTTPprotocol = 'https://';}
|
|
else {$HTTPprotocol = 'http://';}
|
|
if (($LOGserver_port == '80') or ($LOGserver_port == '443') ) {$LOGserver_port='';}
|
|
else {$LOGserver_port = ":$LOGserver_port";}
|
|
$LOGfull_url = "$HTTPprotocol$LOGserver_name$LOGserver_port$LOGrequest_uri";
|
|
|
|
$LOGhostname = php_uname('n');
|
|
if (strlen($LOGhostname)<1) {$LOGhostname='X';}
|
|
if (strlen($LOGserver_name)<1) {$LOGserver_name='X';}
|
|
|
|
$stmt="SELECT webserver_id FROM vicidial_webservers where webserver='$LOGserver_name' and hostname='$LOGhostname' LIMIT 1;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
# if ($DB) {echo "$stmt\n";}
|
|
$webserver_id_ct = mysqli_num_rows($rslt);
|
|
if ($webserver_id_ct > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$webserver_id = $row[0];
|
|
}
|
|
else
|
|
{
|
|
##### insert webserver entry
|
|
$stmt="INSERT INTO vicidial_webservers (webserver,hostname) values('$LOGserver_name','$LOGhostname');";
|
|
# if ($DB) {echo "$stmt\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$affected_rows = mysqli_affected_rows($link);
|
|
$webserver_id = mysqli_insert_id($link);
|
|
}
|
|
|
|
$stmt="INSERT INTO vicidial_report_log set event_date=NOW(), user='$PHP_AUTH_USER', ip_address='$LOGip', report_name='$report_name', browser='$LOGbrowser', referer='$LOGhttp_referer', notes='$LOGserver_name:$LOGserver_port $LOGscript_name |$group[0], $query_date, $end_date, $shift, $file_download, $report_display_type|', url='$LOGfull_url', webserver='$webserver_id';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$report_log_id = mysqli_insert_id($link);
|
|
##### END log visit to the vicidial_report_log table #####
|
|
|
|
if ( (strlen($slave_db_server)>5) and (preg_match("/$report_name/",$reports_use_slave_db)) )
|
|
{
|
|
mysqli_close($link);
|
|
$use_slave_server=1;
|
|
$db_source = 'S';
|
|
require("dbconnect_mysqli.php");
|
|
echo "<!-- Using slave server $slave_db_server $db_source -->\n";
|
|
}
|
|
|
|
$stmt="SELECT user_group from vicidial_users where user='$PHP_AUTH_USER';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$LOGuser_group = $row[0];
|
|
|
|
$stmt="SELECT allowed_campaigns,allowed_reports from vicidial_user_groups where user_group='$LOGuser_group';";
|
|
# if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$row=mysqli_fetch_row($rslt);
|
|
$LOGallowed_campaigns = $row[0];
|
|
$LOGallowed_reports = $row[1];
|
|
|
|
if ( (!preg_match("/$report_name/",$LOGallowed_reports)) and (!preg_match("/ALL REPORTS/",$LOGallowed_reports)) )
|
|
{
|
|
Header("WWW-Authenticate: Basic realm=\"CONTACT-CENTER-ADMIN\"");
|
|
Header("HTTP/1.0 401 Unauthorized");
|
|
echo _QXZ("You are not allowed to view this report").": |$PHP_AUTH_USER|$report_name|\n";
|
|
exit;
|
|
}
|
|
|
|
$NOW_DATE = date("Y-m-d");
|
|
$NOW_TIME = date("Y-m-d H:i:s");
|
|
$STARTtime = date("U");
|
|
if (!isset($group)) {$group = array();}
|
|
if (!isset($list_ids)) {$list_ids = array();}
|
|
if (!isset($query_date)) {$query_date = $NOW_DATE;}
|
|
if (!isset($end_date)) {$end_date = $NOW_DATE;}
|
|
|
|
$i=0;
|
|
$group_string='|';
|
|
$group_ct = count($group);
|
|
while($i < $group_ct)
|
|
{
|
|
if ( (preg_match("/ $group[$i] /",$regexLOGallowed_campaigns)) or (preg_match("/-ALL/",$LOGallowed_campaigns)) )
|
|
{
|
|
$group_string .= "$group[$i]|";
|
|
$group_SQL .= "'$group[$i]',";
|
|
$groupQS .= "&group[]=$group[$i]";
|
|
}
|
|
$i++;
|
|
}
|
|
|
|
$LOGallowed_campaignsSQL='';
|
|
$whereLOGallowed_campaignsSQL='';
|
|
if ( (!preg_match('/\-ALL/i', $LOGallowed_campaigns)) )
|
|
{
|
|
$rawLOGallowed_campaignsSQL = preg_replace("/ -/",'',$LOGallowed_campaigns);
|
|
$rawLOGallowed_campaignsSQL = preg_replace("/ /","','",$rawLOGallowed_campaignsSQL);
|
|
$LOGallowed_campaignsSQL = "and campaign_id IN('$rawLOGallowed_campaignsSQL')";
|
|
$LOGallowed_VCcampaignsSQL = "and vicidial_campaigns.campaign_id IN('$rawLOGallowed_campaignsSQL')";
|
|
$whereLOGallowed_campaignsSQL = "where campaign_id IN('$rawLOGallowed_campaignsSQL')";
|
|
}
|
|
$regexLOGallowed_campaigns = " $LOGallowed_campaigns ";
|
|
|
|
$stmt="select distinct vicidial_campaigns.campaign_id,vicidial_campaigns.campaign_name from vicidial_campaigns, vicidial_lists where vicidial_campaigns.active='Y' $LOGallowed_VCcampaignsSQL and vicidial_campaigns.campaign_id=vicidial_lists.campaign_id and vicidial_lists.active='Y' order by campaign_id;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
if ($DB) {echo "$stmt<BR>\n";}
|
|
$campaigns_to_print = mysqli_num_rows($rslt);
|
|
$i=0;
|
|
while ($i < $campaigns_to_print)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$groups[$i] = $row[0];
|
|
$group_names[$i] = $row[1];
|
|
if (preg_match('/\-ALL/',$group_string) )
|
|
{$group[$i] = $groups[$i];}
|
|
$i++;
|
|
}
|
|
|
|
# grab names of global statuses and statuses in the selected campaign
|
|
$stmt="SELECT status,status_name from vicidial_statuses order by status;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$statuses_to_print = mysqli_num_rows($rslt);
|
|
|
|
$o=0;
|
|
while ($statuses_to_print > $o)
|
|
{
|
|
$rowx=mysqli_fetch_row($rslt);
|
|
$statuses_list["$rowx[0]"] = "$rowx[1]";
|
|
$o++;
|
|
}
|
|
|
|
$stmt="SELECT status,status_name from vicidial_campaign_statuses $whereLOGallowed_campaignsSQL order by status;";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$Cstatuses_to_print = mysqli_num_rows($rslt);
|
|
|
|
$o=0;
|
|
while ($Cstatuses_to_print > $o)
|
|
{
|
|
$rowx=mysqli_fetch_row($rslt);
|
|
$statuses_list["$rowx[0]"] = "$rowx[1]";
|
|
$o++;
|
|
}
|
|
# end grab status names
|
|
|
|
|
|
|
|
$rollover_groups_count=0;
|
|
$i=0;
|
|
$group_string='|';
|
|
$group_ct = count($group);
|
|
$group_SQL='';
|
|
while($i < $group_ct)
|
|
{
|
|
if ( (preg_match("/ $group[$i] /",$regexLOGallowed_campaigns)) or (preg_match("/-ALL/",$LOGallowed_campaigns)) )
|
|
{
|
|
$group_string .= "$group[$i]|";
|
|
$group_SQL .= "'$group[$i]',";
|
|
$groupQS .= "&group[]=$group[$i]";
|
|
}
|
|
|
|
if (preg_match("/YES/i",$include_rollover))
|
|
{
|
|
$stmt="select drop_inbound_group from vicidial_campaigns where campaign_id='$group[$i]' $LOGallowed_campaignsSQL and drop_inbound_group NOT LIKE \"%NONE%\" and drop_inbound_group is NOT NULL and drop_inbound_group != '';";
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
# if ($DB) {echo "$stmt\n";}
|
|
$in_groups_to_print = mysqli_num_rows($rslt);
|
|
if ($in_groups_to_print > 0)
|
|
{
|
|
$row=mysqli_fetch_row($rslt);
|
|
$group_drop_SQL .= "'$row[0]',";
|
|
|
|
$rollover_groups_count++;
|
|
}
|
|
}
|
|
|
|
$i++;
|
|
}
|
|
if (strlen($group_drop_SQL) < 2)
|
|
{$group_drop_SQL = "''";}
|
|
if ( (preg_match('/\-\-ALL\-\-/',$group_string) ) or ($group_ct < 1) or (strlen($group_string) < 2) )
|
|
{
|
|
$group_SQL = "$LOGallowed_campaignsSQL";
|
|
$group_drop_SQL = "";
|
|
}
|
|
else
|
|
{
|
|
$group_SQL = preg_replace('/,$/i', '',$group_SQL);
|
|
$group_drop_SQL = preg_replace('/,$/i', '',$group_drop_SQL);
|
|
$both_group_SQLand = "and ( (campaign_id IN($group_drop_SQL)) or (campaign_id IN($group_SQL)) )";
|
|
$both_group_SQL = "where ( (campaign_id IN($group_drop_SQL)) or (campaign_id IN($group_SQL)) )";
|
|
$callbacks_group_SQLand = "and vicidial_callbacks.campaign_id in ($group_SQL)";
|
|
$callbacks_group_SQL = "where vicidial_callbacks.campaign_id in ($group_SQL)";
|
|
$group_SQLand = "and campaign_id IN($group_SQL)";
|
|
$group_SQLwhere = "where campaign_id IN($group_SQL)";
|
|
$group_drop_SQLand = "and campaign_id IN($group_drop_SQL)";
|
|
$group_drop_SQL = "where campaign_id IN($group_drop_SQL)";
|
|
}
|
|
|
|
$i=0;
|
|
$list_id_string='|';
|
|
$list_id_ct = count($list_ids);
|
|
while($i < $list_id_ct)
|
|
{
|
|
$list_id_string .= "$list_ids[$i]|";
|
|
$list_id_SQL .= "'$list_ids[$i]',";
|
|
$list_idQS .= "&list_ids[]=$list_ids[$i]";
|
|
|
|
$i++;
|
|
}
|
|
$list_id_title_str=$list_id_SQL;
|
|
$list_id_title_str=preg_replace('/\'/', '',$list_id_title_str);
|
|
$list_id_title_str = preg_replace('/,$/i', '',$list_id_title_str);
|
|
|
|
# If ALL lists are selected, filter it down to all lists within selected campaigns
|
|
if ( preg_match('/\-\-ALL\-\-/',$list_id_string) )
|
|
{
|
|
$list_id_string='|';
|
|
$list_id_SQL="";
|
|
$list_idQS="";
|
|
$list_stmt="select list_id from vicidial_lists where active='Y' $group_SQLand";
|
|
if ($DB) {echo $list_stmt."<BR>\n";}
|
|
$list_rslt=mysql_to_mysqli($list_stmt, $link);
|
|
while ($list_row=mysqli_fetch_row($list_rslt))
|
|
{
|
|
$list_id_string .= "$list_row[0]|";
|
|
$list_id_SQL .= "'$list_row[0]',";
|
|
$list_idQS .= "&list_ids[]=$list_row[0]";
|
|
}
|
|
}
|
|
|
|
$list_id_SQL = preg_replace('/,$/i', '',$list_id_SQL);
|
|
$list_id_SQLandVLJOIN = "and ".$vicidial_log_table.".lead_id=".$vicidial_list_table.".lead_id";
|
|
$list_id_SQLandVCLJOIN = "and ".$vicidial_closer_log_table.".lead_id=".$vicidial_list_table.".lead_id";
|
|
$list_id_SQLandUCLJOIN = "and ".$user_call_log_table.".lead_id=".$vicidial_list_table.".lead_id";
|
|
if (strlen($list_id_SQL)>0)
|
|
{
|
|
$list_id_SQLandVLJOIN .= " and ".$vicidial_log_table.".list_id IN($list_id_SQL)";
|
|
$list_id_SQLandVCLJOIN .= " and ".$vicidial_closer_log_table.".list_id IN($list_id_SQL)";
|
|
$list_id_SQLandUCLJOIN .= " and ".$vicidial_log_table.".list_id IN($list_id_SQL)";
|
|
$callback_listid_SQLand=" and vicidial_callbacks.list_id in ($list_id_SQL)";
|
|
$callback_listid_SQL=" where vicidial_callbacks.list_id in ($list_id_SQL)";
|
|
$list_id_SQLwhere = "where list_id IN($list_id_SQL)";
|
|
$list_id_SQLand = "and list_id IN($list_id_SQL)";
|
|
}
|
|
|
|
/*
|
|
if ( (preg_match('/\-\-ALL\-\-/',$list_id_string) ) or ($list_id_ct < 1) or (strlen($list_id_string) < 2) )
|
|
{
|
|
$list_id_SQL = "";
|
|
$list_id_drop_SQL = "";
|
|
$skip_productivity_calc=0;
|
|
}
|
|
else
|
|
{
|
|
$list_id_SQL = preg_replace('/,$/i', '',$list_id_SQL);
|
|
$skip_productivity_calc=1;
|
|
}
|
|
*/
|
|
|
|
# $NWB = " <a href=\"javascript:openNewWindow('help.php?ADD=99999";
|
|
# $NWE = "')\"><IMG SRC=\"help.png\" WIDTH=20 HEIGHT=20 BORDER=0 ALT=\"HELP\" ALIGN=TOP></A>";
|
|
|
|
$NWB = "<IMG SRC=\"help.png\" onClick=\"FillAndShowHelpDiv(event, '";
|
|
$NWE = "')\" WIDTH=20 HEIGHT=20 BORDER=0 ALT=\"HELP\" ALIGN=TOP>";
|
|
|
|
$HEADER.="<!DOCTYPE HTML>\n";
|
|
$HEADER.="<HEAD>\n";
|
|
$HEADER.="<STYLE type=\"text/css\">\n";
|
|
$HEADER.="<!--\n";
|
|
$HEADER.=" .green {color: white; background-color: green}\n";
|
|
$HEADER.=" .red {color: white; background-color: red}\n";
|
|
$HEADER.=" .blue {color: white; background-color: blue}\n";
|
|
$HEADER.=" .purple {color: white; background-color: purple}\n";
|
|
$HEADER.="-->\n";
|
|
$HEADER.=" </STYLE>\n";
|
|
|
|
$HEADER.="<link rel=\"stylesheet\" type=\"text/css\" href=\"vicidial_stylesheet.php\">\n";
|
|
$HEADER.="<script language=\"JavaScript\" src=\"help.js\"></script>\n";
|
|
$HEADER.="<div id='HelpDisplayDiv' class='help_info' style='display:none;'></div>";
|
|
|
|
$HEADER.="<script language=\"JavaScript\" src=\"calendar_db.js\"></script>\n";
|
|
$HEADER.="<link rel=\"stylesheet\" href=\"calendar.css\">\n";
|
|
$HEADER.="<link rel=\"stylesheet\" href=\"horizontalbargraph.css\">\n";
|
|
|
|
$HEADER.="$JS_text";
|
|
#$HEADER.="<script language=\"JavaScript\">\n";
|
|
$list_stmt="select list_id, list_name, campaign_id from vicidial_lists where active='Y' $LOGallowed_campaignsSQL order by list_id asc";
|
|
$list_rslt=mysql_to_mysqli($list_stmt, $link);
|
|
$list_rows=mysqli_num_rows($list_rslt);
|
|
$list_options="<select name='list_ids[]' id='list_ids' multiple size=5>\n";
|
|
if (preg_match('/\-\-ALL\-\-/',$list_id_string))
|
|
{$list_options.="<option value=\"--ALL--\" selected>-- "._QXZ("ALL LISTS")." --</option>\n";}
|
|
else
|
|
{$list_options.="<option value=\"--ALL--\">-- "._QXZ("ALL LISTS")." --</option>\n";}
|
|
|
|
|
|
if ($list_rows>0) {
|
|
|
|
$list_id_ary_str.="var list_id_ary=[";
|
|
$list_name_ary_str.="var list_name_ary=[";
|
|
$campaign_id_ary_str.="var campaign_id_ary=[";
|
|
while ($list_row=mysqli_fetch_row($list_rslt)) {
|
|
$list_id_ary_str.="'$list_row[0]',";
|
|
$list_name_ary_str.="'$list_row[1]',";
|
|
$campaign_id_ary_str.="'$list_row[2]',";
|
|
|
|
if (preg_match("/\|$list_row[0]\|/i",$list_id_string)) {$list_options.="<option selected value=\"$list_row[0]\">$list_row[0] - $list_row[1]</option>\n";}
|
|
else {$list_options.="<option value=\"$list_row[0]\">$list_row[0] - $list_row[1]</option>\n";}
|
|
|
|
#$list_options.="\t<option value='$list_row[0]'>$list_row[0] - $list_row[1]</option>\n";
|
|
}
|
|
$list_id_ary_str=preg_replace('/,$/', '', $list_id_ary_str)."];\n";
|
|
$list_name_ary_str=preg_replace('/,$/', '', $list_name_ary_str)."];\n";
|
|
$campaign_id_ary_str=preg_replace('/,$/', '', $campaign_id_ary_str)."];\n";
|
|
|
|
$HEADER.=$list_id_ary_str;
|
|
$HEADER.=$list_name_ary_str;
|
|
$HEADER.=$campaign_id_ary_str;
|
|
}
|
|
|
|
$list_options.="</select>\n";
|
|
|
|
$HEADER.="function LoadLists(FromBox) {\n";
|
|
$HEADER.=" if (!FromBox) {alert(\"NO\"); return false;}\n";
|
|
$HEADER.=" var selectedCampaigns=\"|\";\n";
|
|
$HEADER.=" var selectedcamps = new Array();\n";
|
|
$HEADER.="\n";
|
|
$HEADER.="\n";
|
|
$HEADER.="\n";
|
|
$HEADER.=" for(i = 0; i < document.getElementById('group').options.length; i++) {\n";
|
|
$HEADER.=" if (document.getElementById('group').options[i].selected) {\n";
|
|
$HEADER.=" selectedCampaigns += document.getElementById('group').options[i].value+\"|\";\n";
|
|
$HEADER.=" } \n";
|
|
$HEADER.=" }\n";
|
|
$HEADER.="\n";
|
|
$HEADER.=" // Clear List menu\n";
|
|
$HEADER.=" document.getElementById('list_ids').options.length=0;\n";
|
|
$HEADER.=" var new_list = new Option();\n";
|
|
$HEADER.=" new_list.value = \"--ALL--\";\n";
|
|
$HEADER.=" new_list.text = \"--ALL LISTS--\";\n";
|
|
$HEADER.=" document.getElementById('list_ids')[0] = new_list;\n";
|
|
$HEADER.="\n";
|
|
$HEADER.=" list_id_index=1;\n";
|
|
$HEADER.=" for (j=0; j<campaign_id_ary.length; j++) {\n";
|
|
$HEADER.=" var campaignID=\"/\|\"+campaign_id_ary[j]+\"\|/g\";\n";
|
|
$HEADER.=" var campaign_matches = selectedCampaigns.match(campaignID);\n";
|
|
$HEADER.=" if (campaign_matches) {\n";
|
|
$HEADER.="\n";
|
|
$HEADER.=" var new_list = new Option();\n";
|
|
$HEADER.=" new_list.value = list_id_ary[j];\n";
|
|
$HEADER.=" new_list.text = list_id_ary[j]+\" - \"+list_name_ary[j];\n";
|
|
$HEADER.=" document.getElementById('list_ids')[list_id_index] = new_list;\n";
|
|
$HEADER.=" list_id_index++;\n";
|
|
$HEADER.=" }\n";
|
|
$HEADER.=" }\n";
|
|
$HEADER.="}\n";
|
|
|
|
$HEADER.="</script>\n";
|
|
|
|
$HEADER.="<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=utf-8\">\n";
|
|
$HEADER.="<TITLE>"._QXZ("$report_name")."</TITLE></HEAD><BODY BGCOLOR=WHITE marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>\n";
|
|
|
|
$short_header=1;
|
|
$draw_graph=1;
|
|
|
|
#require("admin_header.php"); $NWB#medialog_inventory_report$NWE
|
|
|
|
$MAIN.="<b>"._QXZ("$report_name")."</b> \n";
|
|
$MAIN.="<TABLE CELLPADDING=3 CELLSPACING=0><TR><TD>";
|
|
|
|
$MAIN.="<FORM ACTION=\"$PHP_SELF\" METHOD=GET name=vicidial_report id=vicidial_report>\n";
|
|
$MAIN.="<TABLE CELLPADDING=3 CELLSPACING=0 BGCOLOR=\"#".$SSstd_row1_background."\"><TR><TD VALIGN=TOP>"._QXZ("Dates").":<BR>";
|
|
$MAIN.="<INPUT TYPE=HIDDEN NAME=DB VALUE=\"$DB\">\n";
|
|
$MAIN.="<INPUT TYPE=HIDDEN NAME=outbound_rate VALUE=\"$outbound_rate\">\n";
|
|
$MAIN.="<INPUT TYPE=TEXT NAME=query_date SIZE=10 MAXLENGTH=10 VALUE=\"$query_date\">";
|
|
|
|
$MAIN.="<script language=\"JavaScript\">\n";
|
|
$MAIN.="var o_cal = new tcal ({\n";
|
|
$MAIN.=" // form name\n";
|
|
$MAIN.=" 'formname': 'vicidial_report',\n";
|
|
$MAIN.=" // input name\n";
|
|
$MAIN.=" 'controlname': 'query_date'\n";
|
|
$MAIN.="});\n";
|
|
$MAIN.="o_cal.a_tpl.yearscroll = false;\n";
|
|
$MAIN.="// o_cal.a_tpl.weekstart = 1; // Monday week start\n";
|
|
$MAIN.="</script>\n";
|
|
|
|
$MAIN.="<BR> "._QXZ("to")." <BR><INPUT TYPE=TEXT NAME=end_date SIZE=10 MAXLENGTH=10 VALUE=\"$end_date\">";
|
|
|
|
$MAIN.="<script language=\"JavaScript\">\n";
|
|
$MAIN.="var o_cal = new tcal ({\n";
|
|
$MAIN.=" // form name\n";
|
|
$MAIN.=" 'formname': 'vicidial_report',\n";
|
|
$MAIN.=" // input name\n";
|
|
$MAIN.=" 'controlname': 'end_date'\n";
|
|
$MAIN.="});\n";
|
|
$MAIN.="o_cal.a_tpl.yearscroll = false;\n";
|
|
$MAIN.="// o_cal.a_tpl.weekstart = 1; // Monday week start\n";
|
|
$MAIN.="</script>\n";
|
|
|
|
if (preg_match('/MSIE/i', $_SERVER['HTTP_USER_AGENT'])) {
|
|
$JS_events="onBlur='LoadLists(this.form.group)' onKeyUp='LoadLists(this.form.group)'";
|
|
} else {
|
|
$JS_events="onMouseUp='LoadLists(this.form.group)' onBlur='LoadLists(this.form.group)' onKeyUp='LoadLists(this.form.group)'";
|
|
}
|
|
$MAIN.="</TD><TD VALIGN=TOP> "._QXZ("Campaigns").":<BR>";
|
|
$MAIN.="<SELECT multiple SIZE=5 NAME=group[] id='group' $JS_events>\n";
|
|
if (preg_match('/\-\-ALL\-\-/',$group_string))
|
|
{$MAIN.="<option value=\"--ALL--\" selected>-- "._QXZ("ALL CAMPAIGNS")." --</option>\n";}
|
|
else
|
|
{$MAIN.="<option value=\"--ALL--\">-- "._QXZ("ALL CAMPAIGNS")." --</option>\n";}
|
|
$o=0;
|
|
while ($campaigns_to_print > $o)
|
|
{
|
|
if (preg_match("/$groups[$o]\|/i",$group_string)) {$MAIN.="<option selected value=\"$groups[$o]\">$groups[$o] - $group_names[$o]</option>\n";}
|
|
else {$MAIN.="<option value=\"$groups[$o]\">$groups[$o] - $group_names[$o]</option>\n";}
|
|
$o++;
|
|
}
|
|
$MAIN.="</SELECT>\n";
|
|
$MAIN.="</TD><TD VALIGN=TOP>";
|
|
$MAIN.=_QXZ("Lists").": <font size=1>("._QXZ("optional, possibly slow").")</font><BR>\n";
|
|
$MAIN.=$list_options;
|
|
$MAIN.="</TD><TD VALIGN=TOP ALIGN=CENTER>";
|
|
|
|
if ($archives_available=="Y")
|
|
{
|
|
$MAIN.="<BR><input type='checkbox' name='search_archived_data' value='checked' $search_archived_data>"._QXZ("Search archived data")."\n";
|
|
}
|
|
|
|
|
|
$MAIN.="<BR><BR><INPUT type=submit NAME=SUBMIT VALUE='"._QXZ("SUBMIT")."'>\n";
|
|
$MAIN.="<BR><BR><a href=\"$PHP_SELF\">"._QXZ("reset")."</a>";
|
|
$MAIN.="</TD></TR></TABLE>";
|
|
$MAIN.="</FORM>\n\n";
|
|
|
|
if (count($list_ids) > 0 && count($group) > 0)
|
|
{
|
|
$CSV_text= "\"Status-Report\"\n\n";
|
|
$CSV_text.="\"Zeitraum\",\"\",\"Kampagnen\",\"\",\"Listen\"\n";
|
|
$rpt_title_row[0]="Datum von";
|
|
$rpt_title_row[1]=date("d.m.Y", strtotime($query_date));
|
|
$rpt_title_row[2]="Datum bis";
|
|
$rpt_title_row[3]=date("d.m.Y", strtotime($end_date));
|
|
|
|
$MAIN.="<PRE>\n";
|
|
$MAIN.="<B> Status-Report <a href=\"$PHP_SELF?DB=$DB$groupQS$list_idQS&query_date=$query_date&end_date=$end_date&SUBMIT=$SUBMIT&file_download=1&search_archived_data=$search_archived_data\">["._QXZ("DOWNLOAD")."]</a>\n";
|
|
$MAIN.="------------------\n";
|
|
$MAIN.=" Zeitraum: Datum von $rpt_title_row[1] -- Datum bis $rpt_title_row[3]\n";
|
|
$MAIN.=" Kampagnen: ".implode(", ", $group)."\n";
|
|
$MAIN.=" Listen: ".implode(", ", $list_ids)."\n";
|
|
|
|
if ($group_ct>$list_id_ct) {$max_ct=$group_ct;} else {$max_ct=$list_id_ct;}
|
|
if ($max_ct<4) {$max_ct=4;}
|
|
|
|
for ($i=0; $i<$max_ct; $i++) {
|
|
$CSV_text.="\"$rpt_title_row[$i]\",\"\",\"$group[$i]\",\"\",\"$list_ids[$i]\"\n";
|
|
}
|
|
$CSV_text.="\n";
|
|
$CSV_text.="\"\",\"Count\",\"%\",\"\",\"\",\"Kontaktstatus\"\n";
|
|
|
|
|
|
$no_stmt="select distinct status from vicidial_statuses where human_answered='Y' and not_interested='Y' and completed='Y' and dnc='N' UNION select distinct status from vicidial_campaign_statuses where human_answered='Y' and not_interested='Y' and completed='Y' and dnc='N' $group_SQLand";
|
|
$no_rslt=mysql_to_mysqli($no_stmt, $link);
|
|
$no_statuses=array();
|
|
while($no_row=mysqli_fetch_row($no_rslt)) {
|
|
array_push($no_statuses, $no_row[0]);
|
|
}
|
|
|
|
$nixi_stmt="select distinct status from vicidial_statuses where human_answered='Y' and not_interested='Y' and completed='Y' and dnc='Y' UNION select distinct status from vicidial_campaign_statuses where human_answered='Y' and not_interested='Y' and completed='Y' and dnc='Y' $group_SQLand";
|
|
$nixi_rslt=mysql_to_mysqli($nixi_stmt, $link);
|
|
$nixi_statuses=array();
|
|
while($nixi_row=mysqli_fetch_row($nixi_rslt)) {
|
|
array_push($nixi_statuses, $nixi_row[0]);
|
|
}
|
|
|
|
$afc_statuses=array("DC", "AFAX", "DCF", "ADC", "CPDINV");
|
|
|
|
$sale_stmt="select distinct status from vicidial_statuses where sale='Y' UNION select distinct status from vicidial_campaign_statuses where sale='Y' $group_SQLand";
|
|
$sale_rslt=mysql_to_mysqli($sale_stmt, $link);
|
|
$sale_statuses=array();
|
|
while($sale_row=mysqli_fetch_row($sale_rslt)) {
|
|
array_push($sale_statuses, $sale_row[0]);
|
|
}
|
|
|
|
$MAIN.=" Falsche Tel: ".implode(", ", $afc_statuses)."\n";
|
|
$MAIN.=" Nixi: ".implode(", ", $nixi_statuses)."\n";
|
|
$MAIN.=" No: ".implode(", ", $no_statuses)."\n";
|
|
$MAIN.=" Sales: ".implode(", ", $sale_statuses)."</B>\n\n";
|
|
|
|
$all_statuses=array_merge($no_statuses, $nixi_statuses, $afc_statuses, $sale_statuses);
|
|
# print_r($all_statuses);
|
|
# print_r($sale_statuses);
|
|
|
|
$afc_counts=array();
|
|
$nixi_counts=array();
|
|
$no_counts=array();
|
|
$sales_counts=array();
|
|
|
|
$total=0;
|
|
$workoff_total=0;
|
|
|
|
# SNAPSHOT FOR TOP AND BOTTOM VALUES?
|
|
# $stmt="select status, called_count, count(*) from vicidial_list where entry_date>='$query_date 00:00:00' and entry_date<='$end_date 23:59:59' $list_id_SQLand group by status, called_count order by status, called_count";
|
|
#$stmt="select count(*) from vicidial_list where entry_date>='$query_date 00:00:00' and entry_date<='$end_date 23:59:59' $list_id_SQLand";
|
|
$stmt="select count(*) from vicidial_list $list_id_SQLwhere";
|
|
if ($DB) {echo $stmt."<BR>\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
while ($row=mysqli_fetch_row($rslt)) {
|
|
$total=$row[0];
|
|
$workoff_total=$total;
|
|
}
|
|
|
|
# CALL ACTIVITY
|
|
$stmt="select ".$vicidial_list_table.".lead_id from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_log_table.".call_date<='$end_date 23:59:59' $list_id_SQLandVLJOIN UNION select distinct ".$vicidial_list_table.".lead_id from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_closer_log_table.".call_date<='$end_date 23:59:59' $list_id_SQLandVCLJOIN;";
|
|
|
|
$call_count_stmt="select ".$vicidial_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_log_table.".status,".$vicidial_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_log_table.".status in ('".implode("', '", $all_statuses)."') $group_SQLand $list_id_SQLandVLJOIN UNION select ".$vicidial_closer_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_closer_log_table.".status,".$vicidial_closer_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_closer_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_closer_log_table.".status in ('".implode("', '", $all_statuses)."') $list_id_SQLandVCLJOIN";
|
|
|
|
$stmt="select list_id, called_count, status from vicidial_list $list_id_SQLwhere"; # QUERY 1
|
|
|
|
$zb_counts=array();
|
|
$cc_stmt="select if(called_count>15, '4', if(called_count>10, '3', if(called_count>5, '2', if(called_count>0, '1', '0')))) as ary_index, count(*) from vicidial_list $list_id_SQLwhere group by ary_index";
|
|
$cc_rslt=mysql_to_mysqli($cc_stmt, $link);
|
|
while ($ccrow=mysqli_fetch_row($cc_rslt)) {
|
|
$zb_counts[$ccrow[0]]=$ccrow[1];
|
|
}
|
|
|
|
# $call_count_stmt="select ".$vicidial_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_log_table.".status,".$vicidial_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_log_table.".status in ('".implode("', '", $all_statuses)."') $group_SQLand $list_id_SQLandVLJOIN UNION select ".$vicidial_closer_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_closer_log_table.".status,".$vicidial_closer_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date>='$query_date 00:00:00' and ".$vicidial_closer_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_closer_log_table.".status in ('".implode("', '", $all_statuses)."') $list_id_SQLandVCLJOIN"; # QUERY 2
|
|
$call_count_stmt="select ".$vicidial_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_log_table.".status,".$vicidial_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_log_table.".status in ('".implode("', '", $all_statuses)."') $group_SQLand $list_id_SQLandVLJOIN UNION select ".$vicidial_closer_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_closer_log_table.".status,".$vicidial_closer_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date<='$end_date 23:59:59' and ".$vicidial_closer_log_table.".status in ('".implode("', '", $all_statuses)."') $list_id_SQLandVCLJOIN"; # QUERY 3
|
|
$stmt="select lead_id, called_count, status, max(call_date) from ($call_count_stmt) as dt group by lead_id, called_count, status"; # USED WITH QUERY 2 and 3
|
|
|
|
|
|
|
|
if ($DB) {echo $stmt."<BR>\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
|
|
# print_r($afc_statuses);
|
|
# print_r($nixi_statuses);
|
|
# print_r($no_statuses);
|
|
# print_r($sale_statuses);
|
|
|
|
while ($row=mysqli_fetch_row($rslt)) {
|
|
$status=$row[2];
|
|
$called_count=$row[1];
|
|
$workoff_total--;
|
|
|
|
if ($called_count>0) {
|
|
if ($called_count>=1 && $called_count<=5) {
|
|
$ary_index=1;
|
|
} else if ($called_count<=10) {
|
|
$ary_index=2;
|
|
} else if ($called_count<=15) {
|
|
$ary_index=3;
|
|
} else if ($called_count>15) {
|
|
$ary_index=4;
|
|
}
|
|
|
|
if(in_array($status, $no_statuses)) {
|
|
$no_counts[0]++;
|
|
$no_counts[$ary_index]++;
|
|
$zb_counts[$ary_index]--;
|
|
} else if (in_array($status, $nixi_statuses)) {
|
|
$nixi_counts[0]++;
|
|
$nixi_counts[$ary_index]++;
|
|
$zb_counts[$ary_index]--;
|
|
} else if (in_array($status, $afc_statuses)) {
|
|
$afc_counts[0]++;
|
|
$afc_counts[$ary_index]++;
|
|
$zb_counts[$ary_index]--;
|
|
} else if (in_array($status, $sale_statuses)) {
|
|
$sales_counts[0]++;
|
|
$sales_counts[$ary_index]++;
|
|
$zb_counts[$ary_index]--;
|
|
} else {
|
|
$workoff_total++;
|
|
}
|
|
} else {
|
|
$workoff_total++;
|
|
}
|
|
# $total+=$count;
|
|
}
|
|
$workoff_total+=0;
|
|
for($i=0; $i<=4; $i++) {
|
|
$afc_counts[$i]+=0;
|
|
$nixi_counts[$i]+=0;
|
|
$no_counts[$i]+=0;
|
|
$sales_counts[$i]+=0;
|
|
$zb_counts[$i]+=0;
|
|
}
|
|
|
|
|
|
$CSV_text.="\"Total\",\"$total\",\"\",\"\",\"1 - 5\",\"6 - 10\",\"10 - 15\",\"> 15\"\n";
|
|
$CSV_text.="\"Falsche Tel.\",\"$afc_counts[0]\",\"".sprintf("%.2f", (100*($afc_counts[0]/$total)))." %\",\"\",\"$afc_counts[1]\",\"$afc_counts[2]\",\"$afc_counts[3]\",\"$afc_counts[4]\"\n";
|
|
$CSV_text.="\"Nixi\",\"$nixi_counts[0]\",\"".sprintf("%.2f", (100*($nixi_counts[0]/($nixi_counts[0]+$no_counts[0]+$sales_counts[0]))))." %\",\"\",\"$nixi_counts[1]\",\"$nixi_counts[2]\",\"$nixi_counts[3]\",\"$nixi_counts[4]\"\n";
|
|
$CSV_text.="\"No\",\"$no_counts[0]\",\"\",\"\",\"$no_counts[1]\",\"$no_counts[2]\",\"$no_counts[3]\",\"$no_counts[4]\"\n";
|
|
$CSV_text.="\"Sales\",\"$sales_counts[0]\",\"".sprintf("%.2f", (100*($sales_counts[0]/($nixi_counts[0]+$no_counts[0]+$sales_counts[0]))))." %\",\"\",\"$sales_counts[1]\",\"$sales_counts[2]\",\"$sales_counts[3]\",\"$sales_counts[4]\"\n";
|
|
|
|
|
|
$head ="+------------------+---------+---------+---+---------+---------+---------+---------+\n";
|
|
$MAIN.=$head;
|
|
$MAIN.="| | Count | % | | Kontaktstatus |\n";
|
|
$MAIN.=$head;
|
|
$MAIN.="| Total | ".sprintf("%7s", $total)." | | | 1 - 5 | 6 - 10 | 10 - 15 | > 15 |\n";
|
|
$MAIN.="| Falsche Tel. | ".sprintf("%7s", $afc_counts[0])." | ".sprintf("%6s", sprintf("%.2f", (100*($afc_counts[0]/$total))))."% | | ".sprintf("%7s", $afc_counts[1])." | ".sprintf("%7s", $afc_counts[2])." | ".sprintf("%7s", $afc_counts[3])." | ".sprintf("%7s", $afc_counts[4])." |\n";
|
|
$MAIN.="| Nixi | ".sprintf("%7s", $nixi_counts[0])." | ".sprintf("%6s", sprintf("%.2f", (100*($nixi_counts[0]/($nixi_counts[0]+$no_counts[0]+$sales_counts[0])))))."% | | ".sprintf("%7s", $nixi_counts[1])." | ".sprintf("%7s", $nixi_counts[2])." | ".sprintf("%7s", $nixi_counts[3])." | ".sprintf("%7s", $nixi_counts[4])." |\n";
|
|
$MAIN.="| No | ".sprintf("%7s", $no_counts[0])." | ".sprintf("%7s", " ")." | | ".sprintf("%7s", $no_counts[1])." | ".sprintf("%7s", $no_counts[2])." | ".sprintf("%7s", $no_counts[3])." | ".sprintf("%7s", $no_counts[4])." |\n"; # Check percentage output here
|
|
$MAIN.="| Sales | ".sprintf("%7s", $sales_counts[0])." | ".sprintf("%6s", sprintf("%.2f", (100*($sales_counts[0]/($nixi_counts[0]+$no_counts[0]+$sales_counts[0])))))."% | | ".sprintf("%7s", $sales_counts[1])." | ".sprintf("%7s", $sales_counts[2])." | ".sprintf("%7s", $sales_counts[3])." | ".sprintf("%7s", $sales_counts[4])." |\n";
|
|
$MAIN.=$head;
|
|
|
|
|
|
# CALLBACKS
|
|
$anyone_counts=array();
|
|
$useronly_counts=array();
|
|
$calledback_counts=array();
|
|
|
|
$callbacks_group_SQLand = "and vicidial_callbacks.campaign_id in ($group_SQL)";
|
|
$callbacks_group_SQL = "where vicidial_callbacks.campaign_id in ($group_SQL)";
|
|
$callback_listid_SQLand=" and vicidial_callbacks.list_id in ($list_id_SQL)";
|
|
$callback_listid_SQL=" where vicidial_callbacks.list_id in ($list_id_SQL)";
|
|
|
|
|
|
$callbk_stmt="select recipient, called_count, if(callback_time<'".date("Y-m-d H:i:s")."', 'CALLED', 'NOT CALLED') from vicidial_callbacks, vicidial_list where vicidial_list.lead_id=vicidial_callbacks.lead_id $callbacks_group_SQLand $callback_listid_SQLand";
|
|
if ($DB) {echo "$callbk_stmt<BR>";}
|
|
$callbk_rslt=mysql_to_mysqli($callbk_stmt, $link);
|
|
while ($callbk_row=mysqli_fetch_row($callbk_rslt)) {
|
|
$recipient=$callbk_row[0];
|
|
$called_count=$callbk_row[1];
|
|
$callbk_status=$callbk_row[2];
|
|
|
|
if ($called_count>=1 && $called_count<=5) {
|
|
$ary_index=1;
|
|
} else if ($called_count<=10) {
|
|
$ary_index=2;
|
|
} else if ($called_count<=15) {
|
|
$ary_index=3;
|
|
} else if ($called_count>15) {
|
|
$ary_index=4;
|
|
}
|
|
|
|
if ($callbk_status=="NOT CALLED") {
|
|
if($recipient=="ANYONE") {
|
|
$anyone_counts[0]++;
|
|
$anyone_counts[$ary_index]++;
|
|
} else {
|
|
$useronly_counts[0]++;
|
|
$useronly_counts[$ary_index]++;
|
|
}
|
|
} else {
|
|
$calledback_counts[0]++;
|
|
$calledback_counts[$ary_index]++;
|
|
}
|
|
}
|
|
|
|
for($i=0; $i<=4; $i++) {
|
|
$anyone_counts[$i]+=0;
|
|
$useronly_counts[$i]+=0;
|
|
$calledback_counts[$i]+=0;
|
|
}
|
|
|
|
$CSV_text.="\"WV Team\",\"$anyone_counts[0]\",\"\",\"\",\"$anyone_counts[1]\",\"$anyone_counts[2]\",\"$anyone_counts[3]\",\"$anyone_counts[4]\"\n";
|
|
$CSV_text.="\"WV pers�nlich\",\"$useronly_counts[0]\",\"\",\"\",\"$useronly_counts[1]\",\"$useronly_counts[2]\",\"$useronly_counts[3]\",\"$useronly_counts[4]\"\n";
|
|
$CSV_text.="\"WV Vergangenheit \",\"$calledback_counts[0]\",\"\",\"\",\"$calledback_counts[1]\",\"$calledback_counts[2]\",\"$calledback_counts[3]\",\"$calledback_counts[4]\"\n\n";
|
|
$CSV_text.="\"Zu bearbeiten\",\"$workoff_total\",\"\",\"\",\"$zb_counts[1]\",\"$zb_counts[2]\",\"$zb_counts[3]\",\"$zb_counts[4]\",\"$zb_counts[0] (undialed)\"\n\n\n\n";
|
|
|
|
$MAIN.="| WV Team | ".sprintf("%7s", $anyone_counts[0])." | ".sprintf("%7s", " ")." | | ".sprintf("%7s", $anyone_counts[1])." | ".sprintf("%7s", $anyone_counts[2])." | ".sprintf("%7s", $anyone_counts[3])." | ".sprintf("%7s", $anyone_counts[4])." |\n";
|
|
$MAIN.="| WV persönlich | ".sprintf("%7s", $useronly_counts[0])." | ".sprintf("%7s", " ")." | | ".sprintf("%7s", $useronly_counts[1])." | ".sprintf("%7s", $useronly_counts[2])." | ".sprintf("%7s", $useronly_counts[3])." | ".sprintf("%7s", $useronly_counts[4])." |\n";
|
|
$MAIN.="| WV Vergangenheit | ".sprintf("%7s", $calledback_counts[0])." | ".sprintf("%7s", " ")." | | ".sprintf("%7s", $calledback_counts[1])." | ".sprintf("%7s", $calledback_counts[2])." | ".sprintf("%7s", $calledback_counts[3])." | ".sprintf("%7s", $calledback_counts[4])." |\n";
|
|
$MAIN.=$head;
|
|
$MAIN.="| Zu bearbeiten | ".sprintf("%7s", $workoff_total)." | ".sprintf("%7s", " ")." | | ".sprintf("%7s", $zb_counts[1])." | ".sprintf("%7s", $zb_counts[2])." | ".sprintf("%7s", $zb_counts[3])." | ".sprintf("%7s", $zb_counts[4])." | ".sprintf("%7s", $zb_counts[0])." (undialed)\n";
|
|
$MAIN.=$head;
|
|
|
|
## Lower section
|
|
$CSV_text.="\"Tagesstatus\"\n";
|
|
$CSV_text.="\"\",\"Falsche Tel. (AFC)\",\"%\",\"Nixi\",\"No\",\"Sales\",\"%\",\"Summe (sum)\"\n";
|
|
|
|
$MAIN.=" Tagesstatus \n";
|
|
$foot= "+------------+--------------+---------+---------+---------+---------+---------+---------+\n";
|
|
$MAIN.=$foot;
|
|
$MAIN.="| | Falsche Tel. | % | Nixi | No | Sales | % | Summe |\n";
|
|
$MAIN.=$foot;
|
|
|
|
$date_stmt="select distinct substr(call_date, 1, 10) as cdate from vicidial_log where call_date>='$query_date 00:00:00' and call_date<='$end_date 23:59:59' $group_SQLand $list_id_SQLand and status in ('".implode("', '", $all_statuses)."') order by cdate asc";
|
|
$date_rslt=mysql_to_mysqli($date_stmt, $link);
|
|
$date_ary=array();
|
|
while($date_row=mysqli_fetch_row($date_rslt)) {
|
|
array_push($date_ary, $date_row[0]);
|
|
}
|
|
|
|
$total_date_daily_count=0;
|
|
$total_contact_daily_count=0;
|
|
$total_no_daily_counts=0;
|
|
$total_nixi_daily_counts=0;
|
|
$total_afc_daily_counts=0;
|
|
$total_sales_daily_counts=0;
|
|
for ($i=0; $i<count($date_ary); $i++) {
|
|
$DEU_date=date("d.m.Y", strtotime($date_ary[$i]));
|
|
# $stmt="select status, count(*) from vicidial_log where call_date>='$date_ary[$i] 00:00:00' and call_date<='$date_ary[$i] 23:59:59' $group_SQLand $list_id_SQLand group by status";
|
|
# echo $stmt."\n";
|
|
|
|
# $stmt="select ".$vicidial_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_log_table.".status,".$vicidial_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date>='$date_ary[$i] 00:00:00' and ".$vicidial_log_table.".call_date<='$date_ary[$i] 23:59:59' and ".$vicidial_log_table.".status in ('".implode("', '", $all_statuses)."') $group_SQLand $list_id_SQLandVLJOIN UNION select ".$vicidial_closer_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_closer_log_table.".status,".$vicidial_closer_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date>='$date_ary[$i] 00:00:00' and ".$vicidial_closer_log_table.".call_date<='$date_ary[$i] 23:59:59' and ".$vicidial_closer_log_table.".status in ('".implode("', '", $all_statuses)."') $list_id_SQLandVCLJOIN";
|
|
# Need counts not limited by status? Otherwise use above statement
|
|
$stmt="select ".$vicidial_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_log_table.".status,".$vicidial_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_log_table." where ".$vicidial_log_table.".call_date>='$date_ary[$i] 00:00:00' and ".$vicidial_log_table.".call_date<='$date_ary[$i] 23:59:59' $group_SQLand $list_id_SQLandVLJOIN UNION select ".$vicidial_closer_log_table.".lead_id,".$vicidial_list_table.".called_count,".$vicidial_closer_log_table.".status,".$vicidial_closer_log_table.".call_date from ".$vicidial_list_table.", ".$vicidial_closer_log_table." where ".$vicidial_closer_log_table.".call_date>='$date_ary[$i] 00:00:00' and ".$vicidial_closer_log_table.".call_date<='$date_ary[$i] 23:59:59' $list_id_SQLandVCLJOIN";
|
|
# $stmt="select lead_id, called_count, status, max(call_date) from ($call_count_stmt) as dt group by lead_id, called_count, status";
|
|
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
$date_daily_count=0;
|
|
$contact_daily_count=0;
|
|
$no_daily_counts=0;
|
|
$nixi_daily_counts=0;
|
|
$afc_daily_counts=0;
|
|
$sales_daily_counts=0;
|
|
|
|
while($row=mysqli_fetch_row($rslt)) {
|
|
$status=$row[2];
|
|
# $count=$row[1];
|
|
|
|
$date_daily_count++;
|
|
if(in_array($status, $no_statuses)) {
|
|
$no_daily_counts++;
|
|
$contact_daily_count++;
|
|
} else if (in_array($status, $nixi_statuses)) {
|
|
$nixi_daily_counts++;
|
|
$contact_daily_count++;
|
|
} else if (in_array($status, $afc_statuses)) {
|
|
$afc_daily_counts++;
|
|
$contact_daily_count++;
|
|
} else if (in_array($status, $sale_statuses)) {
|
|
$sales_daily_counts++;
|
|
$contact_daily_count++;
|
|
}
|
|
}
|
|
$CSV_text.="\"$DEU_date\",\"$afc_daily_counts\",\"".sprintf("%.2f", (100*($afc_daily_counts/$total)))." %\",\"$nixi_daily_counts\",\"$no_daily_counts\",\"$sales_daily_counts\",\"".sprintf("%.2f", (100*($sales_daily_counts/($nixi_daily_counts+$no_daily_counts+$sales_daily_counts))))." %\",\"$contact_daily_count\"\n";
|
|
|
|
$MAIN.="| $DEU_date | ".sprintf("%12s", $afc_daily_counts)." | ".sprintf("%6s", sprintf("%.2f", (100*($afc_daily_counts/$total))))."% | ".sprintf("%7s", $nixi_daily_counts)." | ".sprintf("%7s", $no_daily_counts)." | ".sprintf("%7s", $sales_daily_counts)." | ".sprintf("%6s", sprintf("%.2f", (100*($sales_daily_counts/($nixi_daily_counts+$no_daily_counts+$sales_daily_counts)))))."% | ".sprintf("%7s", $contact_daily_count)." |\n";
|
|
$MAIN.=$foot;
|
|
|
|
$total_date_daily_count+=$date_daily_count;
|
|
$total_contact_daily_count+=$contact_daily_count;
|
|
$total_no_daily_counts+=$no_daily_counts;
|
|
$total_nixi_daily_counts+=$nixi_daily_counts;
|
|
$total_afc_daily_counts+=$afc_daily_counts;
|
|
$total_sales_daily_counts+=$sales_daily_counts;
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
# CALLED ATTEMPTS COUNT WITHIN RANGE
|
|
select lead_id, sum(ct) as total_count from (select vicidial_list.lead_id, count(*) as ct from vicidial_list, vicidial_log where vicidial_log.call_date>='2015-01-30 00:00:00' and vicidial_log.call_date<='2016-03-30 23:59:59' and vicidial_log.lead_id=vicidial_list.lead_id and vicidial_list.list_id IN('101','5555','102314','7777') group by lead_id UNION select vicidial_list.lead_id, count(*) as ct from vicidial_list, vicidial_closer_log where vicidial_closer_log.call_date>='2014-01-30 00:00:00' and vicidial_closer_log.call_date<='2016-03-30 23:59:59' and vicidial_closer_log.lead_id=vicidial_list.lead_id and vicidial_list.list_id IN('101','5555','102314','7777') group by lead_id) as temp_count group by lead_id order by lead_id;
|
|
|
|
# CURRENT CALLED COUNT WITHIN RANGE
|
|
select lead_id, max(max_count) as total_count from (select vicidial_log.lead_id, max(vicidial_log.called_count) as max_count from vicidial_list, vicidial_log where vicidial_log.call_date>='2015-01-30 00:00:00' and vicidial_log.call_date<='2016-03-30 23:59:59' and vicidial_log.lead_id=vicidial_list.lead_id and vicidial_list.list_id IN('101','5555','102314','7777') group by lead_id UNION select vicidial_closer_log.lead_id, max(vicidial_closer_log.called_count) as max_count from vicidial_list, vicidial_closer_log where vicidial_closer_log.call_date>='2014-01-30 00:00:00' and vicidial_closer_log.call_date<='2016-03-30 23:59:59' and vicidial_closer_log.lead_id=vicidial_list.lead_id and vicidial_list.list_id IN('101','5555','102314','7777') group by lead_id) as temp_count group by lead_id order by lead_id;
|
|
*/
|
|
|
|
$MAIN.="</table></center><br>\n";
|
|
$MAIN.="</BODY></HTML>\n";
|
|
|
|
|
|
if ($file_download>0)
|
|
{
|
|
$FILE_TIME = date("Ymd-His");
|
|
$CSVfilename = "MEDIALOG_INVENTORY_report_$US$FILE_TIME.csv";
|
|
$CSV_text=preg_replace('/\n +,/', ',', $CSV_text);
|
|
$CSV_text=preg_replace('/ +\"/', '"', $CSV_text);
|
|
$CSV_text=preg_replace('/\" +/', '"', $CSV_text);
|
|
// We'll be outputting a TXT file
|
|
header('Content-type: application/octet-stream');
|
|
|
|
// It will be called LIST_101_20090209-121212.txt
|
|
header("Content-Disposition: attachment; filename=\"$CSVfilename\"");
|
|
header('Expires: 0');
|
|
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
|
|
header('Pragma: public');
|
|
ob_clean();
|
|
flush();
|
|
|
|
echo "$CSV_text";
|
|
}
|
|
else
|
|
{
|
|
echo $HEADER;
|
|
require("admin_header.php");
|
|
echo $MAIN;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo $HEADER;
|
|
require("admin_header.php");
|
|
echo $MAIN;
|
|
}
|
|
if ($db_source == 'S')
|
|
{
|
|
mysqli_close($link);
|
|
$use_slave_server=0;
|
|
$db_source = 'M';
|
|
require("dbconnect_mysqli.php");
|
|
}
|
|
|
|
$endMS = microtime();
|
|
$startMSary = explode(" ",$startMS);
|
|
$endMSary = explode(" ",$endMS);
|
|
$runS = ($endMSary[0] - $startMSary[0]);
|
|
$runM = ($endMSary[1] - $startMSary[1]);
|
|
$TOTALrun = ($runS + $runM);
|
|
|
|
$stmt="UPDATE vicidial_report_log set run_time='$TOTALrun' where report_log_id='$report_log_id';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_to_mysqli($stmt, $link);
|
|
|
|
exit;
|
|
?>
|