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];