コード例 #1
0
ファイル: VehiculoSearch.php プロジェクト: magrando/transPYME
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Vehiculo::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(['veh_fecha_compra' => $this->veh_fecha_compra, 'veh_km_compra' => $this->veh_km_compra, 'veh_valor_compra' => $this->veh_valor_compra, 'veh_max_carga' => $this->veh_max_carga, 'veh_carter' => $this->veh_carter, 'veh_caja' => $this->veh_caja, 'veh_diferencial' => $this->veh_diferencial, 'veh_num_motor' => $this->veh_num_motor, 'veh_num_chasis' => $this->veh_num_chasis, 'veh_num_ejes' => $this->veh_num_ejes, 'veh_gps_cod' => $this->veh_gps_cod]);
     $query->andFilterWhere(['like', 'veh_patente', $this->veh_patente])->andFilterWhere(['like', 'emp_rut', $this->emp_rut])->andFilterWhere(['like', 'veh_tipo', $this->veh_tipo])->andFilterWhere(['like', 'veh_marca', $this->veh_marca])->andFilterWhere(['like', 'veh_color', $this->veh_color])->andFilterWhere(['like', 'veh_observaciones', $this->veh_observaciones])->andFilterWhere(['like', 'veh_imagen', $this->veh_imagen]);
     return $dataProvider;
 }
コード例 #2
0
ファイル: Carro.php プロジェクト: magrando/transPYME
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVehPatentes()
 {
     return $this->hasMany(Vehiculo::className(), ['veh_patente' => 'veh_patente'])->viaTable('uni_veh_car', ['car_patente' => 'car_patente']);
 }
コード例 #3
0
ファイル: EmpresaPyme.php プロジェクト: magrando/transPYME
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVehiculos()
 {
     return $this->hasMany(Vehiculo::className(), ['emp_rut' => 'emp_rut']);
 }
コード例 #4
0
 /**
  * Finds the Vehiculo model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Vehiculo the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Vehiculo::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }