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

+ 4 - 0
app/admin/controller/Consult.php

@@ -1968,6 +1968,10 @@ class Consult extends Base
         if ($status !== "") {
             $where[] = ['a.status','=',$status];
         }
+        $tax_status = isset($this->post['tax_status']) && $this->post['tax_status'] !== "" ? intval($this->post['tax_status']) : "";
+        if ($tax_status !== "") {
+            $where[] = ['a.tax_status','=',$tax_status];
+        }
         $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
         if ($companyNo !== "") {
             $where[] = ['companyNo','=',$companyNo];