Beispiel #1
0
 function repReprePer()
 {
     $token = Input::get('token');
     if (isset($token)) {
         $data = array('id' => Input::get('i'), 'id2' => Input::get('i2'), 'id3' => Input::get('i3'), 'id4' => Input::get('i4'), 'id5' => Input::get('i5'), 'id6' => Input::get('i6'), 'fI' => Input::get('fi'), 'fF' => Input::get('ff'));
         $validaciones = array('id' => array('required'));
         $validator = Validator::make($data, $validaciones);
         if ($validator->fails()) {
             $respuesta;
             $mensajes = $validator->messages();
             foreach ($mensajes->all() as $mensaje) {
                 $respuesta = $mensaje;
             }
             $response = array('status' => 'ERRORV', 'message' => $respuesta);
         } else {
             $fechaInicio = $data['fI'] . " 00:00:00";
             $fechaFin = $data['fF'] . " 23:59:59";
             $seleccionar = NoticiasController::consultaReprePer($data['id'], $data['id2'], $data['id3'], $data['id4'], $data['id5'], $data['id6'], $fechaInicio, $fechaFin);
             if (count($seleccionar) > 0) {
                 $response = array('status' => 'OK', 'data' => $seleccionar, 'message' => 'Resultados obtenidos');
             } else {
                 $response = array('status' => 'ERROR', 'message' => 'No se encontraron noticias registradas para el representante en dicho período.');
             }
         }
     } else {
         $response = array('status' => 'ERROR', 'message' => 'Vuelva a intentar en un momento');
     }
     return Response::json($response);
 }
Beispiel #2
0
 public function envioRepReprePer()
 {
     /***********/
     $data = array('id' => Input::get('i'), 'id2' => Input::get('i2'), 'id3' => Input::get('i3'), 'id4' => Input::get('i4'), 'id5' => Input::get('i5'), 'id6' => Input::get('i6'), 'fechaInicio' => Input::get('fi'), 'fechaFin' => Input::get('ff'), 'correo' => Input::get('correo'), 'relevante' => Input::get('relevante'), 'publicacion' => Input::get('publicacion'), 'representante' => Input::get('representante'), 'hora' => Input::get('hora'), 'contenido' => Input::get('contenido'));
     $seleccionar = NoticiasController::consultaReprePer($data['id'], $data['id2'], $data['id3'], $data['id4'], $data['id5'], $data['id6'], $data['fechaInicio'], $data['fechaFin']);
     if (count($seleccionar) > 0) {
         //$body='';
         $body = CorreoController::crearBody($seleccionar, $data['fechaInicio'], $data['fechaFin'], $data['relevante'], $data['publicacion'], $data['representante'], $data['hora'], $data['contenido'], NULL);
         $head = '';
         $titulo = 'Reporte por fuente y período';
         $i = 1;
         /*  foreach ($seleccionar as $valor) {
         
                   $fueNombre= $valor['fueNombre'];
                   $notTitulo= $valor['notTitulo'];
                   $notContenido= $valor['notContenido'];
                   $notFecha= $valor['notFecha'];
                   $resNombre= $valor['resNombre'];
         
                   $body=$body.'<br>';
                   $body=$body.'<div>';
                   $body=$body.'<h2 style="text-align: center; color:#1565c0;"> <u>'.$fueNombre.'</u></h2>';
                   $body=$body.'<h4 style="text-align: left; color:#1565c0;">'.$notTitulo.'</h4>';
                   $body=$body.'<p style="text-align: justify;" >'.$notContenido.'</p>';
                   $body=$body.'<p style="text-align: left;" >Fecha: '.$notFecha.'</p>';
                   $body=$body.'<p style="text-align: left;" >Responsable: '.$resNombre.'</p>';
                   $body=$body.'</div>';
                   $i++;
                 }*/
         $dataCorreo = array('body' => $body, 'head' => $head, 'titulo' => $titulo);
         //$toEmail = "*****@*****.**";
         $toEmail = $data['correo'];
         Mail::send('emails.envioEquiposMail', $dataCorreo, function ($message) use($toEmail) {
             $message->to($toEmail);
             $message->subject('REPORTE POR REPRESENTANTE Y PERÍODO.');
         });
         $response = array('status' => 'OK', 'message' => 'Correo enviado.');
     } else {
         $response = array('status' => 'ERROR', 'message' => 'No se pudo enviar correo.');
     }
     return Response::json($response);
 }