/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = StockClosing::find(); // add conditions that should always apply here $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } // grid filtering conditions $query->andFilterWhere(['ID' => $this->ID, 'TGL' => $this->TGL, 'TYPE' => $this->TYPE, 'UNIT_QTY' => $this->UNIT_QTY, 'UNIT_WIGHT' => $this->UNIT_WIGHT, 'QTY' => $this->QTY, 'STATUS' => $this->STATUS, 'CREATE_AT' => $this->CREATE_AT, 'UPDATE_AT' => $this->UPDATE_AT]); $query->andFilterWhere(['like', 'KD_JUST', $this->KD_JUST])->andFilterWhere(['like', 'KD_DEPT', $this->KD_DEPT])->andFilterWhere(['like', 'PIC', $this->PIC])->andFilterWhere(['like', 'ID_BARANG', $this->ID_BARANG])->andFilterWhere(['like', 'NM_BARANG', $this->NM_BARANG])->andFilterWhere(['like', 'UNIT', $this->UNIT])->andFilterWhere(['like', 'UNIT_NM', $this->UNIT_NM])->andFilterWhere(['like', 'NOTE', $this->NOTE])->andFilterWhere(['like', 'CREATE_BY', $this->CREATE_BY])->andFilterWhere(['like', 'UPDATE_BY', $this->UPDATE_BY]); return $dataProvider; }