Fixed "Failed" call status in CDR

Re-implemented the commented out "Failed" call status SQL filter. It was no different than leaving the "Call status" search box empty. Removed the send_refuse restriction.
This commit is contained in:
demonspork 2021-02-20 00:17:01 -06:00
parent 56a318b2f0
commit d150f16b9d
1 changed files with 2 additions and 1 deletions

View File

@ -453,7 +453,8 @@
))";
}
break;
default: //failed
default:
$sql .= "and (answer_stamp is null and bridge_uuid is null and duration = 0) ";
//$sql .= "and (answer_stamp is null and bridge_uuid is null and billsec = 0 and sip_hangup_disposition = 'send_refuse') ";
}
}