/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = TblAssetTestRemote::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' => $this->id, 'inventory_id' => $this->inventory_id, 'test_power_button' => $this->test_power_button, 'enter_menu_options' => $this->enter_menu_options, 'make_screen_blank_button' => $this->make_screen_blank_button, 'choose_source_button' => $this->choose_source_button, 'test_battery_1' => $this->test_battery_1, 'test_battery_2' => $this->test_battery_2, 'up_elt_mount_remote' => $this->up_elt_mount_remote, 'down_elt_mount_remote' => $this->down_elt_mount_remote, 'stop_elt_mount_remote' => $this->stop_elt_mount_remote, 'created_date' => $this->created_date, 'update_date' => $this->update_date, 'status' => $this->status]);
     $query->andFilterWhere(['like', 'battery_type', $this->battery_type])->andFilterWhere(['like', 'service_period', $this->service_period])->andFilterWhere(['like', 'comment', $this->comment]);
     return $dataProvider;
 }