コード例 #1
0
 /**
  * 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 actionDuplicate($id)
 {
     $model = $this->loadModel($id);
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     $newGP = new SupplierPurchase();
     $newGP->attributes = $model->attributes;
     $newGP->id = null;
     if ($newGP->save()) {
         $this->redirect(array('update', 'id' => $newGP->id));
     }
     $this->render('update', array('model' => $model));
 }