wugg hace 7 meses
padre
commit
3dde307f01
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 !== "") {