예제 #1
0
 /**
  * Creates a new EfProjectPlanAct model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new EfProjectPlanAct();
     $projectList = EfProjectPlanAct::find()->where(['PARENT_ID' => null])->all();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->PROJECT_PLAN_ACT_ID]);
     } else {
         return $this->render('create', ['model' => $model, 'projectList' => $projectList]);
     }
 }
예제 #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = EfProjectPlanAct::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['PROJECT_PLAN_ACT_ID' => $this->PROJECT_PLAN_ACT_ID, 'BUDGET_PLAN' => $this->BUDGET_PLAN, 'LEVEL' => $this->LEVEL, 'PARENT_ID' => $this->PARENT_ID, 'PROJECT_ID' => $this->PROJECT_ID, 'CREATE_BY' => $this->CREATE_BY, 'CREATE_DATE' => $this->CREATE_DATE, 'LAST_UPD_BY' => $this->LAST_UPD_BY, 'LAST_UPD_DATE' => $this->LAST_UPD_DATE]);
     $query->andFilterWhere(['like', 'PLAN_ACT_NAME', $this->PLAN_ACT_NAME])->andFilterWhere(['like', 'SEQ', $this->SEQ])->andFilterWhere(['like', 'STATUS', $this->STATUS]);
     return $dataProvider;
 }