Changeset 892
- Timestamp:
- 07/24/08 06:35:33 (6 months ago)
- Files:
-
- trunk/admin/Public/call-log-customers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/admin/Public/call-log-customers.php
r777 r892 214 214 if (strlen($FG_TABLE_CLAUSE)>0) $FG_TABLE_CLAUSE.=" AND "; 215 215 $FG_TABLE_CLAUSE .= " (t1.terminatecause='ANSWER' OR t1.terminatecause='ANSWERED') "; 216 } 217 if ($terminatecause=="INCOMPLET") { 218 if (strlen($FG_TABLE_CLAUSE)>0) $FG_TABLE_CLAUSE.=" AND "; 219 $FG_TABLE_CLAUSE .= " (t1.terminatecause !='ANSWER' AND t1.terminatecause !='ANSWERED') "; 220 } 221 if ($terminatecause=="CONGESTION") { 222 if (strlen($FG_TABLE_CLAUSE)>0) $FG_TABLE_CLAUSE.=" AND "; 223 $FG_TABLE_CLAUSE .= " (t1.terminatecause='CONGESTION') "; 216 224 } 217 225 … … 510 518 <?php echo gettext("All Calls");?> 511 519 <input name="terminatecause" type="radio" value="ALL" <?php if($terminatecause=="ALL"){?>checked<?php }?>/> 520 <?php echo gettext("Not completed Calls");?> 521 <input name="terminatecause" type="radio" value="INCOMPLET" <?php if($terminatecause=="INCOMPLET"){?>checked<?php }?>/> 522 <?php echo gettext("Congestioned Calls");?> 523 <input name="terminatecause" type="radio" value="CONGESTION" <?php if($terminatecause=="CONGESTION"){?>checked<?php }?>/> 512 524 </td> 513 525 </tr>
