/**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return FechasBloqueadas the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = FechasBloqueadas::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
 public function validarFechaSolicitud($attribute, $params)
 {
     $_Fecha = $this->FechaSolicitudCita;
     $_IdCedi = $this->IdCedi;
     $elMensaje = null;
     $bloqueosfecha = FechasBloqueadas::getDatosBloqueoFecha($_Fecha);
     foreach ($bloqueosfecha as $reg) {
         if (empty($reg->IdCedi)) {
             if ($this->HoraSolicitudCita >= $reg->HoraInicio && $this->HoraSolicitudCita <= $reg->HoraFinal) {
                 $elMensaje = 'Fecha No Disponible Para La Solicitud. ' . $reg->ObservacionesBloqueo . '. Hora Inicio: ' . $reg->HoraInicio . '. Hora Final: ' . $reg->HoraFinal;
                 break;
             }
         } else {
             if ($reg->IdCedi == $this->IdCedi) {
                 if (empty($reg->IdMuelle)) {
                     if ($this->HoraSolicitudCita >= $reg->HoraInicio && $this->HoraSolicitudCita <= $reg->HoraFinal) {
                         $elMensaje = 'Fecha No Disponible Para La Solicitud. ' . $reg->ObservacionesBloqueo . '. Hora Inicio: ' . $reg->HoraInicio . '. Hora Final: ' . $reg->HoraFinal;
                         break;
                     }
                 }
             }
         }
     }
     if ($elMensaje) {
         $this->addError('ObservacionesSolicitudCita', $elMensaje);
     }
 }
 public static function getDatosBloqueoFecha($_Fecha)
 {
     $losdatosbloqueo = FechasBloqueadas::model()->findAll(array('select' => '*', 'condition' => 'Fecha = :laFecha', 'params' => array(':laFecha' => $_Fecha)));
     return $losdatosbloqueo;
 }