wugg 7 달 전
부모
커밋
3dde307f01
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/admin/controller/Consult.php

+ 2 - 2
app/admin/controller/Consult.php

@@ -1947,7 +1947,7 @@ class Consult extends Base
         }
         $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
         if ($infoNo !== "") {
-            $where[] = ['infoNo','like','%'.$infoNo.'%'];
+            $where[] = ['a.infoNo','like','%'.$infoNo.'%'];
         }
         $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
         if ($bidNo !== "") {
@@ -1955,7 +1955,7 @@ class Consult extends Base
         }
         $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
         if ($pgNo !== "") {
-            $where[] = ['pgNo','=',$pgNo];
+            $where[] = ['c.pgNo','=',$pgNo];
         }
         $bargain_status = isset($this->post['bargain_status']) && $this->post['bargain_status'] !== "" ? intval($this->post['bargain_status']) : "";
         if ($bargain_status !== "") {