/**
  * Updates an existing StrukturnoePodrazdelenie model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id
  * @return mixed
  */
 public function actionUpdate($id)
 {
     $model = $this->findModel($id);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('update', ['model' => $model, 'orgname' => Organizaciya::find()->orderBy('id ASC')->all()]);
     }
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getOrganizaciya0()
 {
     return $this->hasOne(Organizaciya::className(), ['id' => 'organizaciya']);
 }
 /**
  * Finds the Organizaciya model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Organizaciya the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Organizaciya::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }