コード例 #1
0
ファイル: NoticiasController.php プロジェクト: vvvhh/not
 public function repBusquedaPer()
 {
     $data = Input::all();
     $fi = $data['fi'] . " 00:00:00";
     $ff = $data['ff'] . " 23:59:59";
     //  $seleccionar=DB::select('SELECT f.fueNombre, n.notTitulo, n.notContenido, r.resNombre, r.resId, n.notId, n.notFecha FROM noticias n, fuentes f, responsables r, asignaciones a WHERE a.asiPeriodos='.$data['idPeriodo'].' AND a.asiFuentes='.$data['idFuente'].' AND a.asiId = n.notAsignaciones AND a.asiResponsables = r.resId  GROUP BY notId ORDER BY f.fueid;');
     $buscar = '%' . $data['buscar'] . '%';
     $seleccionar = NoticiasController::consultaBusquedaPer($buscar, $data['i'], $data['i2'], $data['i3'], $data['i4'], $data['i5'], $data['i6'], $fi, $ff);
     if (count($seleccionar) > 0) {
         $response = array('status' => 'OK', 'data' => $seleccionar, 'message' => 'Resultados obtenidos');
     } else {
         $response = array('status' => 'ERROR', 'message' => 'No se encontraron noticias registradas.');
     }
     return Response::json($response);
 }
コード例 #2
0
ファイル: CorreoController.php プロジェクト: vvvhh/not
 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);
 }