/**
  * Updates a particular model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id the ID of the model to be updated
  */
 public function actionUpdate($id)
 {
     if (isset($_GET['sid'])) {
         // Меняем статус, ajax
         $sid = $_GET['sid'];
         $model = $this->loadModel($id);
         $model->status = $sid;
         $model->save();
         Yii::app()->end();
     }
     if (Yii::app()->request->isAjaxRequest) {
         //echo 'test';
         $data = Yii::app()->request->getRestParams();
         $field = str_replace('Zakaz_', '', $data['elid']);
         if (is_array($data)) {
             $model = $this->loadModel($data['id']);
             echo json_encode($model->{$field} = $data['data']);
             echo json_encode($model->save());
             echo json_encode($model->errors);
             Yii::app()->end();
         }
         $this->renderPartial('_order_list_update');
         Yii::app()->end();
     }
     Yii::app()->session['project_id'] = $id;
     $model = $this->loadModel($id);
     if (Yii::app()->request->getParam('close') == 'yes') {
         $model->old_status = $model->status;
         $model->status = 5;
         $model->save(false);
         $user = User::model()->findByPk($model->user_id);
         if ($user->pid) {
             $payed = Payment::model()->exists('order_id = :p1 AND payment_type = :p2', array(':p1' => $model->id, ':p2' => Payment::OUTCOMING_WEBMASTER));
             if (!$payed) {
                 // Only first time
                 $webmaster = User::model()->with('profile')->findByPk($user->pid);
                 $openlog = WebmasterLog::model()->findByAttributes(array('order_id' => $model->id), 'action = :p1 OR action = :p2', array(':p1' => WebmasterLog::FIRST_ORDER, ':p2' => WebmasterLog::NON_FIRST_ORDER));
                 $webmasterlog = new WebmasterLog();
                 $webmasterlog->pid = $user->pid;
                 $webmasterlog->uid = $user->id;
                 $webmasterlog->date = date("Y-m-d");
                 $webmasterlog->order_id = $model->id;
                 if ($openlog->action == WebmasterLog::FIRST_ORDER) {
                     $webmasterlog->action = WebmasterLog::FINISH_FIRST_ORDER_SUCCESS;
                 } elseif ($openlog->action == WebmasterLog::NON_FIRST_ORDER) {
                     $webmasterlog->action = WebmasterLog::FINISH_NON_FIRST_ORDER_SUCCESS;
                 }
                 $webmasterlog->save();
                 // Pament for webmaster ~~~~~~~~~~~~~~~~~~~~~~~~~~
                 $payment = ProjectPayments::model()->find('order_id = :ORDER_ID', array(':ORDER_ID' => $model->id));
                 $manag = User::model()->findByPk(Yii::app()->user->id);
                 $buh = new Payment();
                 $buh->order_id = $model->id;
                 $buh->receive_date = date('Y-m-d');
                 $buh->theme = $model->title;
                 $buh->user = $webmaster->email;
                 $buh->details_ya = $webmaster->profile->yandex;
                 $buh->details_wm = $webmaster->profile->wmr;
                 $buh->details_bank = $webmaster->profile->bank_account;
                 $buh->payment_type = Payment::OUTCOMING_WEBMASTER;
                 $buh->manager = $manag->email;
                 //$buh->approve = 0;
                 $buh->method = 'Cash or Bank';
                 if ($openlog->action == WebmasterLog::FIRST_ORDER) {
                     $buh->summ = (double) $payment->project_price * Company::getWebmasterFirstOrderRate();
                 } elseif ($openlog->action == WebmasterLog::NON_FIRST_ORDER) {
                     $buh->summ = (double) $payment->project_price * Company::getWebmasterSecondOrderRate();
                 }
                 $buh->save();
             }
         }
         $this->redirect(array('update', 'id' => $model->id));
     } elseif (Yii::app()->request->getParam('open') == 'yes') {
         $model->status = $model->old_status;
         $model->save(false);
         $this->redirect(array('update', 'id' => $model->id));
     } elseif (Yii::app()->request->getParam('refound') == 'yes') {
         $model->old_status = $model->status;
         $model->status = 5;
         $model->save(false);
         $user = User::model()->findByPk($model->user_id);
         // Refound ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         $manag = User::model()->findByPk(Yii::app()->user->id);
         $payment = ProjectPayments::model()->find('order_id = :ORDER_ID', array(':ORDER_ID' => $model->id));
         if ($payment && $payment->received > 0) {
             $refound = $payment->received;
             $payment->received = 0;
             $payment->save();
             $buh = new Payment();
             $buh->order_id = $model->id;
             $buh->receive_date = date('Y-m-d');
             $buh->theme = $model->title;
             $buh->user = $user->email;
             $buh->summ = (double) $refound;
             $buh->payment_type = Payment::OUTCOMING_CUSTOMER;
             $buh->manager = $manag->email;
             //$buh->approve = 0;
             $buh->method = 'Cash or Bank';
             $buh->save();
         }
         if ($user->pid) {
             $webmasterlog = new WebmasterLog();
             $webmasterlog->pid = $user->pid;
             $webmasterlog->uid = $user->id;
             $webmasterlog->date = date("Y-m-d");
             $webmasterlog->order_id = $model->id;
             $openlog = WebmasterLog::model()->findByAttributes(array('order_id' => $model->id), 'action = :p1 OR action = p2', array(':p1' => WebmasterLog::FIRST_ORDER, ':p2' => WebmasterLog::NON_FIRST_ORDER));
             if ($openlog->action == WebmasterLog::FIRST_ORDER) {
                 $webmasterlog->action = WebmasterLog::FINISH_FIRST_ORDER_FAILURE;
             } elseif ($openlog->action == WebmasterLog::NON_FIRST_ORDER) {
                 $webmasterlog->action = WebmasterLog::FINISH_NON_FIRST_ORDER_FAILURE;
             } else {
                 echo 'Somthing wrong...';
                 Yii::app()->end();
             }
             $webmasterlog->save();
         }
         $this->redirect(array('update', 'id' => $model->id));
     }
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Zakaz'])) {
         $model->attributes = $_POST['Zakaz'];
         if (isset($_POST['Zakaz']['dbdate'])) {
             $model->dbdate = $_POST['Zakaz']['dbdate'];
         }
         $projectFields = $model->getFields();
         if ($projectFields) {
             foreach ($projectFields as $field) {
                 if ($field->field_type == "TIMESTAMP") {
                     // ----------------------------------------------------
                     $tmp = $field->varname;
                     if (isset($_POST['Zakaz'][$tmp])) {
                         $model->{$tmp} = $_POST['Zakaz'][$tmp];
                         $model->timestampInput($field);
                     }
                 }
             }
         }
         if ($model->save()) {
             if (Yii::app()->request->getParam('accepted') && User::model()->isCorrector()) {
                 EventHelper::correctorAccepted($model->id);
             }
             $role = User::model()->getUserRole();
             if ($role != 'Manager' && $role != 'Admin') {
                 // где-то есть дублрующий вызов записи события, поэтому этот комментируем
                 // oldbadger 09.10.2015
                 //					EventHelper::editOrder($model->id);
                 //$view = 'orderInModerate';
                 $this->redirect(array("../project/chat?orderId={$id}"));
             } else {
                 //					$this->redirect(array('project/chat','orderId'=>$model->id));
                 $this->redirect(array('update', 'id' => $model->id));
             }
         }
     }
     $managerlog = new ManagerLog();
     $managerlog->uid = Yii::app()->user->id;
     $managerlog->action = ManagerLog::ORDER_PAGE_VIEW;
     $managerlog->datetime = date('Y-m-d H:i:s');
     $managerlog->order_id = $model->id;
     $managerlog->save();
     $hints = Templates::model()->getTemplateList(4);
     $view = 'update';
     $isModified = false;
     $this->render($view, array('model' => $model, 'hints' => $hints, 'isModified' => $isModified));
 }