Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Salida::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(['idSalida' => $this->idSalida, 'pedido_idPedido' => $this->pedido_idPedido, 'producto_idProducto' => $this->producto_idProducto, 'cantidad' => $this->cantidad, 'precio' => $this->precio]);
     return $dataProvider;
 }
Пример #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSalidas()
 {
     return $this->hasMany(Salida::className(), ['pedido_idPedido' => 'idPedido']);
 }
Пример #3
0
 /**
  * Finds the Salida model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $idSalida
  * @param integer $pedido_idPedido
  * @param integer $producto_idProducto
  * @return Salida the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($idSalida, $pedido_idPedido, $producto_idProducto)
 {
     if (($model = Salida::findOne(['idSalida' => $idSalida, 'pedido_idPedido' => $pedido_idPedido, 'producto_idProducto' => $producto_idProducto])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Пример #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSalidas()
 {
     return $this->hasMany(Salida::className(), ['producto_idProducto' => 'idProducto']);
 }