/**
  * Creates a new Deposito model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Deposito();
     $lojaatual = Yii::$app->user->identity->loja_idloja;
     $model->loja_idloja = $lojaatual;
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->iddeposito]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }