|
@@ -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 !== "") {
|