/**
  * Finds the AccPeriode model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return AccPeriode the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = AccPeriode::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Exemple #2
0
 /**
  * @return integer Current accounting periode
  */
 public static function getCurrentIdAccPeriode()
 {
     $acc = AccPeriode::findOne(['status' => AccPeriode::STATUS_OPEN]);
     if ($acc) {
         return $acc->id_periode;
     }
     throw new UserException('Periode tidak ditemukan');
 }