示例#1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = OrdenEntrega::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, 'cliente_did' => $this->cliente_did, 'fecha_f' => $this->fecha_f, 'estatus_did' => $this->estatus_did, 'fechacreacion_ft' => $this->fechacreacion_ft]);
     $query->andFilterWhere(['like', 'contacto', $this->contacto])->andFilterWhere(['like', 'folio', $this->folio])->andFilterWhere(['like', 'comentarios', $this->comentarios]);
     return $dataProvider;
 }
 /**
  * Finds the OrdenEntrega model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return OrdenEntrega the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = OrdenEntrega::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }