|
@@ -342,6 +342,10 @@ class Send_sms_adminAction extends Action
|
|
|
$info = $_REQUEST['info'];
|
|
|
$error = $_REQUEST['error'];
|
|
|
$uname = $_SESSION['user_infos']['uname'];
|
|
|
+ $tel = trim($_REQUEST['tel']);
|
|
|
+ if(!empty($tel)) {
|
|
|
+ $where.=" and (mobile='$tel' or from_phone ='$tel' )";
|
|
|
+ }
|
|
|
$list = $admin->select_smsdidlog_list($where,$limit);
|
|
|
|
|
|
$all_total = $admin->select_smsdidlog_count($where);
|
|
@@ -356,6 +360,7 @@ class Send_sms_adminAction extends Action
|
|
|
$new[$k]=$v;
|
|
|
$new[$k]['uname']=$this->getName($admin,$v['uid']);
|
|
|
}
|
|
|
+ $this->assign('tel',$tel);
|
|
|
$this->assign('status_array',$status_array);
|
|
|
$this->assign('info',$info);
|
|
|
$this->assign('error',$error);
|