/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Inventaris::find(); $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; } $query->andFilterWhere(['id_inventaris' => $this->id_inventaris, 'id' => $this->id]); $query->andFilterWhere(['like', 'nama_barang', $this->nama_barang])->andFilterWhere(['like', 'kode_barang', $this->kode_barang])->andFilterWhere(['like', 'jenis_barang', $this->jenis_barang])->andFilterWhere(['like', 'tahun_pembelian', $this->tahun_pembelian]); return $dataProvider; }
/** * Finds the Inventaris model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Inventaris the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Inventaris::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
/** * @return \yii\db\ActiveQuery */ public function getInventaris() { return $this->hasMany(Inventaris::className(), ['id' => 'id']); }