|
@@ -492,7 +492,7 @@ class Consult extends BaseController
|
|
|
$this->post = $this->request->filter('trim')->post();
|
|
|
$page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
|
|
|
$size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
|
|
|
- $where = [['cb.is_del', "=", 0], ['c.status', '<>', 5]];
|
|
|
+ $where = [['cb.is_del', "=", 0], ['c.status', '<>', 6]];//不要'取消转单'状态下的数据
|
|
|
$zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
|
|
|
if ($zxNo !== "") {
|
|
|
$where[] = ['cb.zxNo', 'like', '%' . $zxNo . '%'];
|