CDR add permision to hide call center agent legs

Author:    agree <ahrongreenberg@gmail.com>
This commit is contained in:
Greenbea
2021-01-12 16:51:28 -05:00
committed by agree
parent 4256bd5081
commit 3a01537487
3 changed files with 9 additions and 1 deletions

View File

@@ -820,10 +820,14 @@
$content .= "</tr>\n";
//show the leg b only to those with the permission
if (!permission_exists('xml_cdr_lose_race') && $row['hangup_cause'] == 'LOSE_RACE') {
$content = '';
}
//show agent originated legs only to those with the permission
if (!permission_exists('xml_cdr_cc_agent_side') && $row['cc_side'] == "agent") {
$content = '';
}
//show the leg b only to those with the permission
if ($row['leg'] == 'a') {
echo $content;
}