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