|
@@ -37,9 +37,9 @@ class flow_sealaplClassModel extends flowModel
|
|
|
|
|
|
$startDate = $this->rock->post("start_date");
|
|
|
$stopDate = $this->rock->post("stop_date");
|
|
|
- $status = $this->rock->post("status");
|
|
|
- $export_type = $this->rock->post("export_type");
|
|
|
-
|
|
|
+// $status = $this->rock->post("status") ?? null;
|
|
|
+// $export_type = $this->rock->post("export_type");
|
|
|
+//
|
|
|
if ($uid == 'all') {
|
|
|
$where .= 'and '.$this->adminid.' in (1, 28)';
|
|
|
}
|
|
@@ -47,12 +47,12 @@ class flow_sealaplClassModel extends flowModel
|
|
|
if (!empty($startDate)) {
|
|
|
$where .= " and office_date > '{$startDate}'";
|
|
|
}
|
|
|
- // 结束时间
|
|
|
- if (!empty($stopDate)) {
|
|
|
- $where .= " and office_date < '{$stopDate}'";
|
|
|
- }
|
|
|
- // 审核完成
|
|
|
- $where .= " and status = '{$status}'";
|
|
|
+// // 结束时间
|
|
|
+// if (!empty($stopDate)) {
|
|
|
+// $where .= " and office_date < '{$stopDate}'";
|
|
|
+// }
|
|
|
+// // 审核完成
|
|
|
+// $where .= " and status = 1";
|
|
|
|
|
|
return [
|
|
|
'where' => $where,
|