/**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new KurirDeliveryList();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['KurirDeliveryList'])) {
         $model->attributes = $_POST['KurirDeliveryList'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }
 public function insertdelivery($userId = null, $awb = null)
 {
     if ($awb == null || $awb == '') {
         return FALSE;
     }
     $checkDeliveryList = KurirDeliveryList::model()->findByAttributes(array('awb' => $awb));
     if ($checkDeliveryList != null) {
         return FALSE;
     }
     $checkShipement = Shipment::model()->findByAttributes(array('awb' => $awb));
     if ($checkShipement == null) {
         return FALSE;
     }
     $model = new KurirDeliveryList();
     $model->created = time();
     $model->user_id = $userId;
     $model->awb = $awb;
     $model->save(false);
     return $awb;
 }