/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = DraftPlanHeader::find();
     // add conditions that should always apply here
     $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;
     }
     // grid filtering conditions
     $query->andFilterWhere(['ID' => $this->ID, 'TGL' => $this->TGL, 'SCDL_GROUP' => $this->SCDL_GROUP, 'STATUS' => $this->STATUS, 'CREATE_AT' => $this->CREATE_AT, 'STT_UBAH' => $this->STT_UBAH, 'UPDATE_AT' => $this->UPDATE_AT]);
     $query->andFilterWhere(['like', 'NOTE', $this->NOTE])->andFilterWhere(['like', 'USER_ID', $this->USER_ID])->andFilterWhere(['like', 'CREATE_BY', $this->CREATE_BY])->andFilterWhere(['like', 'UPDATE_BY', $this->UPDATE_BY]);
     return $dataProvider;
 }
 /**
  * Finds the DraftPlanHeader model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return DraftPlanHeader the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = DraftPlanHeader::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
 /**
  * Delete All models DraftPlanDetail AND DraftPlanHeader
  * call function ganti-jadwal
  * @param string $custId
  * @param string $tgl
  */
 protected function GantiDetailHeader($custId, $tgl)
 {
     // DraftPlanDetail::deleteAll(['CUST_ID'=>$custId,'STATUS'=>0]);
     DraftPlanDetail::deleteAll('LEFT(TGL,4) ="' . $tgl . '" AND CUST_ID="' . $custId . '" AND STATUS = 1');
     DraftPlanDetail::deleteAll('LEFT(TGL,4) ="' . $tgl . '" AND CUST_ID="' . $custId . '" AND STATUS = 0');
     DraftPlanHeader::deleteAll('LEFT(TGL,4) ="' . $tgl . '" AND STATUS = 1');
 }