CDR: Added TTA (Time To Answer) column, tool-tip explanations to call direction icons, and paging controls to top of beginning of CDR list.

This commit is contained in:
Nate Jones
2014-09-08 18:06:36 +00:00
parent 9c35d9f2fe
commit 49bbc2e986
2 changed files with 24 additions and 7 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ else {
}
//get the results from the db
$sql = "select * from v_xml_cdr where domain_uuid = '".$domain_uuid."' ".$sql_where;
$sql = "select *, (answer_epoch - start_epoch) as tta from v_xml_cdr where domain_uuid = '".$domain_uuid."' ".$sql_where;
if (strlen($order_by)> 0) { $sql .= " order by ".$order_by." ".$order." "; }
if ($rows_per_page == 0) {
$sql .= " limit ".$_SESSION['cdr']['limit']['numeric']." offset 0 ";