From 20a7a8dca5b652e47a6e4c45ff2daabfccca0dec Mon Sep 17 00:00:00 2001 From: Juan Prasca Date: Tue, 3 Oct 2023 19:24:43 -0500 Subject: [PATCH 001/128] Actualizacion rama Prasca --- client/src/components/Students/Students.jsx | 15 ++++- client/src/components/Utils/Modals/Modals.jsx | 59 ++++++++++++++++++- 2 files changed, 72 insertions(+), 2 deletions(-) diff --git a/client/src/components/Students/Students.jsx b/client/src/components/Students/Students.jsx index 755fb1bc..564acefb 100644 --- a/client/src/components/Students/Students.jsx +++ b/client/src/components/Students/Students.jsx @@ -8,13 +8,16 @@ import { AiOutlineEye } from 'react-icons/ai' import { PiCaretRightBold } from 'react-icons/pi' import { TiDelete } from 'react-icons/ti' import { BiSad } from 'react-icons/bi' +import { GrAddCircle } from 'react-icons/gr' + // Componentes import { Siderbar } from '../Siderbar/Sidebar' import { Footer } from '../Footer/Footer' import { Pagination } from '../Utils/Pagination/Pagination' import { GetClassByNumber, GetStudentsByCourse, GetStudentsDetailById } from '../../api/httpRequest' -import { InfoStudentModal } from '../Utils/Modals/Modals' +import { InfoStudentModal, RegisterStudentModal } from '../Utils/Modals/Modals' +import { Button } from '../Utils/Button/Button' export const Students = () => { const [pageNumber, setPageNumber] = useState(0) @@ -28,6 +31,7 @@ export const Students = () => { const [showFiltros, setShowFiltros] = useState(false) const [filtersButtons, setFiltersButtons] = useState({ modalidad: false, etapa: false }) const [activeFilter, setActiveFilter] = useState(false) + const [isOpen, setIsOpen] = useState(false) const [loadingData, setLoadingData] = useState({ course: true, students: true }) const getStudents = async (payload) => { @@ -40,6 +44,9 @@ export const Students = () => { throw new Error(err) } } + const handleStudentModal = () => { + setIsOpen(true) + } useEffect(() => { getStudents(courseNumber) @@ -58,6 +65,7 @@ export const Students = () => { } const handleStateModal = () => setShowModalStudent(false) + const handleCloseModal = () => setIsOpen(false) const handleDetailInfoStudent = async (id) => { try { @@ -118,6 +126,7 @@ export const Students = () => { {showModalStudent && ( )} + {isOpen && }
@@ -268,6 +277,10 @@ export const Students = () => {
+
diff --git a/client/src/components/Utils/Modals/Modals.jsx b/client/src/components/Utils/Modals/Modals.jsx index 2e691020..2063d419 100644 --- a/client/src/components/Utils/Modals/Modals.jsx +++ b/client/src/components/Utils/Modals/Modals.jsx @@ -71,6 +71,63 @@ const BitacoraModal = ({ closeModal, title }) => {
) } +const RegisterStudentModal = ({ closedModal, title }) => { + const handleModal = () => { + closedModal() + } + return ( +
+ +
+ ) +} const FilterModal = ({ closeModal, width = 'w-2/5', title, children }) => { const handleModal = () => { @@ -485,4 +542,4 @@ const LoadingModal = ({ children, title = 'Cargando' }) => { ) } -export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal } +export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal, RegisterStudentModal } From be96f994bea7826fd0d9904eaab64b3053883490 Mon Sep 17 00:00:00 2001 From: Juan Prasca Date: Tue, 3 Oct 2023 20:48:04 -0500 Subject: [PATCH 002/128] New update --- client/package-lock.json | 4 +- client/src/components/Courses/Courses.jsx | 12 +- client/src/components/Utils/Modals/Modals.jsx | 148 ++++++++++++++---- 3 files changed, 128 insertions(+), 36 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index 23be7c45..1761a63b 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "client", - "version": "2.17.0-alpha", + "version": "2.20.0-alpha", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "client", - "version": "2.17.0-alpha", + "version": "2.20.0-alpha", "dependencies": { "@nextui-org/accordion": "^2.0.23", "@nextui-org/pagination": "^2.0.22", diff --git a/client/src/components/Courses/Courses.jsx b/client/src/components/Courses/Courses.jsx index 78fc1fc7..b8e4fb3f 100644 --- a/client/src/components/Courses/Courses.jsx +++ b/client/src/components/Courses/Courses.jsx @@ -16,6 +16,7 @@ import { Button } from '../Utils/Button/Button' import { Siderbar } from '../Siderbar/Sidebar' import { Card3D } from '../Utils/Card/Card' import { getClass, GetClassByNumber } from '../../api/httpRequest' +import { RegisterCourses } from '../Utils/Modals/Modals' export const Courses = () => { const [pageNumber, setPageNumber] = useState(1) @@ -26,6 +27,7 @@ export const Courses = () => { const [filtersButtons, setFiltersButtons] = useState({ etapa: false, nivel: false, finLectiva: false, inicioPractica: false }) const [activeFilter, setActiveFilter] = useState(false) const [error, setError] = useState(null) + const [isOpen, setIsOpen] = useState(false) const [searchedCourses, setSearchedCourses] = useState([]) /** @@ -65,6 +67,10 @@ export const Courses = () => { } } + const handleCoursesModal = () => { + setIsOpen(true) + } + const handleCloseModal = () => setIsOpen(false) /** * Función para manejar la visualización de los filtros. * @@ -359,6 +365,7 @@ export const Courses = () => { return (
+ {isOpen && }
@@ -494,10 +501,13 @@ export const Courses = () => {
-
+
+
diff --git a/client/src/components/Utils/Modals/Modals.jsx b/client/src/components/Utils/Modals/Modals.jsx index c7ae4c71..e513a50f 100644 --- a/client/src/components/Utils/Modals/Modals.jsx +++ b/client/src/components/Utils/Modals/Modals.jsx @@ -88,40 +88,56 @@ const RegisterStudentModal = ({ closedModal, title }) => { return (
) } +const RegisterCourses = ({closedModal, title}) => { + const handleModal = () => { + closedModal() + } + return ( +
+ +
+ ) +} const FilterModal = ({ closeModal, width = 'w-2/5', title, children }) => { /** @@ -736,4 +818,4 @@ const LoadingModal = ({ children, title = 'Cargando' }) => { ) } -export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal, RegisterStudentModal } +export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal, RegisterStudentModal, RegisterCourses } From eb1cc57451d8e33f1bc32d7370a6706028859b4c Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Wed, 4 Oct 2023 13:14:20 -0500 Subject: [PATCH 003/128] feat: db with tracking tables --- server/src/db/db.sql | 299 ++++++++++++++++++++++++++++++------------- 1 file changed, 211 insertions(+), 88 deletions(-) diff --git a/server/src/db/db.sql b/server/src/db/db.sql index 96ead2f3..3f54c52a 100644 --- a/server/src/db/db.sql +++ b/server/src/db/db.sql @@ -61,53 +61,236 @@ INSERT INTO `aprendices` VALUES (1,'Lorena','Quiceno Giraldo','CC','1028882894', UNLOCK TABLES; -- --- Table structure for table `arl` +-- Table structure for table `aprendices_bitacoras` -- -DROP TABLE IF EXISTS `arl`; +DROP TABLE IF EXISTS `aprendices_bitacoras`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `arl` ( - `id_arl` int NOT NULL AUTO_INCREMENT, - `nombre_arl` varchar(200) NOT NULL, - PRIMARY KEY (`id_arl`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +CREATE TABLE `aprendices_bitacoras` ( + `id_bitacora` int NOT NULL AUTO_INCREMENT, + `fecha_bitacora` date NOT NULL, + `calificacion_bitacora` varchar(45) DEFAULT NULL, + `observaciones_bitacora` varchar(45) DEFAULT NULL, + `numero_bitacora` int NOT NULL, + `usuario_responsable` int NOT NULL, + `fecha_modificacion` timestamp NOT NULL, + PRIMARY KEY (`id_bitacora`), + KEY `fk_usuario_responsable_edita_idx` (`usuario_responsable`), + CONSTRAINT `fk_usuario_responsable_edita` FOREIGN KEY (`usuario_responsable`) REFERENCES `usuarios` (`id_usuario`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `arl` +-- Dumping data for table `aprendices_bitacoras` -- -LOCK TABLES `arl` WRITE; -/*!40000 ALTER TABLE `arl` DISABLE KEYS */; -INSERT INTO `arl` VALUES (1,'SENA'),(2,'Empresa'),(3,'No aplica'); -/*!40000 ALTER TABLE `arl` ENABLE KEYS */; +LOCK TABLES `aprendices_bitacoras` WRITE; +/*!40000 ALTER TABLE `aprendices_bitacoras` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_bitacoras` ENABLE KEYS */; UNLOCK TABLES; -- --- Table structure for table `bitacoras` +-- Table structure for table `aprendices_bitacoras_detalles` -- -DROP TABLE IF EXISTS `bitacoras`; +DROP TABLE IF EXISTS `aprendices_bitacoras_detalles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `bitacoras` ( - `id_bitacora` int NOT NULL AUTO_INCREMENT, - `fecha_bitacora` date NOT NULL, - `estado_bitacora` varchar(200) NOT NULL, - `numero_bitacora` varchar(100) NOT NULL, - `calificacion_bitacora` double NOT NULL, - PRIMARY KEY (`id_bitacora`) +CREATE TABLE `aprendices_bitacoras_detalles` ( + `id_aprendiz_bitacora_detalle` int NOT NULL, + `id_aprendiz` int NOT NULL, + `id_bitacora` int DEFAULT NULL, + PRIMARY KEY (`id_aprendiz_bitacora_detalle`), + KEY `fk_idaprendiz_bitacoraD_idx` (`id_aprendiz`), + KEY `fk_idbitacora_bitacoraD_idx` (`id_bitacora`), + CONSTRAINT `fk_idaprendiz_bitacoraD` FOREIGN KEY (`id_aprendiz`) REFERENCES `aprendices` (`id_aprendiz`) ON UPDATE CASCADE, + CONSTRAINT `fk_idbitacora_bitacoraD` FOREIGN KEY (`id_bitacora`) REFERENCES `aprendices_bitacoras` (`id_bitacora`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `aprendices_bitacoras_detalles` +-- + +LOCK TABLES `aprendices_bitacoras_detalles` WRITE; +/*!40000 ALTER TABLE `aprendices_bitacoras_detalles` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_bitacoras_detalles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `aprendices_cartas` +-- + +DROP TABLE IF EXISTS `aprendices_cartas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `aprendices_cartas` ( + `id_carta_aprendiz` int NOT NULL, + `tipo_carta_aprendiz` varchar(45) NOT NULL, + `calificacion_carta_aprendiz` varchar(45) DEFAULT NULL, + `observaciones_carta_aprendiz` varchar(500) DEFAULT NULL, + `fecha_modificacion` timestamp NOT NULL, + `usuario_responsable` int NOT NULL, + PRIMARY KEY (`id_carta_aprendiz`), + KEY `usuario_responsable_Fk_idx` (`usuario_responsable`), + CONSTRAINT `usuario_responsable_Fk` FOREIGN KEY (`usuario_responsable`) REFERENCES `usuarios` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `aprendices_cartas` +-- + +LOCK TABLES `aprendices_cartas` WRITE; +/*!40000 ALTER TABLE `aprendices_cartas` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_cartas` ENABLE KEYS */; +UNLOCK TABLES; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8mb4 */ ; +/*!50003 SET character_set_results = utf8mb4 */ ; +/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `actualizar_fecha_modificacion` BEFORE INSERT ON `aprendices_cartas` FOR EACH ROW BEGIN + SET @fecha_actual = current_timestamp(); + SET NEW.fecha_modificacion = @fecha_actual; +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; + +-- +-- Table structure for table `aprendices_cartas_detalles` +-- + +DROP TABLE IF EXISTS `aprendices_cartas_detalles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `aprendices_cartas_detalles` ( + `id_aprendiz_carta_detalle` int NOT NULL, + `id_aprendiz` int NOT NULL, + `id_carta_aprendiz` int DEFAULT NULL, + PRIMARY KEY (`id_aprendiz_carta_detalle`), + KEY `fk_idaprendiz_cartasD_idx` (`id_aprendiz`), + KEY `fk_idcarta_aprendiz_cartasD_idx` (`id_carta_aprendiz`), + CONSTRAINT `fk_idaprendiz_cartasD` FOREIGN KEY (`id_aprendiz`) REFERENCES `aprendices` (`id_aprendiz`) ON UPDATE CASCADE, + CONSTRAINT `fk_idcarta_aprendiz_cartasD` FOREIGN KEY (`id_carta_aprendiz`) REFERENCES `aprendices_cartas` (`id_carta_aprendiz`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `bitacoras` +-- Dumping data for table `aprendices_cartas_detalles` -- -LOCK TABLES `bitacoras` WRITE; -/*!40000 ALTER TABLE `bitacoras` DISABLE KEYS */; -/*!40000 ALTER TABLE `bitacoras` ENABLE KEYS */; +LOCK TABLES `aprendices_cartas_detalles` WRITE; +/*!40000 ALTER TABLE `aprendices_cartas_detalles` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_cartas_detalles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `aprendices_visitas` +-- + +DROP TABLE IF EXISTS `aprendices_visitas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `aprendices_visitas` ( + `id_visita` int NOT NULL AUTO_INCREMENT, + `fecha_visita` date NOT NULL, + `numero_visita` varchar(100) NOT NULL, + `calificacion_visita` varchar(45) DEFAULT NULL, + `observaciones_visita` longtext, + `usuario_responsale` int NOT NULL, + `fecha_modificacion` timestamp NOT NULL, + PRIMARY KEY (`id_visita`), + KEY `usuario_responsable_fk_idx` (`usuario_responsale`), + CONSTRAINT `fk_usuario_responsable` FOREIGN KEY (`usuario_responsale`) REFERENCES `usuarios` (`id_usuario`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `aprendices_visitas` +-- + +LOCK TABLES `aprendices_visitas` WRITE; +/*!40000 ALTER TABLE `aprendices_visitas` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_visitas` ENABLE KEYS */; +UNLOCK TABLES; +/*!50003 SET @saved_cs_client = @@character_set_client */ ; +/*!50003 SET @saved_cs_results = @@character_set_results */ ; +/*!50003 SET @saved_col_connection = @@collation_connection */ ; +/*!50003 SET character_set_client = utf8mb4 */ ; +/*!50003 SET character_set_results = utf8mb4 */ ; +/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; +/*!50003 SET @saved_sql_mode = @@sql_mode */ ; +/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; +DELIMITER ;; +/*!50003 CREATE*/ /*!50017 DEFINER=`root`@`localhost`*/ /*!50003 TRIGGER `aprendices_visitas_BEFORE_INSERT` BEFORE INSERT ON `aprendices_visitas` FOR EACH ROW BEGIN + SET @fecha_actual = current_timestamp(); + SET NEW.fecha_modificacion = @fecha_actual; +END */;; +DELIMITER ; +/*!50003 SET sql_mode = @saved_sql_mode */ ; +/*!50003 SET character_set_client = @saved_cs_client */ ; +/*!50003 SET character_set_results = @saved_cs_results */ ; +/*!50003 SET collation_connection = @saved_col_connection */ ; + +-- +-- Table structure for table `aprendices_visitas_detalles` +-- + +DROP TABLE IF EXISTS `aprendices_visitas_detalles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `aprendices_visitas_detalles` ( + `id_aprendiz_visita_detalle` int NOT NULL, + `id_aprendiz` int NOT NULL, + `id_visita` int DEFAULT NULL, + PRIMARY KEY (`id_aprendiz_visita_detalle`), + KEY `fk_idaprendiz_visitasD_idx` (`id_aprendiz`), + KEY `fk_idvisita_visitasD_idx` (`id_visita`), + CONSTRAINT `fk_idaprendiz_visitasD` FOREIGN KEY (`id_aprendiz`) REFERENCES `aprendices` (`id_aprendiz`) ON UPDATE CASCADE, + CONSTRAINT `fk_idvisita_visitasD` FOREIGN KEY (`id_visita`) REFERENCES `aprendices_visitas` (`id_visita`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `aprendices_visitas_detalles` +-- + +LOCK TABLES `aprendices_visitas_detalles` WRITE; +/*!40000 ALTER TABLE `aprendices_visitas_detalles` DISABLE KEYS */; +/*!40000 ALTER TABLE `aprendices_visitas_detalles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `arl` +-- + +DROP TABLE IF EXISTS `arl`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `arl` ( + `id_arl` int NOT NULL AUTO_INCREMENT, + `nombre_arl` varchar(200) NOT NULL, + PRIMARY KEY (`id_arl`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `arl` +-- + +LOCK TABLES `arl` WRITE; +/*!40000 ALTER TABLE `arl` DISABLE KEYS */; +INSERT INTO `arl` VALUES (1,'SENA'),(2,'Empresa'),(3,'No aplica'); +/*!40000 ALTER TABLE `arl` ENABLE KEYS */; UNLOCK TABLES; -- @@ -184,7 +367,8 @@ CREATE TABLE `detalles_inscripciones` ( KEY `id_inscripcion` (`id_inscripcion`), KEY `fk_detalles_inscripciones_2_idx` (`rol_responsable`), CONSTRAINT `detalles_inscripciones_ibfk_1` FOREIGN KEY (`id_inscripcion`) REFERENCES `inscripciones` (`id_inscripcion`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `fk_detalles_inscripciones_2` FOREIGN KEY (`rol_responsable`) REFERENCES `roles` (`id_rol`) ON UPDATE CASCADE + CONSTRAINT `fk_detalles_inscripciones_2` FOREIGN KEY (`rol_responsable`) REFERENCES `roles` (`id_rol`) ON UPDATE CASCADE, + CONSTRAINT `fk_rol_responsable_aval` FOREIGN KEY (`rol_responsable`) REFERENCES `usuarios` (`id_usuario`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=893 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -691,39 +875,6 @@ INSERT INTO `roles` VALUES (1,'Instructor líder de prácticas'),(2,'Coordinador /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `seguimientos` --- - -DROP TABLE IF EXISTS `seguimientos`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `seguimientos` ( - `id_seguimiento` int NOT NULL AUTO_INCREMENT, - `administracion_educativa` varchar(500) NOT NULL, - `observacion` longtext, - `id_aprendiz` int NOT NULL, - `id_visita` int NOT NULL, - `id_bitacora` int NOT NULL, - PRIMARY KEY (`id_seguimiento`), - KEY `id_aprendiz` (`id_aprendiz`), - KEY `id_visita` (`id_visita`), - KEY `id_bitacora` (`id_bitacora`), - CONSTRAINT `seguimientos_ibfk_1` FOREIGN KEY (`id_aprendiz`) REFERENCES `aprendices` (`id_aprendiz`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `seguimientos_ibfk_2` FOREIGN KEY (`id_visita`) REFERENCES `visitas` (`id_visita`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `seguimientos_ibfk_3` FOREIGN KEY (`id_bitacora`) REFERENCES `bitacoras` (`id_bitacora`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `seguimientos` --- - -LOCK TABLES `seguimientos` WRITE; -/*!40000 ALTER TABLE `seguimientos` DISABLE KEYS */; -/*!40000 ALTER TABLE `seguimientos` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `usuarios` -- @@ -757,34 +908,6 @@ INSERT INTO `usuarios` VALUES (1,'Admin','Admin','CC','1234567890','juanlestar12 /*!40000 ALTER TABLE `usuarios` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `visitas` --- - -DROP TABLE IF EXISTS `visitas`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `visitas` ( - `id_visita` int NOT NULL AUTO_INCREMENT, - `fecha_visita` date NOT NULL, - `numero_visita` varchar(100) NOT NULL, - `observaciones_visita` longtext, - `id_instructor_seguimiento` int NOT NULL, - PRIMARY KEY (`id_visita`), - KEY `fk_visitas_1` (`id_instructor_seguimiento`), - CONSTRAINT `fk_visitas_1` FOREIGN KEY (`id_instructor_seguimiento`) REFERENCES `usuarios` (`id_usuario`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `visitas` --- - -LOCK TABLES `visitas` WRITE; -/*!40000 ALTER TABLE `visitas` DISABLE KEYS */; -/*!40000 ALTER TABLE `visitas` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Dumping events for database 'sena_practicas' -- @@ -802,4 +925,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-10-04 9:32:10 +-- Dump completed on 2023-10-04 13:13:22 From b177bdcc411b88f55fad1391cf4c48c09d7e894a Mon Sep 17 00:00:00 2001 From: Loren Q Date: Wed, 4 Oct 2023 18:41:42 -0500 Subject: [PATCH 004/128] feat: added modal for creating instructors, validations and saving to database --- client/src/components/Teachers/Teachers.jsx | 179 ++++++++++++------ client/src/components/Utils/Modals/Modals.jsx | 129 ++++++++++++- client/src/validation/addTeacherValidation.js | 13 ++ 3 files changed, 266 insertions(+), 55 deletions(-) create mode 100644 client/src/validation/addTeacherValidation.js diff --git a/client/src/components/Teachers/Teachers.jsx b/client/src/components/Teachers/Teachers.jsx index 5e168d89..f20be847 100644 --- a/client/src/components/Teachers/Teachers.jsx +++ b/client/src/components/Teachers/Teachers.jsx @@ -2,16 +2,20 @@ import { useState, useEffect } from 'react' import { Link, useNavigate } from 'react-router-dom' import Skeleton from 'react-loading-skeleton' import { Pagination } from '@nextui-org/pagination' +import { toast, ToastContainer } from 'react-toastify' // Icons import { FaAngleRight } from 'react-icons/fa' +import { HiOutlineUserAdd } from 'react-icons/hi' // Components import { Siderbar } from '../Siderbar/Sidebar' import { Footer } from '../Footer/Footer' import { Search } from '../Search/Search' -import { colorsOddRow } from '../../import/staticData' +import { colorsOddRow, keysRoles } from '../../import/staticData' import { getTeachers, GetTeacherByName } from '../../api/httpRequest' +import { AddTeacherModal } from '../Utils/Modals/Modals' +import { Button } from '../Utils/Button/Button' export const Teachers = () => { const [pageNumber, setPageNumber] = useState(1) @@ -19,6 +23,20 @@ export const Teachers = () => { const [teacher, setTeacher] = useState([]) const [searchedTeachers, setSearchedTeachers] = useState([]) const [error, setError] = useState(null) + const [showModal, setShowModal] = useState(false) + const [notify, setNotify] = useState(false) + + /** + * Identificador del rol del usuario almacenado en el almacenamiento local. + * + * @constant + * @name idRol + * @type {number} + * + * @example + * const idRolUsuario = idRol; + */ + const idRol = Number(localStorage.getItem('idRol')) /** * Función asincrónica para buscar aprendices por nombre de usuario. @@ -163,73 +181,128 @@ export const Teachers = () => { return navigate(`/fichas-instructor/${id}`) } + /** + * Función para manejar el cierre del modal de asignación. + * + * @function + * @name handleCloseModal + * @returns {void} + * + * @example + * handleCloseModal(); + */ + const handleModal = () => { + setShowModal(!showModal) + } + + /** + * Efecto secundario para mostrar una notificación de crear instructor y actualizar la lista de instructores. + * + * @function + * @name useEffectMostrarNotificacionYActualizarInstructores + * @param {boolean} notify - Estado de notificación. + * @returns {void} + * + * @example + * useEffectMostrarNotificacionYActualizarInstructores(true); + */ + useEffect(() => { + if (notify) { + toast.success('Se ha creado el instructor', { + position: 'top-right', + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: false, + pauseOnFocusLoss: false, + draggable: true, + progress: undefined, + theme: 'colored', + className: 'text-sm' + }) + } + setNotify(false) + getInstructores() + }, [notify]) + return ( -
- -
-
- -
-
- {searchedTeachers.length > 0 && !error ? ( -
- {allColors.slice(startIndex, endIndex).map((color, index) => - searchedTeachers[startIndex + index] ? ( -
-
-
{`${searchedTeachers[startIndex + index].nombres_usuario} ${searchedTeachers[startIndex + index].apellidos_usuario}`}
-
-

{searchedTeachers[startIndex + index].id_rol === 3 && 'Instructor Seguimiento'}

-
-
-
- -
-
-
- ) : null - )} -
- ) : ( -
- {loading ? ( - <> - - - ) : error ? ( -

{error}

- ) : ( - allColors.slice(startIndex, endIndex).map((color, index) => - teacher[startIndex + index] ? ( + <> + {showModal && } +
+ + +
+
+ +
+
+ {searchedTeachers.length > 0 && !error ? ( +
+ {allColors.slice(startIndex, endIndex).map((color, index) => + searchedTeachers[startIndex + index] ? (
-
{`${teacher[startIndex + index].nombres_usuario} ${teacher[startIndex + index].apellidos_usuario}`}
+
{`${searchedTeachers[startIndex + index].nombres_usuario} ${searchedTeachers[startIndex + index].apellidos_usuario}`}

-

{teacher[startIndex + index].id_rol === 3 && 'Instructor Seguimiento'}

+

{searchedTeachers[startIndex + index].id_rol === 3 && 'Instructor Seguimiento'}

-
) : null - ) - )} -
- )} + )} +
+ ) : ( +
+ {loading ? ( + <> + + + ) : error ? ( +

{error}

+ ) : ( + allColors.slice(startIndex, endIndex).map((color, index) => + teacher[startIndex + index] ? ( +
+
+
{`${teacher[startIndex + index].nombres_usuario} ${teacher[startIndex + index].apellidos_usuario}`}
+
+

{teacher[startIndex + index].id_rol === 3 && 'Instructor Seguimiento'}

+
+
+
+ +
+
+
+ ) : null + ) + )} +
+ )} -
- -
+
+ +
+ {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( +
+ +
+ )} +
+
-
-
-
+
+ ) } diff --git a/client/src/components/Utils/Modals/Modals.jsx b/client/src/components/Utils/Modals/Modals.jsx index a4ac14f0..98dac722 100644 --- a/client/src/components/Utils/Modals/Modals.jsx +++ b/client/src/components/Utils/Modals/Modals.jsx @@ -1,16 +1,19 @@ import { useState, useEffect, useRef } from 'react' +import { toast, ToastContainer } from 'react-toastify' // icons import { AiOutlineEye, AiOutlineEyeInvisible } from 'react-icons/ai' import { IoSearchOutline } from 'react-icons/io5' import { BsCheck2Circle } from 'react-icons/bs' import { IoMdClose } from 'react-icons/io' +import { LuSave } from 'react-icons/lu' // componentes import { Button } from '../Button/Button' import { Select } from '../Select/Select' import { modalOptionList } from '../../Register-list/RegisterList' -import { getTeachers, inscriptionDetailsUpdate, updateTeacherSeguimiento } from '../../../api/httpRequest' +import { getTeachers, inscriptionDetailsUpdate, updateTeacherSeguimiento, registerUser } from '../../../api/httpRequest' +import { addTeacherValidation } from '../../../validation/addTeacherValidation' const BitacoraModal = ({ closeModal, title }) => { /** @@ -664,4 +667,126 @@ const LoadingModal = ({ children, title = 'Cargando' }) => { ) } -export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal } +const AddTeacherModal = ({ closeModal, title, setNotify }) => { + const formRef = useRef(null) + /** + * Función para manejar el cierre del modal. + * + * @function + * @name handleModal + * @returns {void} + * + * @example + * handleModal(); + */ + const handleModal = () => { + closeModal() + } + + const handleAddedTeacher = async (e) => { + e.preventDefault() + + const id_rol = 3 + const contrasena = 'InstructorCtm2023' + const formData = new FormData(formRef.current) + formData.append('id_rol', id_rol) + formData.append('contrasena', contrasena) + const data = Object.fromEntries(formData) + + const { error } = addTeacherValidation.validate(data) + if (error !== undefined) { + let errorMessage + const customErrorMessages = { + nombre: 'El nombre debe tener al menos 3 caracteres.', + apellido: 'El apellido debe tener al menos 3 caracteres.', + num_documento: 'El número de documento debe tener entre 8 y 10 caracteres', + num_celular: 'El número de celular debe tener entre 8 y 10 caracteres' + } + + const path = error.details[0].path[0] + if (customErrorMessages[path]) { + errorMessage = customErrorMessages[path] + } + + toast.error(errorMessage, { + position: 'top-right', + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: false, + pauseOnFocusLoss: false, + draggable: true, + progress: undefined, + theme: 'colored', + className: 'text-sm' + }) + } + try { + await registerUser(data) + setNotify(true) + closeModal() + } catch (error) { + throw new Error(error) + } + } + + return ( + <> + +
+
+ + ) +} + +export { BitacoraModal, FilterModal, PasswordModal, InfoStudentModal, AsignTeacherModal, ModalConfirm, DenyModal, LoadingModal, AddTeacherModal } diff --git a/client/src/validation/addTeacherValidation.js b/client/src/validation/addTeacherValidation.js new file mode 100644 index 00000000..bebad702 --- /dev/null +++ b/client/src/validation/addTeacherValidation.js @@ -0,0 +1,13 @@ +import Joi from 'joi' + +const PASSWORD_REGEX = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[a-zA-Z]).{8,}$/ + +export const addTeacherValidation = Joi.object({ + nombre: Joi.string().required().min(3).max(50), + apellido: Joi.string().required().min(3).max(50), + num_documento: Joi.string().required().min(8).max(10), + correo_electronico: Joi.string().required().min(10).max(50), + num_celular: Joi.string().required().min(8).max(10), + id_rol: Joi.number().required(), + contrasena: Joi.string().min(8).max(300).pattern(PASSWORD_REGEX) +}) From d1eed493ff35088f8fa3123a2b445324c789dc9f Mon Sep 17 00:00:00 2001 From: Loren Q Date: Wed, 4 Oct 2023 18:42:26 -0500 Subject: [PATCH 005/128] v2.22.0-alpha --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 3e392ff8..19ea67fa 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.21.0-alpha", + "version": "2.22.0-alpha", "type": "module", "scripts": { "dev": "vite --open", From 542211e4900ee86f6ee08ae8d2aac5f955d548c1 Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Thu, 5 Oct 2023 09:59:11 -0500 Subject: [PATCH 006/128] fix: allow null in detail info student --- client/package.json | 2 +- client/src/components/Info-student/InfoStudent.jsx | 13 ++++++------- server/package.json | 2 +- server/src/controllers/students.controllers.ts | 2 +- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/client/package.json b/client/package.json index 3e392ff8..7e22f979 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.21.0-alpha", + "version": "2.21.1-alpha", "type": "module", "scripts": { "dev": "vite --open", diff --git a/client/src/components/Info-student/InfoStudent.jsx b/client/src/components/Info-student/InfoStudent.jsx index ca3e55bc..773d98a2 100644 --- a/client/src/components/Info-student/InfoStudent.jsx +++ b/client/src/components/Info-student/InfoStudent.jsx @@ -101,27 +101,27 @@ export const InfoStudent = () => {

Empresa:

-

{nombre_empresa}

+

{nombre_empresa ?? 'No aplica'}

Jefe Inmediato:

-

{nombre_jefe}

+

{nombre_jefe ?? 'No aplica'}

Cargo:

-

{cargo_jefe}

+

{cargo_jefe ?? 'No aplica'}

Email:

-

{email_jefe}

+

{email_jefe ?? 'No aplica'}

Contacto:

-

{numero_contacto_jefe}

+

{numero_contacto_jefe ?? 'No aplica'}

ARL:

-

{nombre_arl}

+

{nombre_arl ?? 'No aplica'}

@@ -132,4 +132,3 @@ export const InfoStudent = () => { ) } - diff --git a/server/package.json b/server/package.json index 428e07c5..d8dbf7da 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "server", - "version": "3.20.0-alpha", + "version": "3.20.1-alpha", "type": "module", "description": "Back-end para el proyecto de practicas en el sena", "main": "./src/index.js", diff --git a/server/src/controllers/students.controllers.ts b/server/src/controllers/students.controllers.ts index 1df2a382..2f2b63c7 100644 --- a/server/src/controllers/students.controllers.ts +++ b/server/src/controllers/students.controllers.ts @@ -64,7 +64,7 @@ export const getDetailInfoStudent: RequestHandler<{}, Response, unknown> = async const { id } = req.params try { const [students] = await connection.query( - 'SELECT CONCAT(aprendices.nombre_aprendiz, " ", aprendices.apellido_aprendiz) AS nombre_completo, aprendices.email_aprendiz, aprendices.numero_documento_aprendiz, aprendices.celular_aprendiz, fichas.nombre_programa_formacion, fichas.numero_ficha, niveles_formacion.nivel_formacion, CASE WHEN fichas.fecha_inicio_practica >= fichas.fecha_fin_lectiva THEN "Prácticas" ELSE "Lectiva" END AS etapa_formacion, fichas.fecha_fin_lectiva, fichas.fecha_inicio_practica, modalidades.nombre_modalidad, empresas.nombre_empresa, jefes.nombre_jefe, jefes.cargo_jefe, jefes.email_jefe, jefes.numero_contacto_jefe, arl.nombre_arl FROM aprendices INNER JOIN detalle_fichas_aprendices ON aprendices.id_aprendiz = detalle_fichas_aprendices.id_aprendiz INNER JOIN fichas ON detalle_fichas_aprendices.id_ficha = fichas.id_ficha INNER JOIN niveles_formacion ON fichas.id_nivel_formacion = niveles_formacion.id_nivel_formacion INNER JOIN modalidades ON modalidades.id_modalidad = aprendices.id_modalidad INNER JOIN empresas ON aprendices.id_empresa = empresas.id_empresa INNER JOIN jefes ON aprendices.id_jefe = jefes.id_jefe INNER JOIN arl ON aprendices.id_arl = arl.id_arl WHERE aprendices.id_aprendiz = ?', + 'SELECT CONCAT(aprendices.nombre_aprendiz, " ", aprendices.apellido_aprendiz) AS nombre_completo, aprendices.email_aprendiz, aprendices.numero_documento_aprendiz, aprendices.celular_aprendiz, fichas.nombre_programa_formacion, fichas.numero_ficha, niveles_formacion.nivel_formacion, CASE WHEN fichas.fecha_inicio_practica >= fichas.fecha_fin_lectiva THEN "Prácticas" ELSE "Lectiva" END AS etapa_formacion, fichas.fecha_fin_lectiva, fichas.fecha_inicio_practica, modalidades.nombre_modalidad, empresas.nombre_empresa, jefes.nombre_jefe, jefes.cargo_jefe, jefes.email_jefe, jefes.numero_contacto_jefe, arl.nombre_arl FROM aprendices LEFT JOIN detalle_fichas_aprendices ON aprendices.id_aprendiz = detalle_fichas_aprendices.id_aprendiz LEFT JOIN fichas ON detalle_fichas_aprendices.id_ficha = fichas.id_ficha LEFT JOIN niveles_formacion ON fichas.id_nivel_formacion = niveles_formacion.id_nivel_formacion LEFT JOIN modalidades ON modalidades.id_modalidad = aprendices.id_modalidad LEFT JOIN empresas ON aprendices.id_empresa = empresas.id_empresa LEFT JOIN jefes ON aprendices.id_jefe = jefes.id_jefe LEFT JOIN arl ON aprendices.id_arl = arl.id_arl WHERE aprendices.id_aprendiz = ?', [id] ) if (!Array.isArray(students) || students?.length === 0) throw new DbErrorNotFound('Error al conseguir la información del estudiante.', errorCodes.ERROR_GET_STUDENTS) From e7986267f6ad225f736cd9b0a3f3934967e95811 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 10:42:22 -0500 Subject: [PATCH 007/128] feat: added date_format to the query to convert the dates --- server/src/controllers/classes.controllers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/controllers/classes.controllers.ts b/server/src/controllers/classes.controllers.ts index 6a7833d5..86c01017 100644 --- a/server/src/controllers/classes.controllers.ts +++ b/server/src/controllers/classes.controllers.ts @@ -20,7 +20,7 @@ import { type ResultSetHeader } from 'mysql2' */ export const getClasses = async (_req: Request, res: Response): Promise => { try { - const [classes] = await connection.query('SELECT fichas.id_ficha, fichas.numero_ficha, fichas.nombre_programa_formacion, fichas.fecha_fin_lectiva, fichas.fecha_inicio_practica,niveles_formacion.nivel_formacion, CASE WHEN curdate() > fichas.fecha_fin_lectiva THEN "Práctica" ELSE "Lectiva" END AS estado, COALESCE(CONCAT(usuarios_seguimiento.nombres_usuario, " ", usuarios_seguimiento.apellidos_usuario), "Sin asignar") AS seguimiento_nombre_completo, COALESCE(CONCAT(usuarios_lider.nombres_usuario, " ", usuarios_lider.apellidos_usuario), "Sin asignar") AS lider_nombre_completo FROM fichas INNER JOIN niveles_formacion ON fichas.id_nivel_formacion = niveles_formacion.id_nivel_formacion LEFT JOIN usuarios AS usuarios_seguimiento ON fichas.id_instructor_seguimiento = usuarios_seguimiento.id_usuario LEFT JOIN usuarios AS usuarios_lider ON fichas.id_instructor_lider = usuarios_lider.id_usuario') + const [classes] = await connection.query('SELECT fichas.id_ficha, fichas.numero_ficha, fichas.nombre_programa_formacion, DATE_FORMAT(fichas.fecha_fin_lectiva, "%Y-%m-%d") as fecha_fin_lectiva, DATE_FORMAT(fichas.fecha_inicio_practica, "%Y-%m-%d") as fecha_inicio_practica,niveles_formacion.nivel_formacion, CASE WHEN curdate() > fichas.fecha_fin_lectiva THEN "Práctica" ELSE "Lectiva" END AS estado, COALESCE(CONCAT(usuarios_seguimiento.nombres_usuario, " ", usuarios_seguimiento.apellidos_usuario), "Sin asignar") AS seguimiento_nombre_completo, COALESCE(CONCAT(usuarios_lider.nombres_usuario, " ", usuarios_lider.apellidos_usuario), "Sin asignar") AS lider_nombre_completo FROM fichas INNER JOIN niveles_formacion ON fichas.id_nivel_formacion = niveles_formacion.id_nivel_formacion LEFT JOIN usuarios AS usuarios_seguimiento ON fichas.id_instructor_seguimiento = usuarios_seguimiento.id_usuario LEFT JOIN usuarios AS usuarios_lider ON fichas.id_instructor_lider = usuarios_lider.id_usuario') if (!Array.isArray(classes) || classes?.length === 0) throw new DbErrorNotFound('No hay fichas registradas.', errorCodes.ERROR_GET_CLASSES) return res.status(httpStatus.OK).json({ data: classes }) } catch (error) { From 2f5388b689b8cab992e7d91c5f651edf9584de62 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 10:44:38 -0500 Subject: [PATCH 008/128] fix: accessibility route "/fichas". --- client/src/components/Courses/Courses.jsx | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/client/src/components/Courses/Courses.jsx b/client/src/components/Courses/Courses.jsx index 78fc1fc7..2f0fd9b4 100644 --- a/client/src/components/Courses/Courses.jsx +++ b/client/src/components/Courses/Courses.jsx @@ -249,15 +249,15 @@ export const Courses = () => { if (filter === 'Hoy') { const today = new Date() filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_fin_lectiva) - return courseDate.toDateString() === today.toDateString() + const courseDate = new Date(course.fecha_fin_lectiva + 'T00:00:00') + return courseDate.getFullYear() === today.getFullYear() && courseDate.getMonth() === today.getMonth() && courseDate.getDate() === today.getDate() }) } else if (filter === 'Esta Semana') { const today = new Date() const nextWeek = new Date(today) nextWeek.setDate(today.getDate() + 7) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_fin_lectiva) + const courseDate = new Date(course.fecha_fin_lectiva + 'T00:00:00') return courseDate.toDateString() >= today.toDateString() && courseDate <= nextWeek }) } else if (filter === 'Próxima Semana') { @@ -267,7 +267,7 @@ export const Courses = () => { const weekAfterNext = new Date(nextWeek) weekAfterNext.setDate(nextWeek.getDate() + 7) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_fin_lectiva) + const courseDate = new Date(course.fecha_fin_lectiva + 'T00:00:00') return courseDate >= nextWeek && courseDate <= weekAfterNext }) } else if (filter === 'Este Mes') { @@ -275,7 +275,7 @@ export const Courses = () => { const firstDayOfMonth = new Date(today.getFullYear(), today.getMonth(), 1) const lastDayOfMonth = new Date(today.getFullYear(), today.getMonth() + 1, 0) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_fin_lectiva) + const courseDate = new Date(course.fecha_fin_lectiva + 'T00:00:00') return courseDate >= firstDayOfMonth && courseDate <= lastDayOfMonth }) } else if (filter === 'Próximo Mes') { @@ -283,7 +283,7 @@ export const Courses = () => { const nextMonth = new Date(today.getFullYear(), today.getMonth() + 1, 1) const endOfMonth = new Date(today.getFullYear(), today.getMonth() + 2, 0) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_fin_lectiva) + const courseDate = new Date(course.fecha_fin_lectiva + 'T00:00:00') return courseDate >= nextMonth && courseDate <= endOfMonth }) } @@ -296,15 +296,15 @@ export const Courses = () => { if (filter === 'Hoy') { const today = new Date() filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_inicio_practica) - return courseDate.toDateString() === today.toDateString() + const courseDate = new Date(course.fecha_inicio_practica + 'T00:00:00') + return courseDate.getFullYear() === today.getFullYear() && courseDate.getMonth() === today.getMonth() && courseDate.getDate() === today.getDate() }) } else if (filter === 'Esta Semana') { const today = new Date() const nextWeek = new Date(today) nextWeek.setDate(today.getDate() + 7) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_inicio_practica) + const courseDate = new Date(course.fecha_inicio_practica + 'T00:00:00') return courseDate.toDateString() >= today.toDateString() && courseDate <= nextWeek }) } else if (filter === 'Próxima Semana') { @@ -314,7 +314,7 @@ export const Courses = () => { const weekAfterNext = new Date(nextWeek) weekAfterNext.setDate(nextWeek.getDate() + 7) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_inicio_practica) + const courseDate = new Date(course.fecha_inicio_practica + 'T00:00:00') return courseDate >= nextWeek && courseDate <= weekAfterNext }) } else if (filter === 'Este Mes') { @@ -322,7 +322,7 @@ export const Courses = () => { const firstDayOfMonth = new Date(today.getFullYear(), today.getMonth(), 1) const lastDayOfMonth = new Date(today.getFullYear(), today.getMonth() + 1, 0) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_inicio_practica) + const courseDate = new Date(course.fecha_inicio_practica + 'T00:00:00') return courseDate >= firstDayOfMonth && courseDate <= lastDayOfMonth }) } else if (filter === 'Próximo Mes') { @@ -330,7 +330,7 @@ export const Courses = () => { const nextMonth = new Date(today.getFullYear(), today.getMonth() + 1, 1) const endOfMonth = new Date(today.getFullYear(), today.getMonth() + 2, 0) filterMap = coursesOriginal.filter((course) => { - const courseDate = new Date(course.fecha_inicio_practica) + const courseDate = new Date(course.fecha_inicio_practica + 'T00:00:00') return courseDate >= nextMonth && courseDate <= endOfMonth }) } @@ -392,7 +392,7 @@ export const Courses = () => {
  • handleFilterType('nivel', 'Técnico')}> Técnica
  • -
  • handleFilterType('nivel', 'Tecnólogo')}> +
  • handleFilterType('nivel', 'Tecnología')}> Tecnólogo
  • @@ -467,11 +467,11 @@ export const Courses = () => {
    {searchedCourses.length > 0 && !error ? ( searchedCourses.slice(startIndex, endIndex).map((course, i) => { - return handleStudents(course.numero_ficha)} item1text={'Instructor de seguimiento'} item2text={'Instructor Lider'} item3text={'Final Lectiva'} item4text={'Inicio Practica'} /> + return handleStudents(course.numero_ficha)} item1text={'Instructor de seguimiento'} item2text={'Instructor Lider'} item3text={'Final Lectiva'} item4text={'Inicio Practica'} /> }) ) : courses.length > 0 ? ( courses.slice(startIndex, endIndex).map((course, i) => { - return handleStudents(course.numero_ficha)} item1text={'Instructor de seguimiento'} item2text={'Instructor Lider'} item3text={'Final Lectiva'} item4text={'Inicio Practica'} /> + return handleStudents(course.numero_ficha)} item1text={'Instructor de seguimiento'} item2text={'Instructor Lider'} item3text={'Final Lectiva'} item4text={'Inicio Practica'} /> }) ) : loading ? ( From cb91b9dfd921d9103a3858e67fa4d02f838950d2 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 10:45:21 -0500 Subject: [PATCH 009/128] v3.21.0-alpha --- server/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/package.json b/server/package.json index 428e07c5..d3039ab4 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "server", - "version": "3.20.0-alpha", + "version": "3.21.0-alpha", "type": "module", "description": "Back-end para el proyecto de practicas en el sena", "main": "./src/index.js", From e3d6eee6e8f3949952b6231482fd253dce023ba4 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 10:45:47 -0500 Subject: [PATCH 010/128] v2.22.1-alpha --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 19ea67fa..74d232e4 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.22.0-alpha", + "version": "2.22.1-alpha", "type": "module", "scripts": { "dev": "vite --open", From 404348e4fb85938dbcf1e7147edd6032c7eebf35 Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Thu, 5 Oct 2023 11:03:28 -0500 Subject: [PATCH 011/128] fix(#76): avoid creating the same user and toast --- .../Register-detail/RegisterDetails.jsx | 17 +- .../controllers/inscriptions.controllers.ts | 19 +- server/src/db/db.sql | 247 +++++++++--------- 3 files changed, 155 insertions(+), 128 deletions(-) diff --git a/client/src/components/Register-detail/RegisterDetails.jsx b/client/src/components/Register-detail/RegisterDetails.jsx index 8ea83bdc..5cf75488 100644 --- a/client/src/components/Register-detail/RegisterDetails.jsx +++ b/client/src/components/Register-detail/RegisterDetails.jsx @@ -328,9 +328,12 @@ const Coordinador = ({ idRol, avalCoordinador }) => { */ const fetchInfo = async () => { try { + console.log(test) + console.log(avalCoordinador) const res = await getAvalById(avalCoordinador) const { data } = res.data const idPayload = data[0].responsable_aval + console.log(idPayload, data) if (idPayload !== null) { getCoordinatorName(idPayload) } @@ -341,11 +344,14 @@ const Coordinador = ({ idRol, avalCoordinador }) => { } const getCoordinatorName = async (payload) => { + console.log(payload) try { const res = await getCoordinatorNameByID(payload) const { nombre_completo } = res.data + console.log('nombre', nombre_completo) setCoordinatorFullName(nombre_completo) } catch (error) { + console.log('elll') toast.error('Error al conseguir los datos del aval') } } @@ -614,10 +620,8 @@ const Coordinador = ({ idRol, avalCoordinador }) => { const acceptApprove = async (payload, toastId) => { const estado_aval = { Si: 'Aprobado', No: 'Rechazado' } const id = payload.avalCoordinador - const cookie = Cookies.get('token') - const { id_usuario: responsable } = decode(cookie).data.user - const data = { estado_aval: estado_aval[payload.approveOption], observaciones: payload.observations, responsable_aval: responsable } + const data = { estado_aval: estado_aval[payload.approveOption], observaciones: payload.observations } try { await inscriptionDetailsUpdate(id, data) await sendEmail({ to: 'blandon0207s@outlook.com', htmlData: [null, { nombre_inscripcion: dataAprendiz[0].nombre_inscripcion, apellido_inscripcion: dataAprendiz[0].apellido_inscripcion, observations: payload.observations }], subject: 'Aceptado de solicitud de inscripción de etapa práctica' }) @@ -629,8 +633,15 @@ const Coordinador = ({ idRol, avalCoordinador }) => { } } + const [test, setTest] = useState(null) + + useEffect(() => { + console.log(test) + }, [test]) const saveSelectOnChange = async (e) => { try { + console.log(e) + setTest(e) await inscriptionDetailsUpdate(avalCoordinador, { responsable_aval: e }) toast.success('Instructor guardado correctamente', { isLoading: false, autoClose: 3000, hideProgressBar: false, closeOnClick: true, pauseOnHover: false, draggable: false, progress: undefined, theme: 'colored', closeButton: true, className: 'text-base' }) fetchInfo() diff --git a/server/src/controllers/inscriptions.controllers.ts b/server/src/controllers/inscriptions.controllers.ts index 8900c664..6f9687d0 100644 --- a/server/src/controllers/inscriptions.controllers.ts +++ b/server/src/controllers/inscriptions.controllers.ts @@ -4,7 +4,7 @@ import { connection } from '../config/db.js' import { httpStatus } from '../models/httpStatus.enums.js' import { handleHTTP } from '../errors/errorsHandler.js' import { type CustomError, DbErrorNotFound, DbError, DataNotValid } from '../errors/customErrors.js' -import { type RowDataPacket } from 'mysql2' +import { type ResultSetHeader, type RowDataPacket } from 'mysql2' import { errorCodes } from '../models/errorCodes.enums.js' /** @@ -157,12 +157,25 @@ export const createInscriptions: RequestHandler<{}, Response, inscriptionData> = export const editInscriptionDetail: RequestHandler<{}, Response, inscripcionDetailData> = async (req: Request, res: Response) => { const { id } = req.params const { estado_aval, observaciones, responsable_aval } = req.body + if (responsable_aval !== undefined) { + await editInscriptionDetailUser(responsable_aval, id, res) + return + } try { - const [result] = await connection.query('UPDATE detalles_inscripciones SET estado_aval = IFNULL(?, estado_aval), observaciones = IFNULL(?, observaciones), responsable_aval = IFNULL(?, responsable_aval) WHERE id_detalle_inscripcion = ?', [estado_aval, observaciones, responsable_aval, id]) + const [result] = await connection.query('UPDATE detalles_inscripciones SET estado_aval = IFNULL(?, estado_aval), observaciones = IFNULL(?, observaciones) WHERE id_detalle_inscripcion = ?', [estado_aval, observaciones, id]) if (!Array.isArray(result) && result?.affectedRows === 0) throw new DbError('No se pudo actualizar la modalidad de etapa práctica') return res.status(httpStatus.OK).json({ message: 'Aval de inscripción actualizada con éxito' }) } catch (error) { - console.log(error) + return handleHTTP(res, error as CustomError) + } +} + +export const editInscriptionDetailUser = async (idUser: number, idInscriptionDetail: string, res: Response): Promise => { + try { + const [result] = await connection.query('UPDATE detalles_inscripciones SET responsable_aval = ? WHERE id_detalle_inscripcion = ?', [idUser, idInscriptionDetail]) + if (result.affectedRows === 0) throw new DbError('No se actualizó con éxtio del responsable') + return res.status(httpStatus.OK).json({ message: 'Aval de inscripción actualizada con éxito' }) + } catch (error) { return handleHTTP(res, error as CustomError) } } diff --git a/server/src/db/db.sql b/server/src/db/db.sql index 3f54c52a..196f7df4 100644 --- a/server/src/db/db.sql +++ b/server/src/db/db.sql @@ -47,7 +47,7 @@ CREATE TABLE `aprendices` ( CONSTRAINT `aprendices_ibfk_2` FOREIGN KEY (`id_modalidad`) REFERENCES `modalidades` (`id_modalidad`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `aprendices_ibfk_3` FOREIGN KEY (`id_jefe`) REFERENCES `jefes` (`id_jefe`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `aprendices_ibfk_4` FOREIGN KEY (`id_arl`) REFERENCES `arl` (`id_arl`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -56,7 +56,7 @@ CREATE TABLE `aprendices` ( LOCK TABLES `aprendices` WRITE; /*!40000 ALTER TABLE `aprendices` DISABLE KEYS */; -INSERT INTO `aprendices` VALUES (1,'Lorena','Quiceno Giraldo','CC','1028882894','lorenquiceno@gmail.com','3245887367','2023-11-02','Prácticas',1,1,1,1),(2,'Stiven','Benjumea','CC','1028882444','stevenbenjumea9@gmail.com','3245880123','2023-11-02','Prácticas',1,2,1,1),(3,'Stiven','Blandón Urrego','CC','1017924888','blandon0207s@gmail.com','3183577499','2023-11-02','Prácticas',1,3,1,1),(4,'Juan Guillermo','Gomez Zapata','CC','1027800913','juanlestar0408@gmail.com','3006953395','2023-10-05','Prácticas',1,4,1,1),(5,'Eyson','Quiceno Giraldo','CC','1092925678','eysonquiceno@gmail.com','3135189268','2024-12-06','Lectiva',1,5,1,1),(6,'natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','2023-12-02','Practicas',4,5,5,2),(7,'Santiago','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046389966','2023-04-14','Terminado',NULL,3,NULL,3); +INSERT INTO `aprendices` VALUES (1,'Lorena','Quiceno Giraldo','CC','1028882894','lorenquiceno@gmail.com','3245887367','2023-11-02','Prácticas',1,1,1,1),(2,'Stiven','Benjumea','CC','1028882444','stevenbenjumea9@gmail.com','3245880123','2023-11-02','Prácticas',1,2,1,1),(3,'Stiven','Blandón Urrego','CC','1017924888','blandon0207s@gmail.com','3183577499','2023-11-02','Prácticas',1,3,1,1),(4,'Juan Guillermo','Gomez Zapata','CC','1027800913','juanlestar0408@gmail.com','3006953395','2023-10-05','Prácticas',1,4,1,1),(5,'Eyson','Quiceno Giraldo','CC','1092925678','eysonquiceno@gmail.com','3135189268','2024-12-06','Lectiva',1,5,1,1),(6,'natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','2023-12-02','Practicas',4,5,5,2),(7,'Santiago','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046389966','2023-04-14','Terminado',NULL,3,NULL,3),(8,'Santiago','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046389966','2023-04-14','Terminado',NULL,3,NULL,3),(9,'miguel angel ','alzate Vargas ','CC','70567911','miangelalzate@gmial.com ','3006543721','2023-01-01','Terminado',5,3,6,1),(10,'miguel angel ','alzate Vargas ','CC','70567911','miangelalzate@gmial.com ','3006543721','2023-01-01','Terminado',5,3,10,1),(11,'Jonny Arturo','Sanchez Velez','CC','8071368','sanchezjonny325@gmail.com','3135234754','2024-01-18','Practicas',6,5,11,2),(12,'LINA MARIA','SANCHEZ GOMEZ','CC','1002126946','slina9406@gmail.com','3046200595','2023-02-02','Terminado',NULL,3,NULL,3),(13,'LINA MARIA','SANCHEZ GOMEZ','CC','1002126946','slina9406@gmail.com','3046200595','2023-02-02','Terminado',NULL,3,NULL,3); /*!40000 ALTER TABLE `aprendices` ENABLE KEYS */; UNLOCK TABLES; @@ -304,7 +304,7 @@ CREATE TABLE `detalle_empresas` ( `id_detalle_empresa` int NOT NULL AUTO_INCREMENT, `direccion_sede_empresa` varchar(500) DEFAULT NULL, PRIMARY KEY (`id_detalle_empresa`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -313,7 +313,7 @@ CREATE TABLE `detalle_empresas` ( LOCK TABLES `detalle_empresas` WRITE; /*!40000 ALTER TABLE `detalle_empresas` DISABLE KEYS */; -INSERT INTO `detalle_empresas` VALUES (1,'El poblado'),(3,'Calle 46 # 41-70'),(5,'autopista sur calle29# 41-15 Itagüí Antioquia'); +INSERT INTO `detalle_empresas` VALUES (1,'El poblado'),(3,'Calle 46 # 41-70'),(5,'autopista sur calle29# 41-15 Itagüí Antioquia'),(7,'VEREDA CHAHFRUTO RIONEGRO '),(8,'calle 6 sur #50c 104'); /*!40000 ALTER TABLE `detalle_empresas` ENABLE KEYS */; UNLOCK TABLES; @@ -334,7 +334,7 @@ CREATE TABLE `detalle_fichas_aprendices` ( KEY `id_aprendiz` (`id_aprendiz`), CONSTRAINT `detalle_fichas_aprendices_ibfk_1` FOREIGN KEY (`id_ficha`) REFERENCES `fichas` (`id_ficha`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `detalle_fichas_aprendices_ibfk_2` FOREIGN KEY (`id_aprendiz`) REFERENCES `aprendices` (`id_aprendiz`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -343,7 +343,7 @@ CREATE TABLE `detalle_fichas_aprendices` ( LOCK TABLES `detalle_fichas_aprendices` WRITE; /*!40000 ALTER TABLE `detalle_fichas_aprendices` DISABLE KEYS */; -INSERT INTO `detalle_fichas_aprendices` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,2,6),(7,3,7); +INSERT INTO `detalle_fichas_aprendices` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,2,6),(7,3,7),(8,3,8),(9,4,9),(11,4,10),(12,5,11),(13,6,12),(14,6,13); /*!40000 ALTER TABLE `detalle_fichas_aprendices` ENABLE KEYS */; UNLOCK TABLES; @@ -378,7 +378,7 @@ CREATE TABLE `detalles_inscripciones` ( LOCK TABLES `detalles_inscripciones` WRITE; /*!40000 ALTER TABLE `detalles_inscripciones` DISABLE KEYS */; -INSERT INTO `detalles_inscripciones` VALUES (1,'1','Aprobado','Ta bien',1,1,'Documento completo','2023-09-11 15:24:25'),(2,'1','Rechazado','Ta malo',1,1,'RAPS aprobados','2023-09-11 15:11:56'),(3,NULL,'Pendiente',NULL,1,3,'Funciones','2023-09-08 15:53:07'),(4,'6','Pendiente',NULL,1,2,'Aval','2023-09-08 15:53:07'),(5,'1','Pendiente',NULL,2,1,'Documento completo','2023-09-08 15:53:07'),(6,'1','Pendiente',NULL,2,1,'RAPS aprobados','2023-09-08 15:53:07'),(7,NULL,'Pendiente',NULL,2,3,'Funciones','2023-09-08 15:53:07'),(8,'8','Rechazado','Todo mal',2,2,'Aval','2023-09-11 16:14:57'),(9,'1','Pendiente',NULL,3,1,'Documento completo','2023-09-08 15:53:07'),(10,'1','Pendiente',NULL,3,1,'RAPS aprobados','2023-09-08 15:53:07'),(11,NULL,'Pendiente',NULL,3,3,'Funciones','2023-09-08 15:53:07'),(12,'6','Pendiente',NULL,3,2,'Aval','2023-09-08 15:53:07'),(13,'1','Pendiente',NULL,4,1,'Documento completo','2023-09-08 15:53:07'),(14,'1','Pendiente',NULL,4,1,'RAPS aprobados','2023-09-08 15:53:07'),(15,NULL,'Pendiente',NULL,4,3,'Funciones','2023-09-08 15:53:07'),(16,'6','Pendiente',NULL,4,2,'Aval','2023-09-08 15:53:07'),(17,'1','Pendiente',NULL,5,1,'Documento completo','2023-09-08 15:53:07'),(18,'1','Pendiente',NULL,5,1,'RAPS aprobados','2023-09-08 15:53:07'),(19,NULL,'Pendiente',NULL,5,3,'Funciones','2023-09-08 15:53:07'),(20,'6','Pendiente',NULL,5,2,'Aval','2023-09-08 15:53:07'),(21,'1','Pendiente',NULL,6,1,'Documento completo','2023-09-08 15:53:07'),(22,'1','Rechazado','No ha terminado los raps',6,1,'RAPS aprobados','2023-09-08 20:40:44'),(23,NULL,'Pendiente',NULL,6,3,'Funciones','2023-09-08 15:53:07'),(24,'6','Pendiente',NULL,6,2,'Aval','2023-09-08 15:53:07'),(25,'1','Pendiente',NULL,7,1,'Documento completo','2023-09-08 15:53:07'),(26,'1','Pendiente',NULL,7,1,'RAPS aprobados','2023-09-08 15:53:07'),(27,NULL,'Pendiente',NULL,7,3,'Funciones','2023-09-08 15:53:07'),(28,'6','Pendiente',NULL,7,2,'Aval','2023-09-08 15:53:07'),(29,'1','Pendiente',NULL,8,1,'Documento completo','2023-09-08 15:53:07'),(30,'1','Pendiente',NULL,8,1,'RAPS aprobados','2023-09-08 15:53:07'),(31,NULL,'Pendiente',NULL,8,3,'Funciones','2023-09-08 15:53:07'),(32,'6','Pendiente',NULL,8,2,'Aval','2023-09-08 15:53:07'),(33,'1','Pendiente',NULL,9,1,'Documento completo','2023-09-08 15:53:07'),(34,'1','Pendiente',NULL,9,1,'RAPS aprobados','2023-09-08 15:53:07'),(35,NULL,'Pendiente',NULL,9,3,'Funciones','2023-09-08 15:53:07'),(36,'6','Pendiente',NULL,9,2,'Aval','2023-09-08 15:53:07'),(37,'1','Pendiente',NULL,10,1,'Documento completo','2023-09-08 15:53:07'),(38,'1','Pendiente',NULL,10,1,'RAPS aprobados','2023-09-08 15:53:07'),(39,NULL,'Pendiente',NULL,10,3,'Funciones','2023-09-08 15:53:07'),(40,'6','Pendiente',NULL,10,2,'Aval','2023-09-08 15:53:07'),(41,'1','Pendiente',NULL,11,1,'Documento completo','2023-09-08 15:53:07'),(42,'1','Pendiente',NULL,11,1,'RAPS aprobados','2023-09-08 15:53:07'),(43,NULL,'Pendiente',NULL,11,3,'Funciones','2023-09-08 15:53:07'),(44,'6','Pendiente',NULL,11,2,'Aval','2023-09-08 15:53:07'),(45,'1','Pendiente',NULL,12,1,'Documento completo','2023-09-08 15:53:07'),(46,'1','Pendiente',NULL,12,1,'RAPS aprobados','2023-09-08 15:53:07'),(47,NULL,'Pendiente',NULL,12,3,'Funciones','2023-09-08 15:53:07'),(48,'6','Pendiente',NULL,12,2,'Aval','2023-09-08 15:53:07'),(49,'1','Pendiente',NULL,13,1,'Documento completo','2023-09-08 15:53:07'),(50,'1','Pendiente',NULL,13,1,'RAPS aprobados','2023-09-08 15:53:07'),(51,NULL,'Pendiente',NULL,13,3,'Funciones','2023-09-08 15:53:07'),(52,'6','Pendiente',NULL,13,2,'Aval','2023-09-08 15:53:07'),(53,'1','Pendiente',NULL,14,1,'Documento completo','2023-09-08 15:53:07'),(54,'1','Pendiente',NULL,14,1,'RAPS aprobados','2023-09-08 15:53:07'),(55,NULL,'Pendiente',NULL,14,3,'Funciones','2023-09-08 15:53:07'),(56,'6','Pendiente',NULL,14,2,'Aval','2023-09-08 15:53:07'),(57,'1','Pendiente',NULL,15,1,'Documento completo','2023-09-08 15:53:07'),(58,'1','Pendiente',NULL,15,1,'RAPS aprobados','2023-09-08 15:53:07'),(59,NULL,'Pendiente',NULL,15,3,'Funciones','2023-09-08 15:53:07'),(60,'6','Pendiente',NULL,15,2,'Aval','2023-09-08 15:53:07'),(61,'1','Pendiente',NULL,16,1,'Documento completo','2023-09-08 15:53:07'),(62,'1','Pendiente',NULL,16,1,'RAPS aprobados','2023-09-08 15:53:07'),(63,NULL,'Pendiente',NULL,16,3,'Funciones','2023-09-08 15:53:07'),(64,'6','Pendiente',NULL,16,2,'Aval','2023-09-08 15:53:07'),(65,'1','Pendiente',NULL,17,1,'Documento completo','2023-09-08 15:53:07'),(66,'1','Pendiente',NULL,17,1,'RAPS aprobados','2023-09-08 15:53:07'),(67,NULL,'Pendiente',NULL,17,3,'Funciones','2023-09-08 15:53:07'),(68,'6','Pendiente',NULL,17,2,'Aval','2023-09-08 15:53:07'),(69,'1','Pendiente',NULL,18,1,'Documento completo','2023-09-08 15:53:07'),(70,'1','Pendiente',NULL,18,1,'RAPS aprobados','2023-09-08 15:53:07'),(71,NULL,'Pendiente',NULL,18,3,'Funciones','2023-09-08 15:53:07'),(72,'6','Pendiente',NULL,18,2,'Aval','2023-09-08 15:53:07'),(73,'1','Pendiente',NULL,19,1,'Documento completo','2023-09-08 15:53:07'),(74,'1','Pendiente',NULL,19,1,'RAPS aprobados','2023-09-08 15:53:07'),(75,NULL,'Pendiente',NULL,19,3,'Funciones','2023-09-08 15:53:07'),(76,'6','Pendiente',NULL,19,2,'Aval','2023-09-08 15:53:07'),(77,'1','Pendiente',NULL,20,1,'Documento completo','2023-09-08 15:53:07'),(78,'1','Pendiente',NULL,20,1,'RAPS aprobados','2023-09-08 15:53:07'),(79,NULL,'Pendiente',NULL,20,3,'Funciones','2023-09-08 15:53:07'),(80,'6','Pendiente',NULL,20,2,'Aval','2023-09-08 15:53:07'),(81,'1','Pendiente',NULL,21,1,'Documento completo','2023-09-08 15:53:07'),(82,'1','Pendiente',NULL,21,1,'RAPS aprobados','2023-09-08 15:53:07'),(83,NULL,'Pendiente',NULL,21,3,'Funciones','2023-09-08 15:53:07'),(84,'6','Pendiente',NULL,21,2,'Aval','2023-09-08 15:53:07'),(85,'1','Pendiente',NULL,22,1,'Documento completo','2023-09-08 15:53:07'),(86,'1','Pendiente',NULL,22,1,'RAPS aprobados','2023-09-08 15:53:07'),(87,NULL,'Pendiente',NULL,22,3,'Funciones','2023-09-08 15:53:07'),(88,'6','Pendiente',NULL,22,2,'Aval','2023-09-08 15:53:07'),(89,'1','Pendiente',NULL,23,1,'Documento completo','2023-09-08 15:53:07'),(90,'1','Pendiente',NULL,23,1,'RAPS aprobados','2023-09-08 15:53:07'),(91,NULL,'Pendiente',NULL,23,3,'Funciones','2023-09-08 15:53:07'),(92,'6','Pendiente',NULL,23,2,'Aval','2023-09-08 15:53:07'),(93,'1','Pendiente',NULL,24,1,'Documento completo','2023-09-08 15:53:07'),(94,'1','Pendiente',NULL,24,1,'RAPS aprobados','2023-09-08 15:53:07'),(95,NULL,'Pendiente',NULL,24,3,'Funciones','2023-09-08 15:53:07'),(96,'6','Pendiente',NULL,24,2,'Aval','2023-09-08 15:53:07'),(97,'1','Pendiente',NULL,25,1,'Documento completo','2023-09-08 15:53:07'),(98,'1','Pendiente',NULL,25,1,'RAPS aprobados','2023-09-08 15:53:07'),(99,NULL,'Pendiente',NULL,25,3,'Funciones','2023-09-08 15:53:07'),(100,'6','Pendiente',NULL,25,2,'Aval','2023-09-08 15:53:07'),(101,'1','Pendiente',NULL,26,1,'Documento completo','2023-09-08 15:53:07'),(102,'1','Pendiente',NULL,26,1,'RAPS aprobados','2023-09-08 15:53:07'),(103,NULL,'Pendiente',NULL,26,3,'Funciones','2023-09-08 15:53:07'),(104,'6','Pendiente',NULL,26,2,'Aval','2023-09-08 15:53:07'),(105,'1','Pendiente',NULL,27,1,'Documento completo','2023-09-08 15:53:07'),(106,'1','Pendiente',NULL,27,1,'RAPS aprobados','2023-09-08 15:53:07'),(107,NULL,'Pendiente',NULL,27,3,'Funciones','2023-09-08 15:53:07'),(108,'6','Pendiente',NULL,27,2,'Aval','2023-09-08 15:53:07'),(109,'1','Pendiente',NULL,28,1,'Documento completo','2023-09-08 15:53:07'),(110,'1','Pendiente',NULL,28,1,'RAPS aprobados','2023-09-08 15:53:07'),(111,NULL,'Pendiente',NULL,28,3,'Funciones','2023-09-08 15:53:07'),(112,'6','Pendiente',NULL,28,2,'Aval','2023-09-08 15:53:07'),(113,'1','Pendiente',NULL,29,1,'Documento completo','2023-09-08 15:53:07'),(114,'1','Pendiente',NULL,29,1,'RAPS aprobados','2023-09-08 15:53:07'),(115,NULL,'Pendiente',NULL,29,3,'Funciones','2023-09-08 15:53:07'),(116,'6','Pendiente',NULL,29,2,'Aval','2023-09-08 15:53:07'),(117,'1','Pendiente',NULL,30,1,'Documento completo','2023-09-08 15:53:07'),(118,'1','Pendiente',NULL,30,1,'RAPS aprobados','2023-09-08 15:53:07'),(119,NULL,'Pendiente',NULL,30,3,'Funciones','2023-09-08 15:53:07'),(120,'6','Pendiente',NULL,30,2,'Aval','2023-09-08 15:53:07'),(121,'1','Pendiente',NULL,31,1,'Documento completo','2023-09-08 15:53:07'),(122,'1','Pendiente',NULL,31,1,'RAPS aprobados','2023-09-08 15:53:07'),(123,NULL,'Pendiente',NULL,31,3,'Funciones','2023-09-08 15:53:07'),(124,'6','Pendiente',NULL,31,2,'Aval','2023-09-08 15:53:07'),(125,'1','Pendiente',NULL,32,1,'Documento completo','2023-09-08 15:53:07'),(126,'1','Pendiente',NULL,32,1,'RAPS aprobados','2023-09-08 15:53:07'),(127,NULL,'Pendiente',NULL,32,3,'Funciones','2023-09-08 15:53:07'),(128,'6','Pendiente',NULL,32,2,'Aval','2023-09-08 15:53:07'),(129,'1','Pendiente',NULL,33,1,'Documento completo','2023-09-08 15:53:07'),(130,'1','Pendiente',NULL,33,1,'RAPS aprobados','2023-09-08 15:53:07'),(131,NULL,'Pendiente',NULL,33,3,'Funciones','2023-09-08 15:53:07'),(132,'6','Pendiente',NULL,33,2,'Aval','2023-09-08 15:53:07'),(133,'1','Pendiente',NULL,34,1,'Documento completo','2023-09-08 15:53:07'),(134,'1','Pendiente',NULL,34,1,'RAPS aprobados','2023-09-08 15:53:07'),(135,NULL,'Pendiente',NULL,34,3,'Funciones','2023-09-08 15:53:07'),(136,'6','Pendiente',NULL,34,2,'Aval','2023-09-08 15:53:07'),(137,'1','Pendiente',NULL,35,1,'Documento completo','2023-09-08 15:53:07'),(138,'1','Pendiente',NULL,35,1,'RAPS aprobados','2023-09-08 15:53:07'),(139,NULL,'Pendiente',NULL,35,3,'Funciones','2023-09-08 15:53:07'),(140,'6','Pendiente',NULL,35,2,'Aval','2023-09-08 15:53:07'),(141,'1','Pendiente',NULL,36,1,'Documento completo','2023-09-08 15:53:07'),(142,'1','Pendiente',NULL,36,1,'RAPS aprobados','2023-09-08 15:53:07'),(143,NULL,'Pendiente',NULL,36,3,'Funciones','2023-09-08 15:53:07'),(144,'6','Pendiente',NULL,36,2,'Aval','2023-09-08 15:53:07'),(145,'1','Pendiente',NULL,37,1,'Documento completo','2023-09-08 15:53:07'),(146,'1','Pendiente',NULL,37,1,'RAPS aprobados','2023-09-08 15:53:07'),(147,NULL,'Pendiente',NULL,37,3,'Funciones','2023-09-08 15:53:07'),(148,'6','Pendiente',NULL,37,2,'Aval','2023-09-08 15:53:07'),(149,'1','Pendiente',NULL,38,1,'Documento completo','2023-09-08 15:53:07'),(150,'1','Pendiente',NULL,38,1,'RAPS aprobados','2023-09-08 15:53:07'),(151,NULL,'Pendiente',NULL,38,3,'Funciones','2023-09-08 15:53:07'),(152,'6','Pendiente',NULL,38,2,'Aval','2023-09-08 15:53:07'),(153,'1','Pendiente',NULL,39,1,'Documento completo','2023-09-08 15:53:07'),(154,'1','Pendiente',NULL,39,1,'RAPS aprobados','2023-09-08 15:53:07'),(155,NULL,'Pendiente',NULL,39,3,'Funciones','2023-09-08 15:53:07'),(156,'6','Pendiente',NULL,39,2,'Aval','2023-09-08 15:53:07'),(157,'1','Pendiente',NULL,40,1,'Documento completo','2023-09-08 15:53:07'),(158,'1','Pendiente',NULL,40,1,'RAPS aprobados','2023-09-08 15:53:07'),(159,NULL,'Pendiente',NULL,40,3,'Funciones','2023-09-08 15:53:07'),(160,'6','Pendiente',NULL,40,2,'Aval','2023-09-08 15:53:07'),(161,'1','Pendiente',NULL,41,1,'Documento completo','2023-09-08 15:53:07'),(162,'1','Pendiente',NULL,41,1,'RAPS aprobados','2023-09-08 15:53:07'),(163,NULL,'Pendiente',NULL,41,3,'Funciones','2023-09-08 15:53:07'),(164,'6','Pendiente',NULL,41,2,'Aval','2023-09-08 15:53:07'),(165,'1','Pendiente',NULL,42,1,'Documento completo','2023-09-08 15:53:07'),(166,'1','Pendiente',NULL,42,1,'RAPS aprobados','2023-09-08 15:53:07'),(167,NULL,'Pendiente',NULL,42,3,'Funciones','2023-09-08 15:53:07'),(168,'6','Pendiente',NULL,42,2,'Aval','2023-09-08 15:53:07'),(169,'1','Pendiente',NULL,43,1,'Documento completo','2023-09-08 15:53:07'),(170,'1','Pendiente',NULL,43,1,'RAPS aprobados','2023-09-08 15:53:07'),(171,NULL,'Pendiente',NULL,43,3,'Funciones','2023-09-08 15:53:07'),(172,'6','Pendiente',NULL,43,2,'Aval','2023-09-08 15:53:07'),(173,'1','Pendiente',NULL,44,1,'Documento completo','2023-09-08 15:53:07'),(174,'1','Pendiente',NULL,44,1,'RAPS aprobados','2023-09-08 15:53:07'),(175,NULL,'Pendiente',NULL,44,3,'Funciones','2023-09-08 15:53:07'),(176,'6','Pendiente',NULL,44,2,'Aval','2023-09-08 15:53:07'),(177,'1','Pendiente',NULL,45,1,'Documento completo','2023-09-08 15:53:07'),(178,'1','Pendiente',NULL,45,1,'RAPS aprobados','2023-09-08 15:53:07'),(179,NULL,'Pendiente',NULL,45,3,'Funciones','2023-09-08 15:53:07'),(180,'6','Pendiente',NULL,45,2,'Aval','2023-09-08 15:53:07'),(181,'1','Pendiente',NULL,46,1,'Documento completo','2023-09-08 15:53:07'),(182,'1','Pendiente',NULL,46,1,'RAPS aprobados','2023-09-08 15:53:07'),(183,NULL,'Pendiente',NULL,46,3,'Funciones','2023-09-08 15:53:07'),(184,'6','Pendiente',NULL,46,2,'Aval','2023-09-08 15:53:07'),(185,'1','Pendiente',NULL,47,1,'Documento completo','2023-09-08 15:53:07'),(186,'1','Pendiente',NULL,47,1,'RAPS aprobados','2023-09-08 15:53:07'),(187,NULL,'Pendiente',NULL,47,3,'Funciones','2023-09-08 15:53:07'),(188,'6','Pendiente',NULL,47,2,'Aval','2023-09-08 15:53:07'),(189,'1','Pendiente',NULL,48,1,'Documento completo','2023-09-08 15:53:07'),(190,'1','Pendiente',NULL,48,1,'RAPS aprobados','2023-09-08 15:53:07'),(191,NULL,'Pendiente',NULL,48,3,'Funciones','2023-09-08 15:53:07'),(192,'6','Pendiente',NULL,48,2,'Aval','2023-09-08 15:53:07'),(193,'1','Pendiente',NULL,49,1,'Documento completo','2023-09-08 15:53:07'),(194,'1','Pendiente',NULL,49,1,'RAPS aprobados','2023-09-08 15:53:07'),(195,NULL,'Pendiente',NULL,49,3,'Funciones','2023-09-08 15:53:07'),(196,'6','Pendiente',NULL,49,2,'Aval','2023-09-08 15:53:07'),(197,'1','Pendiente',NULL,50,1,'Documento completo','2023-09-08 15:53:07'),(198,'1','Pendiente',NULL,50,1,'RAPS aprobados','2023-09-08 15:53:07'),(199,NULL,'Pendiente',NULL,50,3,'Funciones','2023-09-08 15:53:07'),(200,'6','Pendiente',NULL,50,2,'Aval','2023-09-08 15:53:07'),(201,'1','Pendiente',NULL,51,1,'Documento completo','2023-09-08 15:53:07'),(202,'1','Pendiente',NULL,51,1,'RAPS aprobados','2023-09-08 15:53:07'),(203,NULL,'Pendiente',NULL,51,3,'Funciones','2023-09-08 15:53:07'),(204,'6','Pendiente',NULL,51,2,'Aval','2023-09-08 15:53:07'),(205,'1','Pendiente',NULL,52,1,'Documento completo','2023-09-08 15:53:07'),(206,'1','Pendiente',NULL,52,1,'RAPS aprobados','2023-09-08 15:53:07'),(207,NULL,'Pendiente',NULL,52,3,'Funciones','2023-09-08 15:53:07'),(208,'6','Pendiente',NULL,52,2,'Aval','2023-09-08 15:53:07'),(209,'1','Aprobado','Ta bien',53,1,'Documento completo','2023-10-02 17:24:03'),(210,'1','Aprobado','Ta bien',53,1,'RAPS aprobados','2023-10-02 17:23:58'),(211,'10','Aprobado','Ta bien',53,3,'Funciones','2023-10-03 13:55:30'),(212,'1','Aprobado','Ta bien',53,2,'Aval','2023-10-03 18:04:13'),(213,'1','Pendiente',NULL,54,1,'Documento completo','2023-09-08 15:53:08'),(214,'1','Pendiente',NULL,54,1,'RAPS aprobados','2023-09-08 15:53:08'),(215,'1','Rechazado','Ta malo',54,3,'Funciones','2023-10-02 16:49:05'),(216,'6','Pendiente',NULL,54,2,'Aval','2023-09-08 15:53:08'),(217,'1','Pendiente',NULL,55,1,'Documento completo','2023-09-08 15:53:08'),(218,'1','Pendiente',NULL,55,1,'RAPS aprobados','2023-09-08 15:53:08'),(219,'1','Rechazado','nao',55,3,'Funciones','2023-10-02 19:20:17'),(220,'6','Pendiente',NULL,55,2,'Aval','2023-09-08 15:53:08'),(221,'1','Aprobado','ds',56,1,'Documento completo','2023-10-03 18:26:30'),(222,'1','Aprobado','za',56,1,'RAPS aprobados','2023-10-03 18:26:26'),(223,'1','Aprobado','gc',56,3,'Funciones','2023-10-03 18:26:33'),(224,'1','Aprobado','d',56,2,'Aval','2023-10-03 18:26:44'),(225,'1','Aprobado','zi',57,1,'Documento completo','2023-10-03 18:27:54'),(226,'1','Aprobado','zi',57,1,'RAPS aprobados','2023-10-03 18:27:50'),(227,'1','Aprobado','zi',57,3,'Funciones','2023-10-03 18:27:59'),(228,'6','Aprobado','zi',57,2,'Aval','2023-10-03 18:32:57'),(229,'1','Aprobado','Ta bien',58,1,'Documento completo','2023-10-03 18:39:23'),(230,'1','Aprobado','Ta bien',58,1,'RAPS aprobados','2023-10-03 18:39:18'),(231,'1','Aprobado','Ta bien',58,3,'Funciones','2023-10-03 18:39:28'),(232,'1','Aprobado','s',58,2,'Aval','2023-10-03 19:01:29'),(233,'1','Aprobado','s',59,1,'Documento completo','2023-10-03 18:50:22'),(234,'1','Aprobado','s',59,1,'RAPS aprobados','2023-10-03 18:50:16'),(235,'1','Aprobado','s',59,3,'Funciones','2023-10-03 18:50:23'),(236,'1','Aprobado','s',59,2,'Aval','2023-10-03 18:58:54'),(237,'1','Aprobado','s',60,1,'Documento completo','2023-10-03 19:03:04'),(238,'1','Aprobado','s',60,1,'RAPS aprobados','2023-10-03 19:02:57'),(239,'1','Aprobado','s',60,3,'Funciones','2023-10-03 19:03:05'),(240,'1','Aprobado','Todo correcto',60,2,'Aval','2023-10-03 19:08:08'),(241,'1','Aprobado','s',61,1,'Documento completo','2023-10-03 18:45:09'),(242,'1','Aprobado','s',61,1,'RAPS aprobados','2023-10-03 18:45:05'),(243,'1','Aprobado','s',61,3,'Funciones','2023-10-03 18:45:12'),(244,'1','Aprobado','s',61,2,'Aval','2023-10-03 18:46:36'),(245,'1','Aprobado','Ta bien',62,1,'Documento completo','2023-10-03 20:28:02'),(246,'1','Aprobado','Ta bien',62,1,'RAPS aprobados','2023-10-03 20:27:56'),(247,'1','Aprobado','Ta bien',62,3,'Funciones','2023-10-03 20:28:08'),(248,'1','Aprobado','si',62,2,'Aval','2023-10-03 20:42:27'),(249,'1','Aprobado','s',63,1,'Documento completo','2023-10-04 13:53:46'),(250,'1','Aprobado','SI',63,1,'RAPS aprobados','2023-10-04 13:59:36'),(251,'1','Aprobado','s',63,3,'Funciones','2023-10-04 13:53:50'),(252,'1','Aprobado','Todo correcto',63,2,'Aval','2023-10-04 13:54:05'),(253,'1','Pendiente',NULL,64,1,'Documento completo','2023-09-08 15:53:08'),(254,'1','Pendiente',NULL,64,1,'RAPS aprobados','2023-09-08 15:53:08'),(255,NULL,'Pendiente',NULL,64,3,'Funciones','2023-09-08 15:53:08'),(256,'6','Pendiente',NULL,64,2,'Aval','2023-09-08 15:53:08'),(257,'1','Pendiente',NULL,65,1,'Documento completo','2023-09-08 15:53:08'),(258,'1','Pendiente',NULL,65,1,'RAPS aprobados','2023-09-08 15:53:08'),(259,NULL,'Pendiente',NULL,65,3,'Funciones','2023-09-08 15:53:08'),(260,'6','Pendiente',NULL,65,2,'Aval','2023-09-08 15:53:08'),(261,'1','Pendiente',NULL,66,1,'Documento completo','2023-09-08 15:53:08'),(262,'1','Pendiente',NULL,66,1,'RAPS aprobados','2023-09-08 15:53:08'),(263,NULL,'Pendiente',NULL,66,3,'Funciones','2023-09-08 15:53:08'),(264,'6','Pendiente',NULL,66,2,'Aval','2023-09-08 15:53:08'),(265,'1','Pendiente',NULL,67,1,'Documento completo','2023-09-08 15:53:08'),(266,'1','Pendiente',NULL,67,1,'RAPS aprobados','2023-09-08 15:53:08'),(267,NULL,'Pendiente',NULL,67,3,'Funciones','2023-09-08 15:53:08'),(268,'6','Pendiente',NULL,67,2,'Aval','2023-09-08 15:53:08'),(269,'1','Pendiente',NULL,68,1,'Documento completo','2023-09-08 15:53:08'),(270,'1','Pendiente',NULL,68,1,'RAPS aprobados','2023-09-08 15:53:08'),(271,NULL,'Pendiente',NULL,68,3,'Funciones','2023-09-08 15:53:08'),(272,'6','Pendiente',NULL,68,2,'Aval','2023-09-08 15:53:08'),(273,'1','Pendiente',NULL,69,1,'Documento completo','2023-09-08 15:53:08'),(274,'1','Pendiente',NULL,69,1,'RAPS aprobados','2023-09-08 15:53:08'),(275,NULL,'Pendiente',NULL,69,3,'Funciones','2023-09-08 15:53:08'),(276,'6','Pendiente',NULL,69,2,'Aval','2023-09-08 15:53:08'),(277,'1','Pendiente',NULL,70,1,'Documento completo','2023-09-08 15:53:08'),(278,'1','Pendiente',NULL,70,1,'RAPS aprobados','2023-09-08 15:53:08'),(279,NULL,'Pendiente',NULL,70,3,'Funciones','2023-09-08 15:53:08'),(280,'6','Pendiente',NULL,70,2,'Aval','2023-09-08 15:53:08'),(281,'1','Pendiente',NULL,71,1,'Documento completo','2023-09-08 15:53:08'),(282,'1','Pendiente',NULL,71,1,'RAPS aprobados','2023-09-08 15:53:08'),(283,NULL,'Pendiente',NULL,71,3,'Funciones','2023-09-08 15:53:08'),(284,'6','Pendiente',NULL,71,2,'Aval','2023-09-08 15:53:08'),(285,'1','Pendiente',NULL,72,1,'Documento completo','2023-09-08 15:53:08'),(286,'1','Pendiente',NULL,72,1,'RAPS aprobados','2023-09-08 15:53:08'),(287,NULL,'Pendiente',NULL,72,3,'Funciones','2023-09-08 15:53:08'),(288,'6','Pendiente',NULL,72,2,'Aval','2023-09-08 15:53:08'),(289,'1','Pendiente',NULL,73,1,'Documento completo','2023-09-08 15:53:08'),(290,'1','Pendiente',NULL,73,1,'RAPS aprobados','2023-09-08 15:53:08'),(291,NULL,'Pendiente',NULL,73,3,'Funciones','2023-09-08 15:53:08'),(292,'6','Pendiente',NULL,73,2,'Aval','2023-09-08 15:53:08'),(293,'1','Pendiente',NULL,74,1,'Documento completo','2023-09-08 15:53:08'),(294,'1','Pendiente',NULL,74,1,'RAPS aprobados','2023-09-08 15:53:08'),(295,NULL,'Pendiente',NULL,74,3,'Funciones','2023-09-08 15:53:08'),(296,'6','Pendiente',NULL,74,2,'Aval','2023-09-08 15:53:08'),(297,'1','Pendiente',NULL,75,1,'Documento completo','2023-09-08 15:53:08'),(298,'1','Pendiente',NULL,75,1,'RAPS aprobados','2023-09-08 15:53:08'),(299,NULL,'Pendiente',NULL,75,3,'Funciones','2023-09-08 15:53:08'),(300,'6','Pendiente',NULL,75,2,'Aval','2023-09-08 15:53:08'),(301,'1','Pendiente',NULL,76,1,'Documento completo','2023-09-08 15:53:08'),(302,'1','Pendiente',NULL,76,1,'RAPS aprobados','2023-09-08 15:53:08'),(303,NULL,'Pendiente',NULL,76,3,'Funciones','2023-09-08 15:53:08'),(304,'6','Pendiente',NULL,76,2,'Aval','2023-09-08 15:53:08'),(305,'1','Pendiente',NULL,77,1,'Documento completo','2023-09-08 15:53:08'),(306,'1','Pendiente',NULL,77,1,'RAPS aprobados','2023-09-08 15:53:08'),(307,NULL,'Pendiente',NULL,77,3,'Funciones','2023-09-08 15:53:08'),(308,'6','Pendiente',NULL,77,2,'Aval','2023-09-08 15:53:08'),(309,'1','Pendiente',NULL,78,1,'Documento completo','2023-09-08 15:53:08'),(310,'1','Pendiente',NULL,78,1,'RAPS aprobados','2023-09-08 15:53:08'),(311,NULL,'Pendiente',NULL,78,3,'Funciones','2023-09-08 15:53:08'),(312,'6','Pendiente',NULL,78,2,'Aval','2023-09-08 15:53:08'),(313,'1','Pendiente',NULL,79,1,'Documento completo','2023-09-08 15:53:08'),(314,'1','Pendiente',NULL,79,1,'RAPS aprobados','2023-09-08 15:53:08'),(315,NULL,'Pendiente',NULL,79,3,'Funciones','2023-09-08 15:53:08'),(316,'6','Pendiente',NULL,79,2,'Aval','2023-09-08 15:53:08'),(317,'1','Pendiente',NULL,80,1,'Documento completo','2023-09-08 15:53:08'),(318,'1','Pendiente',NULL,80,1,'RAPS aprobados','2023-09-08 15:53:08'),(319,NULL,'Pendiente',NULL,80,3,'Funciones','2023-09-08 15:53:08'),(320,'6','Pendiente',NULL,80,2,'Aval','2023-09-08 15:53:08'),(321,'1','Pendiente',NULL,81,1,'Documento completo','2023-09-08 15:53:08'),(322,'1','Pendiente',NULL,81,1,'RAPS aprobados','2023-09-08 15:53:08'),(323,NULL,'Pendiente',NULL,81,3,'Funciones','2023-09-08 15:53:08'),(324,'6','Pendiente',NULL,81,2,'Aval','2023-09-08 15:53:08'),(325,'1','Pendiente',NULL,82,1,'Documento completo','2023-09-08 15:53:08'),(326,'1','Pendiente',NULL,82,1,'RAPS aprobados','2023-09-08 15:53:08'),(327,NULL,'Pendiente',NULL,82,3,'Funciones','2023-09-08 15:53:08'),(328,'6','Pendiente',NULL,82,2,'Aval','2023-09-08 15:53:08'),(329,'1','Pendiente',NULL,83,1,'Documento completo','2023-09-08 15:53:08'),(330,'1','Pendiente',NULL,83,1,'RAPS aprobados','2023-09-08 15:53:08'),(331,NULL,'Pendiente',NULL,83,3,'Funciones','2023-09-08 15:53:08'),(332,'6','Pendiente',NULL,83,2,'Aval','2023-09-08 15:53:08'),(333,'1','Pendiente',NULL,84,1,'Documento completo','2023-09-08 15:53:08'),(334,'1','Pendiente',NULL,84,1,'RAPS aprobados','2023-09-08 15:53:08'),(335,NULL,'Pendiente',NULL,84,3,'Funciones','2023-09-08 15:53:08'),(336,'6','Pendiente',NULL,84,2,'Aval','2023-09-08 15:53:08'),(337,'1','Pendiente',NULL,85,1,'Documento completo','2023-09-08 15:53:08'),(338,'1','Pendiente',NULL,85,1,'RAPS aprobados','2023-09-08 15:53:08'),(339,NULL,'Pendiente',NULL,85,3,'Funciones','2023-09-08 15:53:08'),(340,'6','Pendiente',NULL,85,2,'Aval','2023-09-08 15:53:08'),(341,'1','Pendiente',NULL,86,1,'Documento completo','2023-09-08 15:53:08'),(342,'1','Pendiente',NULL,86,1,'RAPS aprobados','2023-09-08 15:53:08'),(343,NULL,'Pendiente',NULL,86,3,'Funciones','2023-09-08 15:53:08'),(344,'6','Pendiente',NULL,86,2,'Aval','2023-09-08 15:53:08'),(345,'1','Pendiente',NULL,87,1,'Documento completo','2023-09-08 15:53:08'),(346,'1','Pendiente',NULL,87,1,'RAPS aprobados','2023-09-08 15:53:08'),(347,NULL,'Pendiente',NULL,87,3,'Funciones','2023-09-08 15:53:08'),(348,'6','Pendiente',NULL,87,2,'Aval','2023-09-08 15:53:08'),(349,'1','Pendiente',NULL,88,1,'Documento completo','2023-09-08 15:53:08'),(350,'1','Pendiente',NULL,88,1,'RAPS aprobados','2023-09-08 15:53:08'),(351,NULL,'Pendiente',NULL,88,3,'Funciones','2023-09-08 15:53:08'),(352,'6','Pendiente',NULL,88,2,'Aval','2023-09-08 15:53:08'),(353,'1','Pendiente',NULL,89,1,'Documento completo','2023-09-08 15:53:08'),(354,'1','Pendiente',NULL,89,1,'RAPS aprobados','2023-09-08 15:53:08'),(355,NULL,'Pendiente',NULL,89,3,'Funciones','2023-09-08 15:53:08'),(356,'6','Pendiente',NULL,89,2,'Aval','2023-09-08 15:53:08'),(357,'1','Pendiente',NULL,90,1,'Documento completo','2023-09-08 15:53:08'),(358,'1','Pendiente',NULL,90,1,'RAPS aprobados','2023-09-08 15:53:08'),(359,NULL,'Pendiente',NULL,90,3,'Funciones','2023-09-08 15:53:08'),(360,'6','Pendiente',NULL,90,2,'Aval','2023-09-08 15:53:08'),(361,'1','Pendiente',NULL,91,1,'Documento completo','2023-09-08 15:53:08'),(362,'1','Aprobado','Ola',91,1,'RAPS aprobados','2023-09-08 17:19:38'),(363,NULL,'Pendiente',NULL,91,3,'Funciones','2023-09-08 15:53:08'),(364,'6','Pendiente',NULL,91,2,'Aval','2023-09-08 15:53:08'),(365,'1','Pendiente',NULL,92,1,'Documento completo','2023-09-08 15:53:08'),(366,'1','Pendiente',NULL,92,1,'RAPS aprobados','2023-09-08 15:53:08'),(367,NULL,'Pendiente',NULL,92,3,'Funciones','2023-09-08 15:53:08'),(368,'6','Pendiente',NULL,92,2,'Aval','2023-09-08 15:53:08'),(369,'1','Pendiente',NULL,93,1,'Documento completo','2023-09-08 15:53:08'),(370,'1','Pendiente',NULL,93,1,'RAPS aprobados','2023-09-08 15:53:08'),(371,NULL,'Pendiente',NULL,93,3,'Funciones','2023-09-08 15:53:08'),(372,'6','Pendiente',NULL,93,2,'Aval','2023-09-08 15:53:08'),(373,'1','Pendiente',NULL,94,1,'Documento completo','2023-09-08 15:53:08'),(374,'1','Pendiente',NULL,94,1,'RAPS aprobados','2023-09-08 15:53:08'),(375,NULL,'Pendiente',NULL,94,3,'Funciones','2023-09-08 15:53:08'),(376,'6','Pendiente',NULL,94,2,'Aval','2023-09-08 15:53:08'),(377,'1','Pendiente',NULL,95,1,'Documento completo','2023-09-08 15:53:08'),(378,'1','Pendiente',NULL,95,1,'RAPS aprobados','2023-09-08 15:53:08'),(379,NULL,'Pendiente',NULL,95,3,'Funciones','2023-09-08 15:53:08'),(380,'6','Pendiente',NULL,95,2,'Aval','2023-09-08 15:53:08'),(381,'1','Aprobado','Ta bien',96,1,'Documento completo','2023-10-04 14:01:37'),(382,'1','Aprobado','Melo',96,1,'RAPS aprobados','2023-10-04 14:01:32'),(383,'1','Aprobado','Funca',96,3,'Funciones','2023-10-04 14:01:40'),(384,'1','Aprobado','Ta bien',96,2,'Aval','2023-10-04 14:22:02'),(385,'1','Pendiente',NULL,97,1,'Documento completo','2023-09-08 15:53:08'),(386,'1','Pendiente',NULL,97,1,'RAPS aprobados','2023-09-08 15:53:08'),(387,NULL,'Pendiente',NULL,97,3,'Funciones','2023-09-08 15:53:08'),(388,'6','Pendiente',NULL,97,2,'Aval','2023-09-08 15:53:08'),(389,'1','Pendiente',NULL,98,1,'Documento completo','2023-09-08 15:53:08'),(390,'1','Pendiente',NULL,98,1,'RAPS aprobados','2023-09-08 15:53:08'),(391,NULL,'Pendiente',NULL,98,3,'Funciones','2023-09-08 15:53:08'),(392,'6','Pendiente',NULL,98,2,'Aval','2023-09-08 15:53:08'),(393,'1','Pendiente',NULL,99,1,'Documento completo','2023-09-08 15:53:08'),(394,'1','Pendiente',NULL,99,1,'RAPS aprobados','2023-09-08 15:53:08'),(395,NULL,'Pendiente',NULL,99,3,'Funciones','2023-09-08 15:53:08'),(396,'6','Pendiente',NULL,99,2,'Aval','2023-09-08 15:53:08'),(397,'1','Pendiente',NULL,100,1,'Documento completo','2023-09-08 15:53:08'),(398,'1','Pendiente',NULL,100,1,'RAPS aprobados','2023-09-08 15:53:08'),(399,NULL,'Pendiente',NULL,100,3,'Funciones','2023-09-08 15:53:08'),(400,'6','Pendiente',NULL,100,2,'Aval','2023-09-08 15:53:08'),(401,'1','Pendiente',NULL,101,1,'Documento completo','2023-09-08 15:53:08'),(402,'1','Pendiente',NULL,101,1,'RAPS aprobados','2023-09-08 15:53:08'),(403,NULL,'Pendiente',NULL,101,3,'Funciones','2023-09-08 15:53:08'),(404,'6','Pendiente',NULL,101,2,'Aval','2023-09-08 15:53:08'),(405,'1','Pendiente',NULL,102,1,'Documento completo','2023-09-08 15:53:08'),(406,'1','Pendiente',NULL,102,1,'RAPS aprobados','2023-09-08 15:53:08'),(407,NULL,'Pendiente',NULL,102,3,'Funciones','2023-09-08 15:53:08'),(408,'6','Pendiente',NULL,102,2,'Aval','2023-09-08 15:53:08'),(409,'1','Pendiente',NULL,103,1,'Documento completo','2023-09-08 15:53:08'),(410,'1','Pendiente',NULL,103,1,'RAPS aprobados','2023-09-08 15:53:08'),(411,NULL,'Pendiente',NULL,103,3,'Funciones','2023-09-08 15:53:08'),(412,'6','Pendiente',NULL,103,2,'Aval','2023-09-08 15:53:08'),(413,'1','Pendiente',NULL,104,1,'Documento completo','2023-09-08 15:53:08'),(414,'1','Pendiente',NULL,104,1,'RAPS aprobados','2023-09-08 15:53:08'),(415,NULL,'Pendiente',NULL,104,3,'Funciones','2023-09-08 15:53:08'),(416,'6','Pendiente',NULL,104,2,'Aval','2023-09-08 15:53:08'),(417,'1','Pendiente',NULL,105,1,'Documento completo','2023-09-08 15:53:08'),(418,'1','Pendiente',NULL,105,1,'RAPS aprobados','2023-09-08 15:53:08'),(419,NULL,'Pendiente',NULL,105,3,'Funciones','2023-09-08 15:53:08'),(420,'6','Pendiente',NULL,105,2,'Aval','2023-09-08 15:53:08'),(421,'1','Pendiente',NULL,106,1,'Documento completo','2023-09-08 15:53:08'),(422,'1','Pendiente',NULL,106,1,'RAPS aprobados','2023-09-08 15:53:08'),(423,NULL,'Pendiente',NULL,106,3,'Funciones','2023-09-08 15:53:08'),(424,'6','Pendiente',NULL,106,2,'Aval','2023-09-08 15:53:08'),(425,'1','Pendiente',NULL,107,1,'Documento completo','2023-09-08 15:53:08'),(426,'1','Pendiente',NULL,107,1,'RAPS aprobados','2023-09-08 15:53:08'),(427,NULL,'Pendiente',NULL,107,3,'Funciones','2023-09-08 15:53:08'),(428,'6','Pendiente',NULL,107,2,'Aval','2023-09-08 15:53:08'),(429,'1','Pendiente',NULL,108,1,'Documento completo','2023-09-08 15:53:08'),(430,'1','Pendiente',NULL,108,1,'RAPS aprobados','2023-09-08 15:53:08'),(431,NULL,'Pendiente',NULL,108,3,'Funciones','2023-09-08 15:53:08'),(432,'6','Pendiente',NULL,108,2,'Aval','2023-09-08 15:53:08'),(433,'1','Pendiente',NULL,109,1,'Documento completo','2023-09-08 15:53:08'),(434,'1','Pendiente',NULL,109,1,'RAPS aprobados','2023-09-08 15:53:08'),(435,NULL,'Pendiente',NULL,109,3,'Funciones','2023-09-08 15:53:08'),(436,'6','Pendiente',NULL,109,2,'Aval','2023-09-08 15:53:08'),(437,'1','Pendiente',NULL,110,1,'Documento completo','2023-09-08 15:53:08'),(438,'1','Pendiente',NULL,110,1,'RAPS aprobados','2023-09-08 15:53:08'),(439,NULL,'Pendiente',NULL,110,3,'Funciones','2023-09-08 15:53:08'),(440,'6','Pendiente',NULL,110,2,'Aval','2023-09-08 15:53:08'),(441,'1','Pendiente',NULL,111,1,'Documento completo','2023-09-08 15:53:08'),(442,'1','Pendiente',NULL,111,1,'RAPS aprobados','2023-09-08 15:53:08'),(443,NULL,'Pendiente',NULL,111,3,'Funciones','2023-09-08 15:53:08'),(444,'6','Pendiente',NULL,111,2,'Aval','2023-09-08 15:53:08'),(445,'1','Pendiente',NULL,112,1,'Documento completo','2023-09-08 15:53:08'),(446,'1','Pendiente',NULL,112,1,'RAPS aprobados','2023-09-08 15:53:08'),(447,NULL,'Pendiente',NULL,112,3,'Funciones','2023-09-08 15:53:08'),(448,'6','Pendiente',NULL,112,2,'Aval','2023-09-08 15:53:08'),(449,'1','Pendiente',NULL,113,1,'Documento completo','2023-09-08 15:53:08'),(450,'1','Pendiente',NULL,113,1,'RAPS aprobados','2023-09-08 15:53:08'),(451,NULL,'Pendiente',NULL,113,3,'Funciones','2023-09-08 15:53:08'),(452,'6','Pendiente',NULL,113,2,'Aval','2023-09-08 15:53:08'),(453,'1','Pendiente',NULL,114,1,'Documento completo','2023-09-08 15:53:08'),(454,'1','Pendiente',NULL,114,1,'RAPS aprobados','2023-09-08 15:53:08'),(455,NULL,'Pendiente',NULL,114,3,'Funciones','2023-09-08 15:53:08'),(456,'6','Pendiente',NULL,114,2,'Aval','2023-09-08 15:53:08'),(457,'1','Pendiente',NULL,115,1,'Documento completo','2023-09-08 15:53:08'),(458,'1','Pendiente',NULL,115,1,'RAPS aprobados','2023-09-08 15:53:08'),(459,NULL,'Pendiente',NULL,115,3,'Funciones','2023-09-08 15:53:08'),(460,'6','Pendiente',NULL,115,2,'Aval','2023-09-08 15:53:08'),(461,'1','Pendiente',NULL,116,1,'Documento completo','2023-09-08 15:53:08'),(462,'1','Pendiente',NULL,116,1,'RAPS aprobados','2023-09-08 15:53:08'),(463,NULL,'Pendiente',NULL,116,3,'Funciones','2023-09-08 15:53:08'),(464,'6','Pendiente',NULL,116,2,'Aval','2023-09-08 15:53:08'),(465,'1','Pendiente',NULL,117,1,'Documento completo','2023-09-08 15:53:08'),(466,'1','Pendiente',NULL,117,1,'RAPS aprobados','2023-09-08 15:53:08'),(467,NULL,'Pendiente',NULL,117,3,'Funciones','2023-09-08 15:53:08'),(468,'6','Pendiente',NULL,117,2,'Aval','2023-09-08 15:53:08'),(469,'1','Pendiente',NULL,118,1,'Documento completo','2023-09-08 15:53:08'),(470,'1','Pendiente',NULL,118,1,'RAPS aprobados','2023-09-08 15:53:08'),(471,NULL,'Pendiente',NULL,118,3,'Funciones','2023-09-08 15:53:08'),(472,'6','Pendiente',NULL,118,2,'Aval','2023-09-08 15:53:08'),(473,'1','Pendiente',NULL,119,1,'Documento completo','2023-09-08 15:53:08'),(474,'1','Pendiente',NULL,119,1,'RAPS aprobados','2023-09-08 15:53:08'),(475,NULL,'Pendiente',NULL,119,3,'Funciones','2023-09-08 15:53:08'),(476,'6','Pendiente',NULL,119,2,'Aval','2023-09-08 15:53:08'),(477,'1','Pendiente',NULL,120,1,'Documento completo','2023-09-08 15:53:08'),(478,'1','Pendiente',NULL,120,1,'RAPS aprobados','2023-09-08 15:53:08'),(479,NULL,'Pendiente',NULL,120,3,'Funciones','2023-09-08 15:53:08'),(480,'6','Pendiente',NULL,120,2,'Aval','2023-09-08 15:53:08'),(481,'1','Pendiente',NULL,121,1,'Documento completo','2023-09-08 15:53:08'),(482,'1','Pendiente',NULL,121,1,'RAPS aprobados','2023-09-08 15:53:08'),(483,NULL,'Pendiente',NULL,121,3,'Funciones','2023-09-08 15:53:08'),(484,'6','Pendiente',NULL,121,2,'Aval','2023-09-08 15:53:08'),(485,'1','Pendiente',NULL,122,1,'Documento completo','2023-09-08 15:53:08'),(486,'1','Pendiente',NULL,122,1,'RAPS aprobados','2023-09-08 15:53:08'),(487,NULL,'Pendiente',NULL,122,3,'Funciones','2023-09-08 15:53:08'),(488,'6','Pendiente',NULL,122,2,'Aval','2023-09-08 15:53:08'),(489,'1','Pendiente',NULL,123,1,'Documento completo','2023-09-08 15:53:08'),(490,'1','Pendiente',NULL,123,1,'RAPS aprobados','2023-09-08 15:53:08'),(491,NULL,'Pendiente',NULL,123,3,'Funciones','2023-09-08 15:53:08'),(492,'6','Pendiente',NULL,123,2,'Aval','2023-09-08 15:53:08'),(493,'1','Pendiente',NULL,124,1,'Documento completo','2023-09-08 15:53:08'),(494,'1','Pendiente',NULL,124,1,'RAPS aprobados','2023-09-08 15:53:08'),(495,NULL,'Pendiente',NULL,124,3,'Funciones','2023-09-08 15:53:08'),(496,'6','Pendiente',NULL,124,2,'Aval','2023-09-08 15:53:08'),(497,'1','Pendiente',NULL,125,1,'Documento completo','2023-09-08 15:53:08'),(498,'1','Pendiente',NULL,125,1,'RAPS aprobados','2023-09-08 15:53:08'),(499,NULL,'Pendiente',NULL,125,3,'Funciones','2023-09-08 15:53:08'),(500,'6','Pendiente',NULL,125,2,'Aval','2023-09-08 15:53:08'),(501,'1','Pendiente',NULL,126,1,'Documento completo','2023-09-08 15:53:08'),(502,'1','Pendiente',NULL,126,1,'RAPS aprobados','2023-09-08 15:53:08'),(503,NULL,'Pendiente',NULL,126,3,'Funciones','2023-09-08 15:53:08'),(504,'6','Pendiente',NULL,126,2,'Aval','2023-09-08 15:53:08'),(505,'1','Pendiente',NULL,127,1,'Documento completo','2023-09-08 15:53:08'),(506,'1','Pendiente',NULL,127,1,'RAPS aprobados','2023-09-08 15:53:08'),(507,NULL,'Pendiente',NULL,127,3,'Funciones','2023-09-08 15:53:08'),(508,'6','Pendiente',NULL,127,2,'Aval','2023-09-08 15:53:08'),(509,'1','Pendiente',NULL,128,1,'Documento completo','2023-09-08 15:53:08'),(510,'1','Pendiente',NULL,128,1,'RAPS aprobados','2023-09-08 15:53:08'),(511,NULL,'Pendiente',NULL,128,3,'Funciones','2023-09-08 15:53:08'),(512,'6','Pendiente',NULL,128,2,'Aval','2023-09-08 15:53:08'),(513,'1','Pendiente',NULL,129,1,'Documento completo','2023-09-08 15:53:08'),(514,'1','Pendiente',NULL,129,1,'RAPS aprobados','2023-09-08 15:53:08'),(515,NULL,'Pendiente',NULL,129,3,'Funciones','2023-09-08 15:53:08'),(516,'6','Pendiente',NULL,129,2,'Aval','2023-09-08 15:53:08'),(517,'1','Pendiente',NULL,130,1,'Documento completo','2023-09-08 15:53:08'),(518,'1','Pendiente',NULL,130,1,'RAPS aprobados','2023-09-08 15:53:08'),(519,NULL,'Pendiente',NULL,130,3,'Funciones','2023-09-08 15:53:08'),(520,'6','Pendiente',NULL,130,2,'Aval','2023-09-08 15:53:08'),(521,'1','Pendiente',NULL,131,1,'Documento completo','2023-09-08 15:53:08'),(522,'1','Pendiente',NULL,131,1,'RAPS aprobados','2023-09-08 15:53:08'),(523,NULL,'Pendiente',NULL,131,3,'Funciones','2023-09-08 15:53:08'),(524,'6','Pendiente',NULL,131,2,'Aval','2023-09-08 15:53:08'),(525,'1','Pendiente',NULL,132,1,'Documento completo','2023-09-08 15:53:08'),(526,'1','Pendiente',NULL,132,1,'RAPS aprobados','2023-09-08 15:53:08'),(527,NULL,'Pendiente',NULL,132,3,'Funciones','2023-09-08 15:53:08'),(528,'6','Pendiente',NULL,132,2,'Aval','2023-09-08 15:53:08'),(529,'1','Pendiente',NULL,133,1,'Documento completo','2023-09-08 15:53:08'),(530,'1','Pendiente',NULL,133,1,'RAPS aprobados','2023-09-08 15:53:08'),(531,NULL,'Pendiente',NULL,133,3,'Funciones','2023-09-08 15:53:08'),(532,'6','Pendiente',NULL,133,2,'Aval','2023-09-08 15:53:08'),(533,'1','Pendiente',NULL,134,1,'Documento completo','2023-09-08 15:53:08'),(534,'1','Pendiente',NULL,134,1,'RAPS aprobados','2023-09-08 15:53:08'),(535,NULL,'Pendiente',NULL,134,3,'Funciones','2023-09-08 15:53:08'),(536,'6','Pendiente',NULL,134,2,'Aval','2023-09-08 15:53:08'),(537,'1','Pendiente',NULL,135,1,'Documento completo','2023-09-08 15:53:08'),(538,'1','Pendiente',NULL,135,1,'RAPS aprobados','2023-09-08 15:53:08'),(539,NULL,'Pendiente',NULL,135,3,'Funciones','2023-09-08 15:53:08'),(540,'6','Pendiente',NULL,135,2,'Aval','2023-09-08 15:53:08'),(541,'1','Pendiente',NULL,136,1,'Documento completo','2023-09-08 15:53:08'),(542,'1','Pendiente',NULL,136,1,'RAPS aprobados','2023-09-08 15:53:08'),(543,NULL,'Pendiente',NULL,136,3,'Funciones','2023-09-08 15:53:08'),(544,'6','Pendiente',NULL,136,2,'Aval','2023-09-08 15:53:08'),(545,'1','Pendiente',NULL,137,1,'Documento completo','2023-09-08 15:53:08'),(546,'1','Pendiente',NULL,137,1,'RAPS aprobados','2023-09-08 15:53:08'),(547,NULL,'Pendiente',NULL,137,3,'Funciones','2023-09-08 15:53:08'),(548,'6','Pendiente',NULL,137,2,'Aval','2023-09-08 15:53:08'),(549,'1','Pendiente',NULL,138,1,'Documento completo','2023-09-08 15:53:08'),(550,'1','Pendiente',NULL,138,1,'RAPS aprobados','2023-09-08 15:53:08'),(551,NULL,'Pendiente',NULL,138,3,'Funciones','2023-09-08 15:53:08'),(552,'6','Pendiente',NULL,138,2,'Aval','2023-09-08 15:53:08'),(553,'1','Pendiente',NULL,139,1,'Documento completo','2023-09-08 15:53:08'),(554,'1','Pendiente',NULL,139,1,'RAPS aprobados','2023-09-08 15:53:08'),(555,NULL,'Pendiente',NULL,139,3,'Funciones','2023-09-08 15:53:08'),(556,'6','Pendiente',NULL,139,2,'Aval','2023-09-08 15:53:08'),(557,'1','Pendiente',NULL,140,1,'Documento completo','2023-09-08 15:53:08'),(558,'1','Pendiente',NULL,140,1,'RAPS aprobados','2023-09-08 15:53:08'),(559,NULL,'Pendiente',NULL,140,3,'Funciones','2023-09-08 15:53:08'),(560,'6','Pendiente',NULL,140,2,'Aval','2023-09-08 15:53:08'),(561,'1','Pendiente',NULL,141,1,'Documento completo','2023-09-08 15:53:08'),(562,'1','Pendiente',NULL,141,1,'RAPS aprobados','2023-09-08 15:53:08'),(563,NULL,'Pendiente',NULL,141,3,'Funciones','2023-09-08 15:53:08'),(564,'6','Pendiente',NULL,141,2,'Aval','2023-09-08 15:53:08'),(565,'1','Pendiente',NULL,142,1,'Documento completo','2023-09-08 15:53:08'),(566,'1','Pendiente',NULL,142,1,'RAPS aprobados','2023-09-08 15:53:08'),(567,NULL,'Pendiente',NULL,142,3,'Funciones','2023-09-08 15:53:08'),(568,'6','Pendiente',NULL,142,2,'Aval','2023-09-08 15:53:08'),(569,'1','Pendiente',NULL,143,1,'Documento completo','2023-09-08 15:53:08'),(570,'1','Pendiente',NULL,143,1,'RAPS aprobados','2023-09-08 15:53:08'),(571,NULL,'Pendiente',NULL,143,3,'Funciones','2023-09-08 15:53:08'),(572,'6','Pendiente',NULL,143,2,'Aval','2023-09-08 15:53:08'),(573,'1','Pendiente',NULL,144,1,'Documento completo','2023-09-08 15:53:08'),(574,'1','Pendiente',NULL,144,1,'RAPS aprobados','2023-09-08 15:53:08'),(575,NULL,'Pendiente',NULL,144,3,'Funciones','2023-09-08 15:53:08'),(576,'6','Pendiente',NULL,144,2,'Aval','2023-09-08 15:53:08'),(577,'1','Pendiente',NULL,145,1,'Documento completo','2023-09-08 15:53:08'),(578,'1','Pendiente',NULL,145,1,'RAPS aprobados','2023-09-08 15:53:08'),(579,NULL,'Pendiente',NULL,145,3,'Funciones','2023-09-08 15:53:08'),(580,'6','Pendiente',NULL,145,2,'Aval','2023-09-08 15:53:08'),(581,'1','Pendiente',NULL,146,1,'Documento completo','2023-09-08 15:53:08'),(582,'1','Pendiente',NULL,146,1,'RAPS aprobados','2023-09-08 15:53:08'),(583,NULL,'Pendiente',NULL,146,3,'Funciones','2023-09-08 15:53:08'),(584,'6','Pendiente',NULL,146,2,'Aval','2023-09-08 15:53:08'),(585,'1','Pendiente',NULL,147,1,'Documento completo','2023-09-08 15:53:08'),(586,'1','Pendiente',NULL,147,1,'RAPS aprobados','2023-09-08 15:53:08'),(587,NULL,'Pendiente',NULL,147,3,'Funciones','2023-09-08 15:53:08'),(588,'6','Pendiente',NULL,147,2,'Aval','2023-09-08 15:53:08'),(589,'1','Pendiente',NULL,148,1,'Documento completo','2023-09-08 15:53:08'),(590,'1','Pendiente',NULL,148,1,'RAPS aprobados','2023-09-08 15:53:08'),(591,NULL,'Pendiente',NULL,148,3,'Funciones','2023-09-08 15:53:08'),(592,'6','Pendiente',NULL,148,2,'Aval','2023-09-08 15:53:08'),(593,'1','Pendiente',NULL,149,1,'Documento completo','2023-09-08 15:53:08'),(594,'1','Pendiente',NULL,149,1,'RAPS aprobados','2023-09-08 15:53:08'),(595,NULL,'Pendiente',NULL,149,3,'Funciones','2023-09-08 15:53:08'),(596,'6','Pendiente',NULL,149,2,'Aval','2023-09-08 15:53:08'),(597,'1','Pendiente',NULL,150,1,'Documento completo','2023-09-08 15:53:08'),(598,'1','Pendiente',NULL,150,1,'RAPS aprobados','2023-09-08 15:53:08'),(599,NULL,'Pendiente',NULL,150,3,'Funciones','2023-09-08 15:53:08'),(600,'6','Pendiente',NULL,150,2,'Aval','2023-09-08 15:53:08'),(601,'1','Pendiente',NULL,151,1,'Documento completo','2023-09-08 15:53:08'),(602,'1','Pendiente',NULL,151,1,'RAPS aprobados','2023-09-08 15:53:08'),(603,NULL,'Pendiente',NULL,151,3,'Funciones','2023-09-08 15:53:08'),(604,'6','Pendiente',NULL,151,2,'Aval','2023-09-08 15:53:08'),(605,'1','Pendiente',NULL,152,1,'Documento completo','2023-09-08 15:53:08'),(606,'1','Pendiente',NULL,152,1,'RAPS aprobados','2023-09-08 15:53:08'),(607,NULL,'Pendiente',NULL,152,3,'Funciones','2023-09-08 15:53:08'),(608,'6','Pendiente',NULL,152,2,'Aval','2023-09-08 15:53:08'),(609,'1','Pendiente',NULL,153,1,'Documento completo','2023-09-08 15:53:08'),(610,'1','Pendiente',NULL,153,1,'RAPS aprobados','2023-09-08 15:53:08'),(611,NULL,'Pendiente',NULL,153,3,'Funciones','2023-09-08 15:53:08'),(612,'6','Pendiente',NULL,153,2,'Aval','2023-09-08 15:53:08'),(613,'1','Pendiente',NULL,154,1,'Documento completo','2023-09-08 15:53:08'),(614,'1','Pendiente',NULL,154,1,'RAPS aprobados','2023-09-08 15:53:08'),(615,NULL,'Pendiente',NULL,154,3,'Funciones','2023-09-08 15:53:08'),(616,'6','Pendiente',NULL,154,2,'Aval','2023-09-08 15:53:08'),(617,'1','Pendiente',NULL,155,1,'Documento completo','2023-09-08 15:53:08'),(618,'1','Pendiente',NULL,155,1,'RAPS aprobados','2023-09-08 15:53:08'),(619,NULL,'Pendiente',NULL,155,3,'Funciones','2023-09-08 15:53:08'),(620,'6','Pendiente',NULL,155,2,'Aval','2023-09-08 15:53:08'),(621,'1','Pendiente',NULL,156,1,'Documento completo','2023-09-08 15:53:08'),(622,'1','Pendiente',NULL,156,1,'RAPS aprobados','2023-09-08 15:53:08'),(623,NULL,'Pendiente',NULL,156,3,'Funciones','2023-09-08 15:53:08'),(624,'6','Pendiente',NULL,156,2,'Aval','2023-09-08 15:53:08'),(625,'1','Pendiente',NULL,157,1,'Documento completo','2023-09-08 15:53:08'),(626,'1','Pendiente',NULL,157,1,'RAPS aprobados','2023-09-08 15:53:08'),(627,NULL,'Pendiente',NULL,157,3,'Funciones','2023-09-08 15:53:08'),(628,'6','Pendiente',NULL,157,2,'Aval','2023-09-08 15:53:08'),(629,'1','Pendiente',NULL,158,1,'Documento completo','2023-09-08 15:53:08'),(630,'1','Pendiente',NULL,158,1,'RAPS aprobados','2023-09-08 15:53:08'),(631,NULL,'Pendiente',NULL,158,3,'Funciones','2023-09-08 15:53:08'),(632,'6','Pendiente',NULL,158,2,'Aval','2023-09-08 15:53:08'),(633,'1','Pendiente',NULL,159,1,'Documento completo','2023-09-08 15:53:08'),(634,'1','Pendiente',NULL,159,1,'RAPS aprobados','2023-09-08 15:53:08'),(635,NULL,'Pendiente',NULL,159,3,'Funciones','2023-09-08 15:53:08'),(636,'6','Pendiente',NULL,159,2,'Aval','2023-09-08 15:53:08'),(637,'1','Pendiente',NULL,160,1,'Documento completo','2023-09-08 15:53:08'),(638,'1','Pendiente',NULL,160,1,'RAPS aprobados','2023-09-08 15:53:08'),(639,NULL,'Pendiente',NULL,160,3,'Funciones','2023-09-08 15:53:08'),(640,'6','Pendiente',NULL,160,2,'Aval','2023-09-08 15:53:08'),(641,'1','Pendiente',NULL,161,1,'Documento completo','2023-09-08 15:53:08'),(642,'1','Pendiente',NULL,161,1,'RAPS aprobados','2023-09-08 15:53:08'),(643,NULL,'Pendiente',NULL,161,3,'Funciones','2023-09-08 15:53:08'),(644,'6','Pendiente',NULL,161,2,'Aval','2023-09-08 15:53:08'),(645,'1','Pendiente',NULL,162,1,'Documento completo','2023-09-08 15:53:08'),(646,'1','Pendiente',NULL,162,1,'RAPS aprobados','2023-09-08 15:53:08'),(647,NULL,'Pendiente',NULL,162,3,'Funciones','2023-09-08 15:53:08'),(648,'6','Pendiente',NULL,162,2,'Aval','2023-09-08 15:53:08'),(649,'1','Pendiente',NULL,163,1,'Documento completo','2023-09-08 15:53:08'),(650,'1','Pendiente',NULL,163,1,'RAPS aprobados','2023-09-08 15:53:08'),(651,NULL,'Pendiente',NULL,163,3,'Funciones','2023-09-08 15:53:08'),(652,'6','Pendiente',NULL,163,2,'Aval','2023-09-08 15:53:08'),(653,'1','Pendiente',NULL,164,1,'Documento completo','2023-09-08 15:53:08'),(654,'1','Pendiente',NULL,164,1,'RAPS aprobados','2023-09-08 15:53:08'),(655,NULL,'Pendiente',NULL,164,3,'Funciones','2023-09-08 15:53:08'),(656,'6','Pendiente',NULL,164,2,'Aval','2023-09-08 15:53:08'),(657,'1','Pendiente',NULL,165,1,'Documento completo','2023-09-08 15:53:08'),(658,'1','Pendiente',NULL,165,1,'RAPS aprobados','2023-09-08 15:53:08'),(659,NULL,'Pendiente',NULL,165,3,'Funciones','2023-09-08 15:53:08'),(660,'6','Pendiente',NULL,165,2,'Aval','2023-09-08 15:53:08'),(661,'1','Pendiente',NULL,166,1,'Documento completo','2023-09-08 15:53:08'),(662,'1','Pendiente',NULL,166,1,'RAPS aprobados','2023-09-08 15:53:08'),(663,NULL,'Pendiente',NULL,166,3,'Funciones','2023-09-08 15:53:08'),(664,'6','Pendiente',NULL,166,2,'Aval','2023-09-08 15:53:08'),(665,'1','Pendiente',NULL,167,1,'Documento completo','2023-09-08 15:53:08'),(666,'1','Pendiente',NULL,167,1,'RAPS aprobados','2023-09-08 15:53:08'),(667,NULL,'Pendiente',NULL,167,3,'Funciones','2023-09-08 15:53:08'),(668,'6','Pendiente',NULL,167,2,'Aval','2023-09-08 15:53:08'),(669,'1','Pendiente',NULL,168,1,'Documento completo','2023-09-08 15:53:08'),(670,'1','Pendiente',NULL,168,1,'RAPS aprobados','2023-09-08 15:53:08'),(671,NULL,'Pendiente',NULL,168,3,'Funciones','2023-09-08 15:53:08'),(672,'6','Pendiente',NULL,168,2,'Aval','2023-09-08 15:53:08'),(673,'1','Pendiente',NULL,169,1,'Documento completo','2023-09-08 15:53:08'),(674,'1','Pendiente',NULL,169,1,'RAPS aprobados','2023-09-08 15:53:08'),(675,NULL,'Pendiente',NULL,169,3,'Funciones','2023-09-08 15:53:08'),(676,'6','Pendiente',NULL,169,2,'Aval','2023-09-08 15:53:08'),(677,'1','Pendiente',NULL,170,1,'Documento completo','2023-09-08 15:53:08'),(678,'1','Pendiente',NULL,170,1,'RAPS aprobados','2023-09-08 15:53:08'),(679,NULL,'Pendiente',NULL,170,3,'Funciones','2023-09-08 15:53:08'),(680,'6','Pendiente',NULL,170,2,'Aval','2023-09-08 15:53:08'),(681,'1','Pendiente',NULL,171,1,'Documento completo','2023-09-08 15:53:08'),(682,'1','Pendiente',NULL,171,1,'RAPS aprobados','2023-09-08 15:53:08'),(683,NULL,'Pendiente',NULL,171,3,'Funciones','2023-09-08 15:53:08'),(684,'6','Pendiente',NULL,171,2,'Aval','2023-09-08 15:53:08'),(685,'1','Pendiente',NULL,172,1,'Documento completo','2023-09-08 15:53:08'),(686,'1','Pendiente',NULL,172,1,'RAPS aprobados','2023-09-08 15:53:08'),(687,NULL,'Pendiente',NULL,172,3,'Funciones','2023-09-08 15:53:08'),(688,'6','Pendiente',NULL,172,2,'Aval','2023-09-08 15:53:08'),(689,'1','Pendiente',NULL,173,1,'Documento completo','2023-09-08 15:53:08'),(690,'1','Pendiente',NULL,173,1,'RAPS aprobados','2023-09-08 15:53:08'),(691,NULL,'Pendiente',NULL,173,3,'Funciones','2023-09-08 15:53:08'),(692,'6','Pendiente',NULL,173,2,'Aval','2023-09-08 15:53:08'),(693,'1','Pendiente',NULL,174,1,'Documento completo','2023-09-08 15:53:08'),(694,'1','Pendiente',NULL,174,1,'RAPS aprobados','2023-09-08 15:53:08'),(695,NULL,'Pendiente',NULL,174,3,'Funciones','2023-09-08 15:53:08'),(696,'6','Pendiente',NULL,174,2,'Aval','2023-09-08 15:53:08'),(697,'1','Pendiente',NULL,175,1,'Documento completo','2023-09-08 15:53:08'),(698,'1','Pendiente',NULL,175,1,'RAPS aprobados','2023-09-08 15:53:08'),(699,NULL,'Pendiente',NULL,175,3,'Funciones','2023-09-08 15:53:08'),(700,'6','Pendiente',NULL,175,2,'Aval','2023-09-08 15:53:08'),(701,'1','Pendiente',NULL,176,1,'Documento completo','2023-09-08 15:53:08'),(702,'1','Pendiente',NULL,176,1,'RAPS aprobados','2023-09-08 15:53:08'),(703,NULL,'Pendiente',NULL,176,3,'Funciones','2023-09-08 15:53:08'),(704,'6','Pendiente',NULL,176,2,'Aval','2023-09-08 15:53:08'),(705,'1','Pendiente',NULL,177,1,'Documento completo','2023-09-08 15:53:08'),(706,'1','Pendiente',NULL,177,1,'RAPS aprobados','2023-09-08 15:53:08'),(707,NULL,'Pendiente',NULL,177,3,'Funciones','2023-09-08 15:53:08'),(708,'6','Pendiente',NULL,177,2,'Aval','2023-09-08 15:53:08'),(709,'1','Pendiente',NULL,178,1,'Documento completo','2023-09-08 15:53:08'),(710,'1','Pendiente',NULL,178,1,'RAPS aprobados','2023-09-08 15:53:08'),(711,NULL,'Pendiente',NULL,178,3,'Funciones','2023-09-08 15:53:08'),(712,'6','Pendiente',NULL,178,2,'Aval','2023-09-08 15:53:08'),(713,'1','Pendiente',NULL,179,1,'Documento completo','2023-09-08 15:53:08'),(714,'1','Pendiente',NULL,179,1,'RAPS aprobados','2023-09-08 15:53:08'),(715,NULL,'Pendiente',NULL,179,3,'Funciones','2023-09-08 15:53:08'),(716,'6','Pendiente',NULL,179,2,'Aval','2023-09-08 15:53:08'),(717,'1','Pendiente',NULL,180,1,'Documento completo','2023-09-08 15:53:08'),(718,'1','Pendiente',NULL,180,1,'RAPS aprobados','2023-09-08 15:53:08'),(719,NULL,'Pendiente',NULL,180,3,'Funciones','2023-09-08 15:53:08'),(720,'6','Pendiente',NULL,180,2,'Aval','2023-09-08 15:53:08'),(721,'1','Pendiente',NULL,181,1,'Documento completo','2023-09-08 15:53:08'),(722,'1','Pendiente',NULL,181,1,'RAPS aprobados','2023-09-08 15:53:08'),(723,NULL,'Pendiente',NULL,181,3,'Funciones','2023-09-08 15:53:08'),(724,'6','Pendiente',NULL,181,2,'Aval','2023-09-08 15:53:08'),(725,'1','Pendiente',NULL,182,1,'Documento completo','2023-09-08 15:53:08'),(726,'1','Pendiente',NULL,182,1,'RAPS aprobados','2023-09-08 15:53:08'),(727,NULL,'Pendiente',NULL,182,3,'Funciones','2023-09-08 15:53:08'),(728,'6','Pendiente',NULL,182,2,'Aval','2023-09-08 15:53:08'),(729,'1','Pendiente',NULL,183,1,'Documento completo','2023-09-08 15:53:08'),(730,'1','Pendiente',NULL,183,1,'RAPS aprobados','2023-09-08 15:53:08'),(731,NULL,'Pendiente',NULL,183,3,'Funciones','2023-09-08 15:53:08'),(732,'6','Pendiente',NULL,183,2,'Aval','2023-09-08 15:53:08'),(733,'1','Pendiente',NULL,184,1,'Documento completo','2023-09-08 15:53:08'),(734,'1','Pendiente',NULL,184,1,'RAPS aprobados','2023-09-08 15:53:08'),(735,NULL,'Pendiente',NULL,184,3,'Funciones','2023-09-08 15:53:08'),(736,'6','Pendiente',NULL,184,2,'Aval','2023-09-08 15:53:08'),(737,'1','Pendiente',NULL,185,1,'Documento completo','2023-09-08 15:53:08'),(738,'1','Pendiente',NULL,185,1,'RAPS aprobados','2023-09-08 15:53:08'),(739,NULL,'Pendiente',NULL,185,3,'Funciones','2023-09-08 15:53:08'),(740,'6','Pendiente',NULL,185,2,'Aval','2023-09-08 15:53:08'),(741,'1','Pendiente',NULL,186,1,'Documento completo','2023-09-08 15:53:08'),(742,'1','Pendiente',NULL,186,1,'RAPS aprobados','2023-09-08 15:53:08'),(743,NULL,'Pendiente',NULL,186,3,'Funciones','2023-09-08 15:53:08'),(744,'6','Pendiente',NULL,186,2,'Aval','2023-09-08 15:53:08'),(745,'1','Pendiente',NULL,187,1,'Documento completo','2023-09-08 15:53:08'),(746,'1','Pendiente',NULL,187,1,'RAPS aprobados','2023-09-08 15:53:08'),(747,NULL,'Pendiente',NULL,187,3,'Funciones','2023-09-08 15:53:08'),(748,'6','Pendiente',NULL,187,2,'Aval','2023-09-08 15:53:08'),(749,'1','Pendiente',NULL,188,1,'Documento completo','2023-09-08 15:53:08'),(750,'1','Pendiente',NULL,188,1,'RAPS aprobados','2023-09-08 15:53:08'),(751,NULL,'Pendiente',NULL,188,3,'Funciones','2023-09-08 15:53:08'),(752,'6','Pendiente',NULL,188,2,'Aval','2023-09-08 15:53:08'),(753,'1','Pendiente',NULL,189,1,'Documento completo','2023-09-08 15:53:08'),(754,'1','Pendiente',NULL,189,1,'RAPS aprobados','2023-09-08 15:53:08'),(755,NULL,'Pendiente',NULL,189,3,'Funciones','2023-09-08 15:53:08'),(756,'6','Pendiente',NULL,189,2,'Aval','2023-09-08 15:53:08'),(757,'1','Pendiente',NULL,190,1,'Documento completo','2023-09-08 15:53:08'),(758,'1','Pendiente',NULL,190,1,'RAPS aprobados','2023-09-08 15:53:08'),(759,NULL,'Pendiente',NULL,190,3,'Funciones','2023-09-08 15:53:08'),(760,'6','Pendiente',NULL,190,2,'Aval','2023-09-08 15:53:08'),(761,'1','Pendiente',NULL,191,1,'Documento completo','2023-09-08 15:53:08'),(762,'1','Pendiente',NULL,191,1,'RAPS aprobados','2023-09-08 15:53:08'),(763,NULL,'Pendiente',NULL,191,3,'Funciones','2023-09-08 15:53:08'),(764,'6','Pendiente',NULL,191,2,'Aval','2023-09-08 15:53:08'),(765,'1','Pendiente',NULL,192,1,'Documento completo','2023-09-08 15:53:08'),(766,'1','Pendiente',NULL,192,1,'RAPS aprobados','2023-09-08 15:53:08'),(767,NULL,'Pendiente',NULL,192,3,'Funciones','2023-09-08 15:53:08'),(768,'6','Pendiente',NULL,192,2,'Aval','2023-09-08 15:53:08'),(769,'1','Pendiente',NULL,193,1,'Documento completo','2023-09-08 15:53:08'),(770,'1','Pendiente',NULL,193,1,'RAPS aprobados','2023-09-08 15:53:08'),(771,NULL,'Pendiente',NULL,193,3,'Funciones','2023-09-08 15:53:08'),(772,'6','Pendiente',NULL,193,2,'Aval','2023-09-08 15:53:08'),(773,'1','Pendiente',NULL,194,1,'Documento completo','2023-09-08 15:53:08'),(774,'1','Pendiente',NULL,194,1,'RAPS aprobados','2023-09-08 15:53:08'),(775,NULL,'Pendiente',NULL,194,3,'Funciones','2023-09-08 15:53:08'),(776,'6','Pendiente',NULL,194,2,'Aval','2023-09-08 15:53:08'),(777,'1','Pendiente',NULL,195,1,'Documento completo','2023-09-08 15:53:08'),(778,'1','Pendiente',NULL,195,1,'RAPS aprobados','2023-09-08 15:53:08'),(779,NULL,'Pendiente',NULL,195,3,'Funciones','2023-09-08 15:53:08'),(780,'6','Pendiente',NULL,195,2,'Aval','2023-09-08 15:53:08'),(781,'1','Pendiente',NULL,196,1,'Documento completo','2023-09-08 15:53:08'),(782,'1','Pendiente',NULL,196,1,'RAPS aprobados','2023-09-08 15:53:08'),(783,NULL,'Pendiente',NULL,196,3,'Funciones','2023-09-08 15:53:08'),(784,'6','Pendiente',NULL,196,2,'Aval','2023-09-08 15:53:08'),(785,'1','Pendiente',NULL,197,1,'Documento completo','2023-09-08 15:53:08'),(786,'1','Pendiente',NULL,197,1,'RAPS aprobados','2023-09-08 15:53:08'),(787,NULL,'Pendiente',NULL,197,3,'Funciones','2023-09-08 15:53:08'),(788,'6','Pendiente',NULL,197,2,'Aval','2023-09-08 15:53:08'),(789,'1','Pendiente',NULL,198,1,'Documento completo','2023-09-08 15:53:08'),(790,'1','Pendiente',NULL,198,1,'RAPS aprobados','2023-09-08 15:53:08'),(791,NULL,'Pendiente',NULL,198,3,'Funciones','2023-09-08 15:53:08'),(792,'6','Pendiente',NULL,198,2,'Aval','2023-09-08 15:53:08'),(793,'1','Pendiente',NULL,199,1,'Documento completo','2023-09-08 15:53:08'),(794,'1','Pendiente',NULL,199,1,'RAPS aprobados','2023-09-08 15:53:08'),(795,NULL,'Pendiente',NULL,199,3,'Funciones','2023-09-08 15:53:08'),(796,'6','Pendiente',NULL,199,2,'Aval','2023-09-08 15:53:08'),(797,'1','Pendiente',NULL,200,1,'Documento completo','2023-09-08 15:53:08'),(798,'1','Pendiente',NULL,200,1,'RAPS aprobados','2023-09-08 15:53:08'),(799,NULL,'Pendiente',NULL,200,3,'Funciones','2023-09-08 15:53:08'),(800,'6','Pendiente',NULL,200,2,'Aval','2023-09-08 15:53:08'),(801,'1','Pendiente',NULL,201,1,'Documento completo','2023-09-08 15:53:08'),(802,'1','Pendiente',NULL,201,1,'RAPS aprobados','2023-09-08 15:53:08'),(803,NULL,'Pendiente',NULL,201,3,'Funciones','2023-09-08 15:53:08'),(804,'6','Pendiente',NULL,201,2,'Aval','2023-09-08 15:53:08'),(805,'1','Pendiente',NULL,202,1,'Documento completo','2023-09-08 15:53:08'),(806,'1','Pendiente',NULL,202,1,'RAPS aprobados','2023-09-08 15:53:08'),(807,NULL,'Pendiente',NULL,202,3,'Funciones','2023-09-08 15:53:08'),(808,'6','Pendiente',NULL,202,2,'Aval','2023-09-08 15:53:08'),(809,'1','Pendiente',NULL,203,1,'Documento completo','2023-09-08 15:53:08'),(810,'1','Pendiente',NULL,203,1,'RAPS aprobados','2023-09-08 15:53:08'),(811,NULL,'Pendiente',NULL,203,3,'Funciones','2023-09-08 15:53:08'),(812,'6','Pendiente',NULL,203,2,'Aval','2023-09-08 15:53:08'),(813,'1','Pendiente',NULL,204,1,'Documento completo','2023-09-08 15:53:08'),(814,'1','Pendiente',NULL,204,1,'RAPS aprobados','2023-09-08 15:53:08'),(815,NULL,'Pendiente',NULL,204,3,'Funciones','2023-09-08 15:53:08'),(816,'6','Pendiente',NULL,204,2,'Aval','2023-09-08 15:53:08'),(817,'1','Pendiente',NULL,205,1,'Documento completo','2023-09-08 15:53:08'),(818,'1','Pendiente',NULL,205,1,'RAPS aprobados','2023-09-08 15:53:08'),(819,NULL,'Pendiente',NULL,205,3,'Funciones','2023-09-08 15:53:08'),(820,'6','Pendiente',NULL,205,2,'Aval','2023-09-08 15:53:08'),(821,'1','Pendiente',NULL,206,1,'Documento completo','2023-09-08 15:53:08'),(822,'1','Pendiente',NULL,206,1,'RAPS aprobados','2023-09-08 15:53:08'),(823,NULL,'Pendiente',NULL,206,3,'Funciones','2023-09-08 15:53:08'),(824,'6','Pendiente',NULL,206,2,'Aval','2023-09-08 15:53:08'),(825,'1','Pendiente',NULL,207,1,'Documento completo','2023-09-08 15:53:08'),(826,'1','Pendiente',NULL,207,1,'RAPS aprobados','2023-09-08 15:53:08'),(827,NULL,'Pendiente',NULL,207,3,'Funciones','2023-09-08 15:53:08'),(828,'6','Pendiente',NULL,207,2,'Aval','2023-09-08 15:53:08'),(829,'1','Pendiente',NULL,208,1,'Documento completo','2023-09-08 15:53:08'),(830,'1','Pendiente',NULL,208,1,'RAPS aprobados','2023-09-08 15:53:08'),(831,NULL,'Pendiente',NULL,208,3,'Funciones','2023-09-08 15:53:08'),(832,'6','Pendiente',NULL,208,2,'Aval','2023-09-08 15:53:08'),(833,'1','Pendiente',NULL,209,1,'Documento completo','2023-09-08 15:53:08'),(834,'1','Pendiente',NULL,209,1,'RAPS aprobados','2023-09-08 15:53:08'),(835,NULL,'Pendiente',NULL,209,3,'Funciones','2023-09-08 15:53:08'),(836,'6','Pendiente',NULL,209,2,'Aval','2023-09-08 15:53:08'),(837,'1','Pendiente',NULL,210,1,'Documento completo','2023-09-08 15:53:08'),(838,'1','Pendiente',NULL,210,1,'RAPS aprobados','2023-09-08 15:53:08'),(839,NULL,'Pendiente',NULL,210,3,'Funciones','2023-09-08 15:53:08'),(840,'6','Pendiente',NULL,210,2,'Aval','2023-09-08 15:53:08'),(841,'1','Pendiente',NULL,211,1,'Documento completo','2023-09-08 15:53:08'),(842,'1','Pendiente',NULL,211,1,'RAPS aprobados','2023-09-08 15:53:08'),(843,NULL,'Pendiente',NULL,211,3,'Funciones','2023-09-08 15:53:08'),(844,'6','Pendiente',NULL,211,2,'Aval','2023-09-08 15:53:08'),(845,'1','Pendiente',NULL,212,1,'Documento completo','2023-09-08 15:53:08'),(846,'1','Pendiente',NULL,212,1,'RAPS aprobados','2023-09-08 15:53:08'),(847,NULL,'Pendiente',NULL,212,3,'Funciones','2023-09-08 15:53:08'),(848,'6','Pendiente',NULL,212,2,'Aval','2023-09-08 15:53:08'),(849,'1','Pendiente',NULL,213,1,'Documento completo','2023-09-08 15:53:08'),(850,'1','Pendiente',NULL,213,1,'RAPS aprobados','2023-09-08 15:53:08'),(851,NULL,'Pendiente',NULL,213,3,'Funciones','2023-09-08 15:53:08'),(852,'6','Pendiente',NULL,213,2,'Aval','2023-09-08 15:53:08'),(853,'1','Pendiente',NULL,214,1,'Documento completo','2023-09-08 15:53:08'),(854,'1','Pendiente',NULL,214,1,'RAPS aprobados','2023-09-08 15:53:08'),(855,NULL,'Pendiente',NULL,214,3,'Funciones','2023-09-08 15:53:08'),(856,'6','Pendiente',NULL,214,2,'Aval','2023-09-08 15:53:08'),(857,'1','Pendiente',NULL,215,1,'Documento completo','2023-09-08 15:53:08'),(858,'1','Pendiente',NULL,215,1,'RAPS aprobados','2023-09-08 15:53:08'),(859,NULL,'Pendiente',NULL,215,3,'Funciones','2023-09-08 15:53:08'),(860,'6','Pendiente',NULL,215,2,'Aval','2023-09-08 15:53:08'),(861,'1','Pendiente',NULL,216,1,'Documento completo','2023-09-08 15:53:08'),(862,'1','Pendiente',NULL,216,1,'RAPS aprobados','2023-09-08 15:53:08'),(863,NULL,'Pendiente',NULL,216,3,'Funciones','2023-09-08 15:53:08'),(864,'6','Pendiente',NULL,216,2,'Aval','2023-09-08 15:53:08'),(865,'1','Pendiente',NULL,217,1,'Documento completo','2023-09-08 15:53:08'),(866,'1','Pendiente',NULL,217,1,'RAPS aprobados','2023-09-08 15:53:08'),(867,NULL,'Pendiente',NULL,217,3,'Funciones','2023-09-08 15:53:08'),(868,'6','Pendiente',NULL,217,2,'Aval','2023-09-08 15:53:08'),(869,'1','Pendiente',NULL,218,1,'Documento completo','2023-09-08 15:53:08'),(870,'1','Pendiente',NULL,218,1,'RAPS aprobados','2023-09-08 15:53:08'),(871,NULL,'Pendiente',NULL,218,3,'Funciones','2023-09-08 15:53:08'),(872,'6','Pendiente',NULL,218,2,'Aval','2023-09-08 15:53:08'),(873,'1','Pendiente',NULL,219,1,'Documento completo','2023-09-08 15:53:08'),(874,'1','Rechazado','Todo malo',219,1,'RAPS aprobados','2023-09-08 20:50:18'),(875,NULL,'Pendiente',NULL,219,3,'Funciones','2023-09-08 15:53:08'),(876,'6','Pendiente',NULL,219,2,'Aval','2023-09-08 15:53:08'),(877,'1','Pendiente',NULL,220,1,'Documento completo','2023-09-08 15:53:08'),(878,'1','Pendiente',NULL,220,1,'RAPS aprobados','2023-09-08 15:53:08'),(879,NULL,'Pendiente',NULL,220,3,'Funciones','2023-09-08 15:53:08'),(880,'6','Pendiente',NULL,220,2,'Aval','2023-09-08 15:53:08'),(881,'1','Pendiente',NULL,221,1,'Documento completo','2023-09-08 15:53:08'),(882,'1','Pendiente',NULL,221,1,'RAPS aprobados','2023-09-08 15:53:08'),(883,NULL,'Pendiente',NULL,221,3,'Funciones','2023-09-08 15:53:08'),(884,'6','Pendiente',NULL,221,2,'Aval','2023-09-08 15:53:08'),(885,'1','Pendiente',NULL,222,1,'Documento completo','2023-09-08 15:53:08'),(886,'1','Pendiente',NULL,222,1,'RAPS aprobados','2023-09-08 15:53:08'),(887,NULL,'Pendiente',NULL,222,3,'Funciones','2023-09-08 15:53:08'),(888,'6','Pendiente',NULL,222,2,'Aval','2023-09-08 15:53:08'),(889,'1','Pendiente',NULL,223,1,'Documento completo','2023-09-08 15:53:08'),(890,'1','Pendiente',NULL,223,1,'RAPS aprobados','2023-09-08 15:53:08'),(891,NULL,'Pendiente',NULL,223,3,'Funciones','2023-09-08 15:53:08'),(892,'6','Pendiente',NULL,223,2,'Aval','2023-09-08 15:53:08'); +INSERT INTO `detalles_inscripciones` VALUES (1,'1','Aprobado','Ta bien',1,1,'Documento completo','2023-09-11 15:24:25'),(2,'1','Rechazado','0',1,1,'RAPS aprobados','2023-10-05 15:53:16'),(3,NULL,'Pendiente',NULL,1,3,'Funciones','2023-09-08 15:53:07'),(4,'6','Pendiente',NULL,1,2,'Aval','2023-09-08 15:53:07'),(5,'1','Pendiente',NULL,2,1,'Documento completo','2023-09-08 15:53:07'),(6,'1','Pendiente',NULL,2,1,'RAPS aprobados','2023-10-05 15:45:34'),(7,NULL,'Pendiente',NULL,2,3,'Funciones','2023-10-05 15:39:44'),(8,'8','Rechazado','Todo mal',2,2,'Aval','2023-10-05 15:45:52'),(9,'1','Pendiente',NULL,3,1,'Documento completo','2023-10-05 15:39:49'),(10,'1','Pendiente',NULL,3,1,'RAPS aprobados','2023-09-08 15:53:07'),(11,NULL,'Pendiente',NULL,3,3,'Funciones','2023-09-08 15:53:07'),(12,'6','Pendiente',NULL,3,2,'Aval','2023-09-08 15:53:07'),(13,'1','Pendiente',NULL,4,1,'Documento completo','2023-09-08 15:53:07'),(14,'1','Pendiente',NULL,4,1,'RAPS aprobados','2023-09-08 15:53:07'),(15,NULL,'Pendiente',NULL,4,3,'Funciones','2023-10-05 15:45:24'),(16,'6','Pendiente',NULL,4,2,'Aval','2023-09-08 15:53:07'),(17,'1','Pendiente',NULL,5,1,'Documento completo','2023-09-08 15:53:07'),(18,'1','Pendiente',NULL,5,1,'RAPS aprobados','2023-09-08 15:53:07'),(19,NULL,'Pendiente',NULL,5,3,'Funciones','2023-09-08 15:53:07'),(20,'6','Pendiente',NULL,5,2,'Aval','2023-09-08 15:53:07'),(21,'1','Pendiente',NULL,6,1,'Documento completo','2023-09-08 15:53:07'),(22,'1','Rechazado','No ha terminado los raps',6,1,'RAPS aprobados','2023-09-08 20:40:44'),(23,NULL,'Pendiente',NULL,6,3,'Funciones','2023-09-08 15:53:07'),(24,'6','Pendiente',NULL,6,2,'Aval','2023-09-08 15:53:07'),(25,'1','Pendiente',NULL,7,1,'Documento completo','2023-09-08 15:53:07'),(26,'1','Pendiente',NULL,7,1,'RAPS aprobados','2023-09-08 15:53:07'),(27,NULL,'Pendiente',NULL,7,3,'Funciones','2023-09-08 15:53:07'),(28,'6','Pendiente',NULL,7,2,'Aval','2023-09-08 15:53:07'),(29,'1','Pendiente',NULL,8,1,'Documento completo','2023-09-08 15:53:07'),(30,'1','Pendiente',NULL,8,1,'RAPS aprobados','2023-09-08 15:53:07'),(31,NULL,'Pendiente',NULL,8,3,'Funciones','2023-09-08 15:53:07'),(32,'6','Pendiente',NULL,8,2,'Aval','2023-09-08 15:53:07'),(33,'1','Pendiente',NULL,9,1,'Documento completo','2023-09-08 15:53:07'),(34,'1','Pendiente',NULL,9,1,'RAPS aprobados','2023-09-08 15:53:07'),(35,NULL,'Pendiente',NULL,9,3,'Funciones','2023-09-08 15:53:07'),(36,'6','Pendiente',NULL,9,2,'Aval','2023-09-08 15:53:07'),(37,'1','Pendiente',NULL,10,1,'Documento completo','2023-09-08 15:53:07'),(38,'1','Pendiente',NULL,10,1,'RAPS aprobados','2023-09-08 15:53:07'),(39,NULL,'Pendiente',NULL,10,3,'Funciones','2023-09-08 15:53:07'),(40,'6','Pendiente',NULL,10,2,'Aval','2023-09-08 15:53:07'),(41,'1','Pendiente',NULL,11,1,'Documento completo','2023-09-08 15:53:07'),(42,'1','Pendiente',NULL,11,1,'RAPS aprobados','2023-09-08 15:53:07'),(43,NULL,'Pendiente',NULL,11,3,'Funciones','2023-09-08 15:53:07'),(44,'6','Pendiente',NULL,11,2,'Aval','2023-09-08 15:53:07'),(45,'1','Pendiente',NULL,12,1,'Documento completo','2023-09-08 15:53:07'),(46,'1','Pendiente',NULL,12,1,'RAPS aprobados','2023-09-08 15:53:07'),(47,NULL,'Pendiente',NULL,12,3,'Funciones','2023-09-08 15:53:07'),(48,'6','Pendiente',NULL,12,2,'Aval','2023-09-08 15:53:07'),(49,'1','Pendiente',NULL,13,1,'Documento completo','2023-09-08 15:53:07'),(50,'1','Pendiente',NULL,13,1,'RAPS aprobados','2023-09-08 15:53:07'),(51,NULL,'Pendiente',NULL,13,3,'Funciones','2023-09-08 15:53:07'),(52,'6','Pendiente',NULL,13,2,'Aval','2023-09-08 15:53:07'),(53,'1','Pendiente',NULL,14,1,'Documento completo','2023-09-08 15:53:07'),(54,'1','Pendiente',NULL,14,1,'RAPS aprobados','2023-09-08 15:53:07'),(55,NULL,'Pendiente',NULL,14,3,'Funciones','2023-09-08 15:53:07'),(56,'6','Pendiente',NULL,14,2,'Aval','2023-09-08 15:53:07'),(57,'1','Pendiente',NULL,15,1,'Documento completo','2023-09-08 15:53:07'),(58,'1','Pendiente',NULL,15,1,'RAPS aprobados','2023-09-08 15:53:07'),(59,NULL,'Pendiente',NULL,15,3,'Funciones','2023-09-08 15:53:07'),(60,'6','Pendiente',NULL,15,2,'Aval','2023-09-08 15:53:07'),(61,'1','Pendiente',NULL,16,1,'Documento completo','2023-09-08 15:53:07'),(62,'1','Pendiente',NULL,16,1,'RAPS aprobados','2023-09-08 15:53:07'),(63,NULL,'Pendiente',NULL,16,3,'Funciones','2023-09-08 15:53:07'),(64,'6','Pendiente',NULL,16,2,'Aval','2023-09-08 15:53:07'),(65,'1','Pendiente',NULL,17,1,'Documento completo','2023-09-08 15:53:07'),(66,'1','Pendiente',NULL,17,1,'RAPS aprobados','2023-09-08 15:53:07'),(67,NULL,'Pendiente',NULL,17,3,'Funciones','2023-09-08 15:53:07'),(68,'6','Pendiente',NULL,17,2,'Aval','2023-09-08 15:53:07'),(69,'1','Pendiente',NULL,18,1,'Documento completo','2023-09-08 15:53:07'),(70,'1','Pendiente',NULL,18,1,'RAPS aprobados','2023-09-08 15:53:07'),(71,NULL,'Pendiente',NULL,18,3,'Funciones','2023-09-08 15:53:07'),(72,'6','Pendiente',NULL,18,2,'Aval','2023-09-08 15:53:07'),(73,'1','Pendiente',NULL,19,1,'Documento completo','2023-09-08 15:53:07'),(74,'1','Pendiente',NULL,19,1,'RAPS aprobados','2023-09-08 15:53:07'),(75,NULL,'Pendiente',NULL,19,3,'Funciones','2023-09-08 15:53:07'),(76,'6','Pendiente',NULL,19,2,'Aval','2023-09-08 15:53:07'),(77,'1','Pendiente',NULL,20,1,'Documento completo','2023-09-08 15:53:07'),(78,'1','Pendiente',NULL,20,1,'RAPS aprobados','2023-09-08 15:53:07'),(79,NULL,'Pendiente',NULL,20,3,'Funciones','2023-09-08 15:53:07'),(80,'6','Pendiente',NULL,20,2,'Aval','2023-09-08 15:53:07'),(81,'1','Pendiente',NULL,21,1,'Documento completo','2023-09-08 15:53:07'),(82,'1','Pendiente',NULL,21,1,'RAPS aprobados','2023-09-08 15:53:07'),(83,NULL,'Pendiente',NULL,21,3,'Funciones','2023-09-08 15:53:07'),(84,'6','Pendiente',NULL,21,2,'Aval','2023-09-08 15:53:07'),(85,'1','Pendiente',NULL,22,1,'Documento completo','2023-09-08 15:53:07'),(86,'1','Pendiente',NULL,22,1,'RAPS aprobados','2023-09-08 15:53:07'),(87,NULL,'Pendiente',NULL,22,3,'Funciones','2023-09-08 15:53:07'),(88,'6','Pendiente',NULL,22,2,'Aval','2023-09-08 15:53:07'),(89,'1','Pendiente',NULL,23,1,'Documento completo','2023-09-08 15:53:07'),(90,'1','Pendiente',NULL,23,1,'RAPS aprobados','2023-09-08 15:53:07'),(91,NULL,'Pendiente',NULL,23,3,'Funciones','2023-09-08 15:53:07'),(92,'6','Pendiente',NULL,23,2,'Aval','2023-09-08 15:53:07'),(93,'1','Pendiente',NULL,24,1,'Documento completo','2023-09-08 15:53:07'),(94,'1','Pendiente',NULL,24,1,'RAPS aprobados','2023-09-08 15:53:07'),(95,NULL,'Pendiente',NULL,24,3,'Funciones','2023-09-08 15:53:07'),(96,'6','Pendiente',NULL,24,2,'Aval','2023-09-08 15:53:07'),(97,'1','Pendiente',NULL,25,1,'Documento completo','2023-09-08 15:53:07'),(98,'1','Pendiente',NULL,25,1,'RAPS aprobados','2023-09-08 15:53:07'),(99,NULL,'Pendiente',NULL,25,3,'Funciones','2023-09-08 15:53:07'),(100,'6','Pendiente',NULL,25,2,'Aval','2023-09-08 15:53:07'),(101,'1','Pendiente',NULL,26,1,'Documento completo','2023-09-08 15:53:07'),(102,'1','Pendiente',NULL,26,1,'RAPS aprobados','2023-09-08 15:53:07'),(103,NULL,'Pendiente',NULL,26,3,'Funciones','2023-09-08 15:53:07'),(104,'6','Pendiente',NULL,26,2,'Aval','2023-09-08 15:53:07'),(105,'1','Pendiente',NULL,27,1,'Documento completo','2023-09-08 15:53:07'),(106,'1','Pendiente',NULL,27,1,'RAPS aprobados','2023-09-08 15:53:07'),(107,NULL,'Pendiente',NULL,27,3,'Funciones','2023-09-08 15:53:07'),(108,'6','Pendiente',NULL,27,2,'Aval','2023-09-08 15:53:07'),(109,'1','Pendiente',NULL,28,1,'Documento completo','2023-09-08 15:53:07'),(110,'1','Pendiente',NULL,28,1,'RAPS aprobados','2023-09-08 15:53:07'),(111,NULL,'Pendiente',NULL,28,3,'Funciones','2023-09-08 15:53:07'),(112,'6','Pendiente',NULL,28,2,'Aval','2023-09-08 15:53:07'),(113,'1','Pendiente',NULL,29,1,'Documento completo','2023-09-08 15:53:07'),(114,'1','Pendiente',NULL,29,1,'RAPS aprobados','2023-09-08 15:53:07'),(115,NULL,'Pendiente',NULL,29,3,'Funciones','2023-09-08 15:53:07'),(116,'6','Pendiente',NULL,29,2,'Aval','2023-09-08 15:53:07'),(117,'1','Pendiente',NULL,30,1,'Documento completo','2023-09-08 15:53:07'),(118,'1','Pendiente',NULL,30,1,'RAPS aprobados','2023-09-08 15:53:07'),(119,NULL,'Pendiente',NULL,30,3,'Funciones','2023-09-08 15:53:07'),(120,'6','Pendiente',NULL,30,2,'Aval','2023-09-08 15:53:07'),(121,'1','Pendiente',NULL,31,1,'Documento completo','2023-09-08 15:53:07'),(122,'1','Pendiente',NULL,31,1,'RAPS aprobados','2023-09-08 15:53:07'),(123,NULL,'Pendiente',NULL,31,3,'Funciones','2023-09-08 15:53:07'),(124,'6','Pendiente',NULL,31,2,'Aval','2023-09-08 15:53:07'),(125,'1','Pendiente',NULL,32,1,'Documento completo','2023-09-08 15:53:07'),(126,'1','Pendiente',NULL,32,1,'RAPS aprobados','2023-09-08 15:53:07'),(127,NULL,'Pendiente',NULL,32,3,'Funciones','2023-09-08 15:53:07'),(128,'6','Pendiente',NULL,32,2,'Aval','2023-09-08 15:53:07'),(129,'1','Pendiente',NULL,33,1,'Documento completo','2023-09-08 15:53:07'),(130,'1','Pendiente',NULL,33,1,'RAPS aprobados','2023-09-08 15:53:07'),(131,NULL,'Pendiente',NULL,33,3,'Funciones','2023-09-08 15:53:07'),(132,'6','Pendiente',NULL,33,2,'Aval','2023-09-08 15:53:07'),(133,'1','Pendiente',NULL,34,1,'Documento completo','2023-09-08 15:53:07'),(134,'1','Pendiente',NULL,34,1,'RAPS aprobados','2023-09-08 15:53:07'),(135,NULL,'Pendiente',NULL,34,3,'Funciones','2023-09-08 15:53:07'),(136,'6','Pendiente',NULL,34,2,'Aval','2023-09-08 15:53:07'),(137,'1','Pendiente',NULL,35,1,'Documento completo','2023-09-08 15:53:07'),(138,'1','Pendiente',NULL,35,1,'RAPS aprobados','2023-09-08 15:53:07'),(139,NULL,'Pendiente',NULL,35,3,'Funciones','2023-09-08 15:53:07'),(140,'6','Pendiente',NULL,35,2,'Aval','2023-09-08 15:53:07'),(141,'1','Pendiente',NULL,36,1,'Documento completo','2023-09-08 15:53:07'),(142,'1','Pendiente',NULL,36,1,'RAPS aprobados','2023-09-08 15:53:07'),(143,NULL,'Pendiente',NULL,36,3,'Funciones','2023-09-08 15:53:07'),(144,'6','Pendiente',NULL,36,2,'Aval','2023-09-08 15:53:07'),(145,'1','Pendiente',NULL,37,1,'Documento completo','2023-09-08 15:53:07'),(146,'1','Pendiente',NULL,37,1,'RAPS aprobados','2023-09-08 15:53:07'),(147,NULL,'Pendiente',NULL,37,3,'Funciones','2023-09-08 15:53:07'),(148,'6','Pendiente',NULL,37,2,'Aval','2023-09-08 15:53:07'),(149,'1','Pendiente',NULL,38,1,'Documento completo','2023-09-08 15:53:07'),(150,'1','Pendiente',NULL,38,1,'RAPS aprobados','2023-09-08 15:53:07'),(151,NULL,'Pendiente',NULL,38,3,'Funciones','2023-09-08 15:53:07'),(152,'6','Pendiente',NULL,38,2,'Aval','2023-09-08 15:53:07'),(153,'1','Pendiente',NULL,39,1,'Documento completo','2023-09-08 15:53:07'),(154,'1','Pendiente',NULL,39,1,'RAPS aprobados','2023-09-08 15:53:07'),(155,NULL,'Pendiente',NULL,39,3,'Funciones','2023-09-08 15:53:07'),(156,'6','Pendiente',NULL,39,2,'Aval','2023-09-08 15:53:07'),(157,'1','Pendiente',NULL,40,1,'Documento completo','2023-09-08 15:53:07'),(158,'1','Pendiente',NULL,40,1,'RAPS aprobados','2023-09-08 15:53:07'),(159,NULL,'Pendiente',NULL,40,3,'Funciones','2023-09-08 15:53:07'),(160,'6','Pendiente',NULL,40,2,'Aval','2023-09-08 15:53:07'),(161,'1','Pendiente',NULL,41,1,'Documento completo','2023-09-08 15:53:07'),(162,'1','Pendiente',NULL,41,1,'RAPS aprobados','2023-09-08 15:53:07'),(163,NULL,'Pendiente',NULL,41,3,'Funciones','2023-09-08 15:53:07'),(164,'6','Pendiente',NULL,41,2,'Aval','2023-09-08 15:53:07'),(165,'1','Pendiente',NULL,42,1,'Documento completo','2023-09-08 15:53:07'),(166,'1','Pendiente',NULL,42,1,'RAPS aprobados','2023-09-08 15:53:07'),(167,NULL,'Pendiente',NULL,42,3,'Funciones','2023-09-08 15:53:07'),(168,'6','Pendiente',NULL,42,2,'Aval','2023-09-08 15:53:07'),(169,'1','Pendiente',NULL,43,1,'Documento completo','2023-09-08 15:53:07'),(170,'1','Pendiente',NULL,43,1,'RAPS aprobados','2023-09-08 15:53:07'),(171,NULL,'Pendiente',NULL,43,3,'Funciones','2023-09-08 15:53:07'),(172,'6','Pendiente',NULL,43,2,'Aval','2023-09-08 15:53:07'),(173,'1','Pendiente',NULL,44,1,'Documento completo','2023-09-08 15:53:07'),(174,'1','Pendiente',NULL,44,1,'RAPS aprobados','2023-09-08 15:53:07'),(175,NULL,'Pendiente',NULL,44,3,'Funciones','2023-09-08 15:53:07'),(176,'6','Pendiente',NULL,44,2,'Aval','2023-09-08 15:53:07'),(177,'1','Pendiente',NULL,45,1,'Documento completo','2023-09-08 15:53:07'),(178,'1','Pendiente',NULL,45,1,'RAPS aprobados','2023-09-08 15:53:07'),(179,NULL,'Pendiente',NULL,45,3,'Funciones','2023-09-08 15:53:07'),(180,'6','Pendiente',NULL,45,2,'Aval','2023-09-08 15:53:07'),(181,'1','Pendiente',NULL,46,1,'Documento completo','2023-09-08 15:53:07'),(182,'1','Pendiente',NULL,46,1,'RAPS aprobados','2023-09-08 15:53:07'),(183,NULL,'Pendiente',NULL,46,3,'Funciones','2023-09-08 15:53:07'),(184,'6','Pendiente',NULL,46,2,'Aval','2023-09-08 15:53:07'),(185,'1','Pendiente',NULL,47,1,'Documento completo','2023-09-08 15:53:07'),(186,'1','Pendiente',NULL,47,1,'RAPS aprobados','2023-09-08 15:53:07'),(187,NULL,'Pendiente',NULL,47,3,'Funciones','2023-09-08 15:53:07'),(188,'6','Pendiente',NULL,47,2,'Aval','2023-09-08 15:53:07'),(189,'1','Pendiente',NULL,48,1,'Documento completo','2023-09-08 15:53:07'),(190,'1','Pendiente',NULL,48,1,'RAPS aprobados','2023-09-08 15:53:07'),(191,NULL,'Pendiente',NULL,48,3,'Funciones','2023-09-08 15:53:07'),(192,'6','Pendiente',NULL,48,2,'Aval','2023-09-08 15:53:07'),(193,'1','Pendiente',NULL,49,1,'Documento completo','2023-09-08 15:53:07'),(194,'1','Pendiente',NULL,49,1,'RAPS aprobados','2023-09-08 15:53:07'),(195,NULL,'Pendiente',NULL,49,3,'Funciones','2023-09-08 15:53:07'),(196,'6','Pendiente',NULL,49,2,'Aval','2023-09-08 15:53:07'),(197,'1','Pendiente',NULL,50,1,'Documento completo','2023-09-08 15:53:07'),(198,'1','Pendiente',NULL,50,1,'RAPS aprobados','2023-09-08 15:53:07'),(199,NULL,'Pendiente',NULL,50,3,'Funciones','2023-09-08 15:53:07'),(200,'6','Pendiente',NULL,50,2,'Aval','2023-09-08 15:53:07'),(201,'1','Pendiente',NULL,51,1,'Documento completo','2023-09-08 15:53:07'),(202,'1','Pendiente',NULL,51,1,'RAPS aprobados','2023-09-08 15:53:07'),(203,NULL,'Pendiente',NULL,51,3,'Funciones','2023-09-08 15:53:07'),(204,'6','Pendiente',NULL,51,2,'Aval','2023-09-08 15:53:07'),(205,'1','Pendiente',NULL,52,1,'Documento completo','2023-09-08 15:53:07'),(206,'1','Pendiente',NULL,52,1,'RAPS aprobados','2023-09-08 15:53:07'),(207,NULL,'Pendiente',NULL,52,3,'Funciones','2023-09-08 15:53:07'),(208,'6','Pendiente',NULL,52,2,'Aval','2023-09-08 15:53:07'),(209,'1','Aprobado','Ta bien',53,1,'Documento completo','2023-10-02 17:24:03'),(210,'1','Aprobado','Ta bien',53,1,'RAPS aprobados','2023-10-02 17:23:58'),(211,'10','Aprobado','Ta bien',53,3,'Funciones','2023-10-03 13:55:30'),(212,'1','Aprobado','Ta bien',53,2,'Aval','2023-10-03 18:04:13'),(213,'1','Pendiente',NULL,54,1,'Documento completo','2023-09-08 15:53:08'),(214,'1','Pendiente',NULL,54,1,'RAPS aprobados','2023-09-08 15:53:08'),(215,'1','Rechazado','Ta malo',54,3,'Funciones','2023-10-02 16:49:05'),(216,'6','Pendiente',NULL,54,2,'Aval','2023-09-08 15:53:08'),(217,'1','Pendiente',NULL,55,1,'Documento completo','2023-09-08 15:53:08'),(218,'1','Pendiente',NULL,55,1,'RAPS aprobados','2023-09-08 15:53:08'),(219,'1','Rechazado','nao',55,3,'Funciones','2023-10-02 19:20:17'),(220,'6','Pendiente',NULL,55,2,'Aval','2023-09-08 15:53:08'),(221,'1','Aprobado','ds',56,1,'Documento completo','2023-10-03 18:26:30'),(222,'1','Aprobado','za',56,1,'RAPS aprobados','2023-10-03 18:26:26'),(223,'1','Aprobado','gc',56,3,'Funciones','2023-10-03 18:26:33'),(224,'1','Aprobado','d',56,2,'Aval','2023-10-03 18:26:44'),(225,'1','Aprobado','zi',57,1,'Documento completo','2023-10-03 18:27:54'),(226,'1','Aprobado','zi',57,1,'RAPS aprobados','2023-10-03 18:27:50'),(227,'1','Aprobado','zi',57,3,'Funciones','2023-10-03 18:27:59'),(228,'6','Aprobado','zi',57,2,'Aval','2023-10-03 18:32:57'),(229,'1','Aprobado','Ta bien',58,1,'Documento completo','2023-10-03 18:39:23'),(230,'1','Aprobado','Ta bien',58,1,'RAPS aprobados','2023-10-03 18:39:18'),(231,'1','Aprobado','Ta bien',58,3,'Funciones','2023-10-03 18:39:28'),(232,'1','Aprobado','s',58,2,'Aval','2023-10-03 19:01:29'),(233,'1','Aprobado','s',59,1,'Documento completo','2023-10-03 18:50:22'),(234,'1','Aprobado','s',59,1,'RAPS aprobados','2023-10-03 18:50:16'),(235,'1','Aprobado','s',59,3,'Funciones','2023-10-03 18:50:23'),(236,'1','Aprobado','s',59,2,'Aval','2023-10-03 18:58:54'),(237,'1','Aprobado','s',60,1,'Documento completo','2023-10-03 19:03:04'),(238,'1','Aprobado','s',60,1,'RAPS aprobados','2023-10-03 19:02:57'),(239,'1','Aprobado','s',60,3,'Funciones','2023-10-03 19:03:05'),(240,'1','Aprobado','Todo correcto',60,2,'Aval','2023-10-03 19:08:08'),(241,'1','Aprobado','s',61,1,'Documento completo','2023-10-03 18:45:09'),(242,'1','Aprobado','s',61,1,'RAPS aprobados','2023-10-03 18:45:05'),(243,'1','Aprobado','s',61,3,'Funciones','2023-10-03 18:45:12'),(244,'1','Aprobado','s',61,2,'Aval','2023-10-03 18:46:36'),(245,'1','Aprobado','Ta bien',62,1,'Documento completo','2023-10-03 20:28:02'),(246,'1','Aprobado','Ta bien',62,1,'RAPS aprobados','2023-10-03 20:27:56'),(247,'1','Aprobado','Ta bien',62,3,'Funciones','2023-10-03 20:28:08'),(248,'1','Aprobado','si',62,2,'Aval','2023-10-03 20:42:27'),(249,'1','Aprobado','s',63,1,'Documento completo','2023-10-04 13:53:46'),(250,'1','Aprobado','SI',63,1,'RAPS aprobados','2023-10-04 13:59:36'),(251,'1','Aprobado','s',63,3,'Funciones','2023-10-04 13:53:50'),(252,'1','Aprobado','Todo correcto',63,2,'Aval','2023-10-04 13:54:05'),(253,'1','Aprobado','Todo bien',64,1,'Documento completo','2023-10-05 15:11:03'),(254,'1','Aprobado','TA bien',64,1,'RAPS aprobados','2023-10-05 15:10:59'),(255,'1','Aprobado','Sin observaciones',64,3,'Funciones','2023-10-05 15:11:09'),(256,'2','Aprobado','Correcto',64,2,'Aval','2023-10-05 15:37:38'),(257,'1','Aprobado','s',65,1,'Documento completo','2023-10-05 15:39:43'),(258,'1','Aprobado','s',65,1,'RAPS aprobados','2023-10-05 15:39:41'),(259,'1','Aprobado','o',65,3,'Funciones','2023-10-05 15:39:53'),(260,'1','Aprobado','s',65,2,'Aval','2023-10-05 15:40:05'),(261,'1','Aprobado','s',66,1,'Documento completo','2023-10-05 15:45:22'),(262,'1','Aprobado','s',66,1,'RAPS aprobados','2023-10-05 15:45:20'),(263,'1','Aprobado','s',66,3,'Funciones','2023-10-05 15:45:29'),(264,'2','Aprobado','Todo bein',66,2,'Aval','2023-10-05 16:01:35'),(265,'1','Pendiente',NULL,67,1,'Documento completo','2023-09-08 15:53:08'),(266,'1','Pendiente',NULL,67,1,'RAPS aprobados','2023-09-08 15:53:08'),(267,NULL,'Pendiente',NULL,67,3,'Funciones','2023-09-08 15:53:08'),(268,'6','Pendiente',NULL,67,2,'Aval','2023-09-08 15:53:08'),(269,'1','Pendiente',NULL,68,1,'Documento completo','2023-09-08 15:53:08'),(270,'1','Pendiente',NULL,68,1,'RAPS aprobados','2023-09-08 15:53:08'),(271,NULL,'Pendiente',NULL,68,3,'Funciones','2023-09-08 15:53:08'),(272,'6','Pendiente',NULL,68,2,'Aval','2023-09-08 15:53:08'),(273,'1','Pendiente',NULL,69,1,'Documento completo','2023-09-08 15:53:08'),(274,'1','Pendiente',NULL,69,1,'RAPS aprobados','2023-09-08 15:53:08'),(275,NULL,'Pendiente',NULL,69,3,'Funciones','2023-09-08 15:53:08'),(276,'6','Pendiente',NULL,69,2,'Aval','2023-09-08 15:53:08'),(277,'1','Pendiente',NULL,70,1,'Documento completo','2023-09-08 15:53:08'),(278,'1','Pendiente',NULL,70,1,'RAPS aprobados','2023-09-08 15:53:08'),(279,NULL,'Pendiente',NULL,70,3,'Funciones','2023-09-08 15:53:08'),(280,'6','Pendiente',NULL,70,2,'Aval','2023-09-08 15:53:08'),(281,'1','Pendiente',NULL,71,1,'Documento completo','2023-09-08 15:53:08'),(282,'1','Pendiente',NULL,71,1,'RAPS aprobados','2023-09-08 15:53:08'),(283,NULL,'Pendiente',NULL,71,3,'Funciones','2023-09-08 15:53:08'),(284,'6','Pendiente',NULL,71,2,'Aval','2023-09-08 15:53:08'),(285,'1','Pendiente',NULL,72,1,'Documento completo','2023-09-08 15:53:08'),(286,'1','Pendiente',NULL,72,1,'RAPS aprobados','2023-09-08 15:53:08'),(287,NULL,'Pendiente',NULL,72,3,'Funciones','2023-09-08 15:53:08'),(288,'6','Pendiente',NULL,72,2,'Aval','2023-09-08 15:53:08'),(289,'1','Pendiente',NULL,73,1,'Documento completo','2023-09-08 15:53:08'),(290,'1','Pendiente',NULL,73,1,'RAPS aprobados','2023-09-08 15:53:08'),(291,NULL,'Pendiente',NULL,73,3,'Funciones','2023-09-08 15:53:08'),(292,'6','Pendiente',NULL,73,2,'Aval','2023-09-08 15:53:08'),(293,'1','Pendiente',NULL,74,1,'Documento completo','2023-09-08 15:53:08'),(294,'1','Pendiente',NULL,74,1,'RAPS aprobados','2023-09-08 15:53:08'),(295,NULL,'Pendiente',NULL,74,3,'Funciones','2023-09-08 15:53:08'),(296,'6','Pendiente',NULL,74,2,'Aval','2023-09-08 15:53:08'),(297,'1','Pendiente',NULL,75,1,'Documento completo','2023-09-08 15:53:08'),(298,'1','Pendiente',NULL,75,1,'RAPS aprobados','2023-09-08 15:53:08'),(299,NULL,'Pendiente',NULL,75,3,'Funciones','2023-09-08 15:53:08'),(300,'6','Pendiente',NULL,75,2,'Aval','2023-09-08 15:53:08'),(301,'1','Pendiente',NULL,76,1,'Documento completo','2023-09-08 15:53:08'),(302,'1','Pendiente',NULL,76,1,'RAPS aprobados','2023-09-08 15:53:08'),(303,NULL,'Pendiente',NULL,76,3,'Funciones','2023-09-08 15:53:08'),(304,'6','Pendiente',NULL,76,2,'Aval','2023-09-08 15:53:08'),(305,'1','Pendiente',NULL,77,1,'Documento completo','2023-09-08 15:53:08'),(306,'1','Pendiente',NULL,77,1,'RAPS aprobados','2023-09-08 15:53:08'),(307,NULL,'Pendiente',NULL,77,3,'Funciones','2023-09-08 15:53:08'),(308,'6','Pendiente',NULL,77,2,'Aval','2023-09-08 15:53:08'),(309,'1','Pendiente',NULL,78,1,'Documento completo','2023-09-08 15:53:08'),(310,'1','Pendiente',NULL,78,1,'RAPS aprobados','2023-09-08 15:53:08'),(311,NULL,'Pendiente',NULL,78,3,'Funciones','2023-09-08 15:53:08'),(312,'6','Pendiente',NULL,78,2,'Aval','2023-09-08 15:53:08'),(313,'1','Pendiente',NULL,79,1,'Documento completo','2023-09-08 15:53:08'),(314,'1','Pendiente',NULL,79,1,'RAPS aprobados','2023-09-08 15:53:08'),(315,NULL,'Pendiente',NULL,79,3,'Funciones','2023-09-08 15:53:08'),(316,'6','Pendiente',NULL,79,2,'Aval','2023-09-08 15:53:08'),(317,'1','Pendiente',NULL,80,1,'Documento completo','2023-09-08 15:53:08'),(318,'1','Pendiente',NULL,80,1,'RAPS aprobados','2023-09-08 15:53:08'),(319,NULL,'Pendiente',NULL,80,3,'Funciones','2023-09-08 15:53:08'),(320,'6','Pendiente',NULL,80,2,'Aval','2023-09-08 15:53:08'),(321,'1','Pendiente',NULL,81,1,'Documento completo','2023-09-08 15:53:08'),(322,'1','Pendiente',NULL,81,1,'RAPS aprobados','2023-09-08 15:53:08'),(323,NULL,'Pendiente',NULL,81,3,'Funciones','2023-09-08 15:53:08'),(324,'6','Pendiente',NULL,81,2,'Aval','2023-09-08 15:53:08'),(325,'1','Pendiente',NULL,82,1,'Documento completo','2023-09-08 15:53:08'),(326,'1','Pendiente',NULL,82,1,'RAPS aprobados','2023-09-08 15:53:08'),(327,NULL,'Pendiente',NULL,82,3,'Funciones','2023-09-08 15:53:08'),(328,'6','Pendiente',NULL,82,2,'Aval','2023-09-08 15:53:08'),(329,'1','Pendiente',NULL,83,1,'Documento completo','2023-09-08 15:53:08'),(330,'1','Pendiente',NULL,83,1,'RAPS aprobados','2023-09-08 15:53:08'),(331,NULL,'Pendiente',NULL,83,3,'Funciones','2023-09-08 15:53:08'),(332,'6','Pendiente',NULL,83,2,'Aval','2023-09-08 15:53:08'),(333,'1','Pendiente',NULL,84,1,'Documento completo','2023-09-08 15:53:08'),(334,'1','Pendiente',NULL,84,1,'RAPS aprobados','2023-09-08 15:53:08'),(335,NULL,'Pendiente',NULL,84,3,'Funciones','2023-09-08 15:53:08'),(336,'6','Pendiente',NULL,84,2,'Aval','2023-09-08 15:53:08'),(337,'1','Pendiente',NULL,85,1,'Documento completo','2023-09-08 15:53:08'),(338,'1','Pendiente',NULL,85,1,'RAPS aprobados','2023-09-08 15:53:08'),(339,NULL,'Pendiente',NULL,85,3,'Funciones','2023-09-08 15:53:08'),(340,'6','Pendiente',NULL,85,2,'Aval','2023-09-08 15:53:08'),(341,'1','Pendiente',NULL,86,1,'Documento completo','2023-09-08 15:53:08'),(342,'1','Pendiente',NULL,86,1,'RAPS aprobados','2023-09-08 15:53:08'),(343,NULL,'Pendiente',NULL,86,3,'Funciones','2023-09-08 15:53:08'),(344,'6','Pendiente',NULL,86,2,'Aval','2023-09-08 15:53:08'),(345,'1','Pendiente',NULL,87,1,'Documento completo','2023-09-08 15:53:08'),(346,'1','Pendiente',NULL,87,1,'RAPS aprobados','2023-09-08 15:53:08'),(347,NULL,'Pendiente',NULL,87,3,'Funciones','2023-09-08 15:53:08'),(348,'6','Pendiente',NULL,87,2,'Aval','2023-09-08 15:53:08'),(349,'1','Pendiente',NULL,88,1,'Documento completo','2023-09-08 15:53:08'),(350,'1','Pendiente',NULL,88,1,'RAPS aprobados','2023-09-08 15:53:08'),(351,NULL,'Pendiente',NULL,88,3,'Funciones','2023-09-08 15:53:08'),(352,'6','Pendiente',NULL,88,2,'Aval','2023-09-08 15:53:08'),(353,'1','Pendiente',NULL,89,1,'Documento completo','2023-09-08 15:53:08'),(354,'1','Pendiente',NULL,89,1,'RAPS aprobados','2023-09-08 15:53:08'),(355,NULL,'Pendiente',NULL,89,3,'Funciones','2023-09-08 15:53:08'),(356,'6','Pendiente',NULL,89,2,'Aval','2023-09-08 15:53:08'),(357,'1','Pendiente',NULL,90,1,'Documento completo','2023-09-08 15:53:08'),(358,'1','Pendiente',NULL,90,1,'RAPS aprobados','2023-09-08 15:53:08'),(359,NULL,'Pendiente',NULL,90,3,'Funciones','2023-09-08 15:53:08'),(360,'6','Pendiente',NULL,90,2,'Aval','2023-09-08 15:53:08'),(361,'1','Pendiente',NULL,91,1,'Documento completo','2023-09-08 15:53:08'),(362,'1','Aprobado','Ola',91,1,'RAPS aprobados','2023-09-08 17:19:38'),(363,NULL,'Pendiente',NULL,91,3,'Funciones','2023-09-08 15:53:08'),(364,'6','Pendiente',NULL,91,2,'Aval','2023-09-08 15:53:08'),(365,'1','Pendiente',NULL,92,1,'Documento completo','2023-09-08 15:53:08'),(366,'1','Pendiente',NULL,92,1,'RAPS aprobados','2023-09-08 15:53:08'),(367,NULL,'Pendiente',NULL,92,3,'Funciones','2023-09-08 15:53:08'),(368,'6','Pendiente',NULL,92,2,'Aval','2023-09-08 15:53:08'),(369,'1','Pendiente',NULL,93,1,'Documento completo','2023-09-08 15:53:08'),(370,'1','Pendiente',NULL,93,1,'RAPS aprobados','2023-09-08 15:53:08'),(371,NULL,'Pendiente',NULL,93,3,'Funciones','2023-09-08 15:53:08'),(372,'6','Pendiente',NULL,93,2,'Aval','2023-09-08 15:53:08'),(373,'1','Pendiente',NULL,94,1,'Documento completo','2023-09-08 15:53:08'),(374,'1','Pendiente',NULL,94,1,'RAPS aprobados','2023-09-08 15:53:08'),(375,NULL,'Pendiente',NULL,94,3,'Funciones','2023-09-08 15:53:08'),(376,'6','Pendiente',NULL,94,2,'Aval','2023-09-08 15:53:08'),(377,'1','Pendiente',NULL,95,1,'Documento completo','2023-09-08 15:53:08'),(378,'1','Pendiente',NULL,95,1,'RAPS aprobados','2023-09-08 15:53:08'),(379,NULL,'Pendiente',NULL,95,3,'Funciones','2023-09-08 15:53:08'),(380,'6','Pendiente',NULL,95,2,'Aval','2023-09-08 15:53:08'),(381,'1','Aprobado','Ta bien',96,1,'Documento completo','2023-10-04 14:01:37'),(382,'1','Aprobado','Melo',96,1,'RAPS aprobados','2023-10-04 14:01:32'),(383,'1','Aprobado','Funca',96,3,'Funciones','2023-10-04 14:01:40'),(384,'6','Aprobado','Ta bien',96,2,'Aval','2023-10-05 15:10:36'),(385,'1','Pendiente',NULL,97,1,'Documento completo','2023-09-08 15:53:08'),(386,'1','Pendiente',NULL,97,1,'RAPS aprobados','2023-09-08 15:53:08'),(387,NULL,'Pendiente',NULL,97,3,'Funciones','2023-09-08 15:53:08'),(388,'6','Pendiente',NULL,97,2,'Aval','2023-09-08 15:53:08'),(389,'1','Pendiente',NULL,98,1,'Documento completo','2023-09-08 15:53:08'),(390,'1','Pendiente',NULL,98,1,'RAPS aprobados','2023-09-08 15:53:08'),(391,NULL,'Pendiente',NULL,98,3,'Funciones','2023-09-08 15:53:08'),(392,'6','Pendiente',NULL,98,2,'Aval','2023-09-08 15:53:08'),(393,'1','Pendiente',NULL,99,1,'Documento completo','2023-09-08 15:53:08'),(394,'1','Pendiente',NULL,99,1,'RAPS aprobados','2023-09-08 15:53:08'),(395,NULL,'Pendiente',NULL,99,3,'Funciones','2023-09-08 15:53:08'),(396,'6','Pendiente',NULL,99,2,'Aval','2023-09-08 15:53:08'),(397,'1','Pendiente',NULL,100,1,'Documento completo','2023-09-08 15:53:08'),(398,'1','Pendiente',NULL,100,1,'RAPS aprobados','2023-09-08 15:53:08'),(399,NULL,'Pendiente',NULL,100,3,'Funciones','2023-09-08 15:53:08'),(400,'6','Pendiente',NULL,100,2,'Aval','2023-09-08 15:53:08'),(401,'1','Pendiente',NULL,101,1,'Documento completo','2023-09-08 15:53:08'),(402,'1','Pendiente',NULL,101,1,'RAPS aprobados','2023-09-08 15:53:08'),(403,NULL,'Pendiente',NULL,101,3,'Funciones','2023-09-08 15:53:08'),(404,'6','Pendiente',NULL,101,2,'Aval','2023-09-08 15:53:08'),(405,'1','Pendiente',NULL,102,1,'Documento completo','2023-09-08 15:53:08'),(406,'1','Pendiente',NULL,102,1,'RAPS aprobados','2023-09-08 15:53:08'),(407,NULL,'Pendiente',NULL,102,3,'Funciones','2023-09-08 15:53:08'),(408,'6','Pendiente',NULL,102,2,'Aval','2023-09-08 15:53:08'),(409,'1','Pendiente',NULL,103,1,'Documento completo','2023-09-08 15:53:08'),(410,'1','Pendiente',NULL,103,1,'RAPS aprobados','2023-09-08 15:53:08'),(411,NULL,'Pendiente',NULL,103,3,'Funciones','2023-09-08 15:53:08'),(412,'6','Pendiente',NULL,103,2,'Aval','2023-09-08 15:53:08'),(413,'1','Pendiente',NULL,104,1,'Documento completo','2023-09-08 15:53:08'),(414,'1','Pendiente',NULL,104,1,'RAPS aprobados','2023-09-08 15:53:08'),(415,NULL,'Pendiente',NULL,104,3,'Funciones','2023-09-08 15:53:08'),(416,'6','Pendiente',NULL,104,2,'Aval','2023-09-08 15:53:08'),(417,'1','Pendiente',NULL,105,1,'Documento completo','2023-09-08 15:53:08'),(418,'1','Pendiente',NULL,105,1,'RAPS aprobados','2023-09-08 15:53:08'),(419,NULL,'Pendiente',NULL,105,3,'Funciones','2023-09-08 15:53:08'),(420,'6','Pendiente',NULL,105,2,'Aval','2023-09-08 15:53:08'),(421,'1','Pendiente',NULL,106,1,'Documento completo','2023-09-08 15:53:08'),(422,'1','Pendiente',NULL,106,1,'RAPS aprobados','2023-09-08 15:53:08'),(423,NULL,'Pendiente',NULL,106,3,'Funciones','2023-09-08 15:53:08'),(424,'6','Pendiente',NULL,106,2,'Aval','2023-09-08 15:53:08'),(425,'1','Pendiente',NULL,107,1,'Documento completo','2023-09-08 15:53:08'),(426,'1','Pendiente',NULL,107,1,'RAPS aprobados','2023-09-08 15:53:08'),(427,NULL,'Pendiente',NULL,107,3,'Funciones','2023-09-08 15:53:08'),(428,'6','Pendiente',NULL,107,2,'Aval','2023-09-08 15:53:08'),(429,'1','Pendiente',NULL,108,1,'Documento completo','2023-09-08 15:53:08'),(430,'1','Pendiente',NULL,108,1,'RAPS aprobados','2023-09-08 15:53:08'),(431,NULL,'Pendiente',NULL,108,3,'Funciones','2023-09-08 15:53:08'),(432,'6','Pendiente',NULL,108,2,'Aval','2023-09-08 15:53:08'),(433,'1','Pendiente',NULL,109,1,'Documento completo','2023-09-08 15:53:08'),(434,'1','Pendiente',NULL,109,1,'RAPS aprobados','2023-09-08 15:53:08'),(435,NULL,'Pendiente',NULL,109,3,'Funciones','2023-09-08 15:53:08'),(436,'6','Pendiente',NULL,109,2,'Aval','2023-09-08 15:53:08'),(437,'1','Pendiente',NULL,110,1,'Documento completo','2023-09-08 15:53:08'),(438,'1','Pendiente',NULL,110,1,'RAPS aprobados','2023-09-08 15:53:08'),(439,NULL,'Pendiente',NULL,110,3,'Funciones','2023-09-08 15:53:08'),(440,'6','Pendiente',NULL,110,2,'Aval','2023-09-08 15:53:08'),(441,'1','Pendiente',NULL,111,1,'Documento completo','2023-09-08 15:53:08'),(442,'1','Pendiente',NULL,111,1,'RAPS aprobados','2023-09-08 15:53:08'),(443,NULL,'Pendiente',NULL,111,3,'Funciones','2023-09-08 15:53:08'),(444,'6','Pendiente',NULL,111,2,'Aval','2023-09-08 15:53:08'),(445,'1','Pendiente',NULL,112,1,'Documento completo','2023-09-08 15:53:08'),(446,'1','Pendiente',NULL,112,1,'RAPS aprobados','2023-09-08 15:53:08'),(447,NULL,'Pendiente',NULL,112,3,'Funciones','2023-09-08 15:53:08'),(448,'6','Pendiente',NULL,112,2,'Aval','2023-09-08 15:53:08'),(449,'1','Pendiente',NULL,113,1,'Documento completo','2023-09-08 15:53:08'),(450,'1','Pendiente',NULL,113,1,'RAPS aprobados','2023-09-08 15:53:08'),(451,NULL,'Pendiente',NULL,113,3,'Funciones','2023-09-08 15:53:08'),(452,'6','Pendiente',NULL,113,2,'Aval','2023-09-08 15:53:08'),(453,'1','Pendiente',NULL,114,1,'Documento completo','2023-09-08 15:53:08'),(454,'1','Pendiente',NULL,114,1,'RAPS aprobados','2023-09-08 15:53:08'),(455,NULL,'Pendiente',NULL,114,3,'Funciones','2023-09-08 15:53:08'),(456,'6','Pendiente',NULL,114,2,'Aval','2023-09-08 15:53:08'),(457,'1','Pendiente',NULL,115,1,'Documento completo','2023-09-08 15:53:08'),(458,'1','Pendiente',NULL,115,1,'RAPS aprobados','2023-09-08 15:53:08'),(459,NULL,'Pendiente',NULL,115,3,'Funciones','2023-09-08 15:53:08'),(460,'6','Pendiente',NULL,115,2,'Aval','2023-09-08 15:53:08'),(461,'1','Pendiente',NULL,116,1,'Documento completo','2023-09-08 15:53:08'),(462,'1','Pendiente',NULL,116,1,'RAPS aprobados','2023-09-08 15:53:08'),(463,NULL,'Pendiente',NULL,116,3,'Funciones','2023-09-08 15:53:08'),(464,'6','Pendiente',NULL,116,2,'Aval','2023-09-08 15:53:08'),(465,'1','Pendiente',NULL,117,1,'Documento completo','2023-09-08 15:53:08'),(466,'1','Pendiente',NULL,117,1,'RAPS aprobados','2023-09-08 15:53:08'),(467,NULL,'Pendiente',NULL,117,3,'Funciones','2023-09-08 15:53:08'),(468,'6','Pendiente',NULL,117,2,'Aval','2023-09-08 15:53:08'),(469,'1','Pendiente',NULL,118,1,'Documento completo','2023-09-08 15:53:08'),(470,'1','Pendiente',NULL,118,1,'RAPS aprobados','2023-09-08 15:53:08'),(471,NULL,'Pendiente',NULL,118,3,'Funciones','2023-09-08 15:53:08'),(472,'6','Pendiente',NULL,118,2,'Aval','2023-09-08 15:53:08'),(473,'1','Pendiente',NULL,119,1,'Documento completo','2023-09-08 15:53:08'),(474,'1','Pendiente',NULL,119,1,'RAPS aprobados','2023-09-08 15:53:08'),(475,NULL,'Pendiente',NULL,119,3,'Funciones','2023-09-08 15:53:08'),(476,'6','Pendiente',NULL,119,2,'Aval','2023-09-08 15:53:08'),(477,'1','Pendiente',NULL,120,1,'Documento completo','2023-09-08 15:53:08'),(478,'1','Pendiente',NULL,120,1,'RAPS aprobados','2023-09-08 15:53:08'),(479,NULL,'Pendiente',NULL,120,3,'Funciones','2023-09-08 15:53:08'),(480,'6','Pendiente',NULL,120,2,'Aval','2023-09-08 15:53:08'),(481,'1','Pendiente',NULL,121,1,'Documento completo','2023-09-08 15:53:08'),(482,'1','Pendiente',NULL,121,1,'RAPS aprobados','2023-09-08 15:53:08'),(483,NULL,'Pendiente',NULL,121,3,'Funciones','2023-09-08 15:53:08'),(484,'6','Pendiente',NULL,121,2,'Aval','2023-09-08 15:53:08'),(485,'1','Pendiente',NULL,122,1,'Documento completo','2023-09-08 15:53:08'),(486,'1','Pendiente',NULL,122,1,'RAPS aprobados','2023-09-08 15:53:08'),(487,NULL,'Pendiente',NULL,122,3,'Funciones','2023-09-08 15:53:08'),(488,'6','Pendiente',NULL,122,2,'Aval','2023-09-08 15:53:08'),(489,'1','Pendiente',NULL,123,1,'Documento completo','2023-09-08 15:53:08'),(490,'1','Pendiente',NULL,123,1,'RAPS aprobados','2023-09-08 15:53:08'),(491,NULL,'Pendiente',NULL,123,3,'Funciones','2023-09-08 15:53:08'),(492,'6','Pendiente',NULL,123,2,'Aval','2023-09-08 15:53:08'),(493,'1','Pendiente',NULL,124,1,'Documento completo','2023-09-08 15:53:08'),(494,'1','Pendiente',NULL,124,1,'RAPS aprobados','2023-09-08 15:53:08'),(495,NULL,'Pendiente',NULL,124,3,'Funciones','2023-09-08 15:53:08'),(496,'6','Pendiente',NULL,124,2,'Aval','2023-09-08 15:53:08'),(497,'1','Pendiente',NULL,125,1,'Documento completo','2023-09-08 15:53:08'),(498,'1','Pendiente',NULL,125,1,'RAPS aprobados','2023-09-08 15:53:08'),(499,NULL,'Pendiente',NULL,125,3,'Funciones','2023-09-08 15:53:08'),(500,'6','Pendiente',NULL,125,2,'Aval','2023-09-08 15:53:08'),(501,'1','Pendiente',NULL,126,1,'Documento completo','2023-09-08 15:53:08'),(502,'1','Pendiente',NULL,126,1,'RAPS aprobados','2023-09-08 15:53:08'),(503,NULL,'Pendiente',NULL,126,3,'Funciones','2023-09-08 15:53:08'),(504,'6','Pendiente',NULL,126,2,'Aval','2023-09-08 15:53:08'),(505,'1','Pendiente',NULL,127,1,'Documento completo','2023-09-08 15:53:08'),(506,'1','Pendiente',NULL,127,1,'RAPS aprobados','2023-09-08 15:53:08'),(507,NULL,'Pendiente',NULL,127,3,'Funciones','2023-09-08 15:53:08'),(508,'6','Pendiente',NULL,127,2,'Aval','2023-09-08 15:53:08'),(509,'1','Pendiente',NULL,128,1,'Documento completo','2023-09-08 15:53:08'),(510,'1','Pendiente',NULL,128,1,'RAPS aprobados','2023-09-08 15:53:08'),(511,NULL,'Pendiente',NULL,128,3,'Funciones','2023-09-08 15:53:08'),(512,'6','Pendiente',NULL,128,2,'Aval','2023-09-08 15:53:08'),(513,'1','Pendiente',NULL,129,1,'Documento completo','2023-09-08 15:53:08'),(514,'1','Pendiente',NULL,129,1,'RAPS aprobados','2023-09-08 15:53:08'),(515,NULL,'Pendiente',NULL,129,3,'Funciones','2023-09-08 15:53:08'),(516,'6','Pendiente',NULL,129,2,'Aval','2023-09-08 15:53:08'),(517,'1','Pendiente',NULL,130,1,'Documento completo','2023-09-08 15:53:08'),(518,'1','Pendiente',NULL,130,1,'RAPS aprobados','2023-09-08 15:53:08'),(519,NULL,'Pendiente',NULL,130,3,'Funciones','2023-09-08 15:53:08'),(520,'6','Pendiente',NULL,130,2,'Aval','2023-09-08 15:53:08'),(521,'1','Pendiente',NULL,131,1,'Documento completo','2023-09-08 15:53:08'),(522,'1','Pendiente',NULL,131,1,'RAPS aprobados','2023-09-08 15:53:08'),(523,NULL,'Pendiente',NULL,131,3,'Funciones','2023-09-08 15:53:08'),(524,'6','Pendiente',NULL,131,2,'Aval','2023-09-08 15:53:08'),(525,'1','Pendiente',NULL,132,1,'Documento completo','2023-09-08 15:53:08'),(526,'1','Pendiente',NULL,132,1,'RAPS aprobados','2023-09-08 15:53:08'),(527,NULL,'Pendiente',NULL,132,3,'Funciones','2023-09-08 15:53:08'),(528,'6','Pendiente',NULL,132,2,'Aval','2023-09-08 15:53:08'),(529,'1','Pendiente',NULL,133,1,'Documento completo','2023-09-08 15:53:08'),(530,'1','Pendiente',NULL,133,1,'RAPS aprobados','2023-09-08 15:53:08'),(531,NULL,'Pendiente',NULL,133,3,'Funciones','2023-09-08 15:53:08'),(532,'6','Pendiente',NULL,133,2,'Aval','2023-09-08 15:53:08'),(533,'1','Pendiente',NULL,134,1,'Documento completo','2023-09-08 15:53:08'),(534,'1','Pendiente',NULL,134,1,'RAPS aprobados','2023-09-08 15:53:08'),(535,NULL,'Pendiente',NULL,134,3,'Funciones','2023-09-08 15:53:08'),(536,'6','Pendiente',NULL,134,2,'Aval','2023-09-08 15:53:08'),(537,'1','Pendiente',NULL,135,1,'Documento completo','2023-09-08 15:53:08'),(538,'1','Pendiente',NULL,135,1,'RAPS aprobados','2023-09-08 15:53:08'),(539,NULL,'Pendiente',NULL,135,3,'Funciones','2023-09-08 15:53:08'),(540,'6','Pendiente',NULL,135,2,'Aval','2023-09-08 15:53:08'),(541,'1','Pendiente',NULL,136,1,'Documento completo','2023-09-08 15:53:08'),(542,'1','Pendiente',NULL,136,1,'RAPS aprobados','2023-09-08 15:53:08'),(543,NULL,'Pendiente',NULL,136,3,'Funciones','2023-09-08 15:53:08'),(544,'6','Pendiente',NULL,136,2,'Aval','2023-09-08 15:53:08'),(545,'1','Pendiente',NULL,137,1,'Documento completo','2023-09-08 15:53:08'),(546,'1','Pendiente',NULL,137,1,'RAPS aprobados','2023-09-08 15:53:08'),(547,NULL,'Pendiente',NULL,137,3,'Funciones','2023-09-08 15:53:08'),(548,'6','Pendiente',NULL,137,2,'Aval','2023-09-08 15:53:08'),(549,'1','Pendiente',NULL,138,1,'Documento completo','2023-09-08 15:53:08'),(550,'1','Pendiente',NULL,138,1,'RAPS aprobados','2023-09-08 15:53:08'),(551,NULL,'Pendiente',NULL,138,3,'Funciones','2023-09-08 15:53:08'),(552,'6','Pendiente',NULL,138,2,'Aval','2023-09-08 15:53:08'),(553,'1','Pendiente',NULL,139,1,'Documento completo','2023-09-08 15:53:08'),(554,'1','Pendiente',NULL,139,1,'RAPS aprobados','2023-09-08 15:53:08'),(555,NULL,'Pendiente',NULL,139,3,'Funciones','2023-09-08 15:53:08'),(556,'6','Pendiente',NULL,139,2,'Aval','2023-09-08 15:53:08'),(557,'1','Pendiente',NULL,140,1,'Documento completo','2023-09-08 15:53:08'),(558,'1','Pendiente',NULL,140,1,'RAPS aprobados','2023-09-08 15:53:08'),(559,NULL,'Pendiente',NULL,140,3,'Funciones','2023-09-08 15:53:08'),(560,'6','Pendiente',NULL,140,2,'Aval','2023-09-08 15:53:08'),(561,'1','Pendiente',NULL,141,1,'Documento completo','2023-09-08 15:53:08'),(562,'1','Pendiente',NULL,141,1,'RAPS aprobados','2023-09-08 15:53:08'),(563,NULL,'Pendiente',NULL,141,3,'Funciones','2023-09-08 15:53:08'),(564,'6','Pendiente',NULL,141,2,'Aval','2023-09-08 15:53:08'),(565,'1','Pendiente',NULL,142,1,'Documento completo','2023-09-08 15:53:08'),(566,'1','Pendiente',NULL,142,1,'RAPS aprobados','2023-09-08 15:53:08'),(567,NULL,'Pendiente',NULL,142,3,'Funciones','2023-09-08 15:53:08'),(568,'6','Pendiente',NULL,142,2,'Aval','2023-09-08 15:53:08'),(569,'1','Pendiente',NULL,143,1,'Documento completo','2023-09-08 15:53:08'),(570,'1','Pendiente',NULL,143,1,'RAPS aprobados','2023-09-08 15:53:08'),(571,NULL,'Pendiente',NULL,143,3,'Funciones','2023-09-08 15:53:08'),(572,'6','Pendiente',NULL,143,2,'Aval','2023-09-08 15:53:08'),(573,'1','Pendiente',NULL,144,1,'Documento completo','2023-09-08 15:53:08'),(574,'1','Pendiente',NULL,144,1,'RAPS aprobados','2023-09-08 15:53:08'),(575,NULL,'Pendiente',NULL,144,3,'Funciones','2023-09-08 15:53:08'),(576,'6','Pendiente',NULL,144,2,'Aval','2023-09-08 15:53:08'),(577,'1','Pendiente',NULL,145,1,'Documento completo','2023-09-08 15:53:08'),(578,'1','Pendiente',NULL,145,1,'RAPS aprobados','2023-09-08 15:53:08'),(579,NULL,'Pendiente',NULL,145,3,'Funciones','2023-09-08 15:53:08'),(580,'6','Pendiente',NULL,145,2,'Aval','2023-09-08 15:53:08'),(581,'1','Pendiente',NULL,146,1,'Documento completo','2023-09-08 15:53:08'),(582,'1','Pendiente',NULL,146,1,'RAPS aprobados','2023-09-08 15:53:08'),(583,NULL,'Pendiente',NULL,146,3,'Funciones','2023-09-08 15:53:08'),(584,'6','Pendiente',NULL,146,2,'Aval','2023-09-08 15:53:08'),(585,'1','Pendiente',NULL,147,1,'Documento completo','2023-09-08 15:53:08'),(586,'1','Pendiente',NULL,147,1,'RAPS aprobados','2023-09-08 15:53:08'),(587,NULL,'Pendiente',NULL,147,3,'Funciones','2023-09-08 15:53:08'),(588,'6','Pendiente',NULL,147,2,'Aval','2023-09-08 15:53:08'),(589,'1','Pendiente',NULL,148,1,'Documento completo','2023-09-08 15:53:08'),(590,'1','Pendiente',NULL,148,1,'RAPS aprobados','2023-09-08 15:53:08'),(591,NULL,'Pendiente',NULL,148,3,'Funciones','2023-09-08 15:53:08'),(592,'6','Pendiente',NULL,148,2,'Aval','2023-09-08 15:53:08'),(593,'1','Pendiente',NULL,149,1,'Documento completo','2023-09-08 15:53:08'),(594,'1','Pendiente',NULL,149,1,'RAPS aprobados','2023-09-08 15:53:08'),(595,NULL,'Pendiente',NULL,149,3,'Funciones','2023-09-08 15:53:08'),(596,'6','Pendiente',NULL,149,2,'Aval','2023-09-08 15:53:08'),(597,'1','Pendiente',NULL,150,1,'Documento completo','2023-09-08 15:53:08'),(598,'1','Pendiente',NULL,150,1,'RAPS aprobados','2023-09-08 15:53:08'),(599,NULL,'Pendiente',NULL,150,3,'Funciones','2023-09-08 15:53:08'),(600,'6','Pendiente',NULL,150,2,'Aval','2023-09-08 15:53:08'),(601,'1','Pendiente',NULL,151,1,'Documento completo','2023-09-08 15:53:08'),(602,'1','Pendiente',NULL,151,1,'RAPS aprobados','2023-09-08 15:53:08'),(603,NULL,'Pendiente',NULL,151,3,'Funciones','2023-09-08 15:53:08'),(604,'6','Pendiente',NULL,151,2,'Aval','2023-09-08 15:53:08'),(605,'1','Pendiente',NULL,152,1,'Documento completo','2023-09-08 15:53:08'),(606,'1','Pendiente',NULL,152,1,'RAPS aprobados','2023-09-08 15:53:08'),(607,NULL,'Pendiente',NULL,152,3,'Funciones','2023-09-08 15:53:08'),(608,'6','Pendiente',NULL,152,2,'Aval','2023-09-08 15:53:08'),(609,'1','Pendiente',NULL,153,1,'Documento completo','2023-09-08 15:53:08'),(610,'1','Pendiente',NULL,153,1,'RAPS aprobados','2023-09-08 15:53:08'),(611,NULL,'Pendiente',NULL,153,3,'Funciones','2023-09-08 15:53:08'),(612,'6','Pendiente',NULL,153,2,'Aval','2023-09-08 15:53:08'),(613,'1','Pendiente',NULL,154,1,'Documento completo','2023-09-08 15:53:08'),(614,'1','Pendiente',NULL,154,1,'RAPS aprobados','2023-09-08 15:53:08'),(615,NULL,'Pendiente',NULL,154,3,'Funciones','2023-09-08 15:53:08'),(616,'6','Pendiente',NULL,154,2,'Aval','2023-09-08 15:53:08'),(617,'1','Pendiente',NULL,155,1,'Documento completo','2023-09-08 15:53:08'),(618,'1','Pendiente',NULL,155,1,'RAPS aprobados','2023-09-08 15:53:08'),(619,NULL,'Pendiente',NULL,155,3,'Funciones','2023-09-08 15:53:08'),(620,'6','Pendiente',NULL,155,2,'Aval','2023-09-08 15:53:08'),(621,'1','Pendiente',NULL,156,1,'Documento completo','2023-09-08 15:53:08'),(622,'1','Pendiente',NULL,156,1,'RAPS aprobados','2023-09-08 15:53:08'),(623,NULL,'Pendiente',NULL,156,3,'Funciones','2023-09-08 15:53:08'),(624,'6','Pendiente',NULL,156,2,'Aval','2023-09-08 15:53:08'),(625,'1','Pendiente',NULL,157,1,'Documento completo','2023-09-08 15:53:08'),(626,'1','Pendiente',NULL,157,1,'RAPS aprobados','2023-09-08 15:53:08'),(627,NULL,'Pendiente',NULL,157,3,'Funciones','2023-09-08 15:53:08'),(628,'6','Pendiente',NULL,157,2,'Aval','2023-09-08 15:53:08'),(629,'1','Pendiente',NULL,158,1,'Documento completo','2023-09-08 15:53:08'),(630,'1','Pendiente',NULL,158,1,'RAPS aprobados','2023-09-08 15:53:08'),(631,NULL,'Pendiente',NULL,158,3,'Funciones','2023-09-08 15:53:08'),(632,'6','Pendiente',NULL,158,2,'Aval','2023-09-08 15:53:08'),(633,'1','Pendiente',NULL,159,1,'Documento completo','2023-09-08 15:53:08'),(634,'1','Pendiente',NULL,159,1,'RAPS aprobados','2023-09-08 15:53:08'),(635,NULL,'Pendiente',NULL,159,3,'Funciones','2023-09-08 15:53:08'),(636,'6','Pendiente',NULL,159,2,'Aval','2023-09-08 15:53:08'),(637,'1','Pendiente',NULL,160,1,'Documento completo','2023-09-08 15:53:08'),(638,'1','Pendiente',NULL,160,1,'RAPS aprobados','2023-09-08 15:53:08'),(639,NULL,'Pendiente',NULL,160,3,'Funciones','2023-09-08 15:53:08'),(640,'6','Pendiente',NULL,160,2,'Aval','2023-09-08 15:53:08'),(641,'1','Pendiente',NULL,161,1,'Documento completo','2023-09-08 15:53:08'),(642,'1','Pendiente',NULL,161,1,'RAPS aprobados','2023-09-08 15:53:08'),(643,NULL,'Pendiente',NULL,161,3,'Funciones','2023-09-08 15:53:08'),(644,'6','Pendiente',NULL,161,2,'Aval','2023-09-08 15:53:08'),(645,'1','Pendiente',NULL,162,1,'Documento completo','2023-09-08 15:53:08'),(646,'1','Pendiente',NULL,162,1,'RAPS aprobados','2023-09-08 15:53:08'),(647,NULL,'Pendiente',NULL,162,3,'Funciones','2023-09-08 15:53:08'),(648,'6','Pendiente',NULL,162,2,'Aval','2023-09-08 15:53:08'),(649,'1','Pendiente',NULL,163,1,'Documento completo','2023-09-08 15:53:08'),(650,'1','Pendiente',NULL,163,1,'RAPS aprobados','2023-09-08 15:53:08'),(651,NULL,'Pendiente',NULL,163,3,'Funciones','2023-09-08 15:53:08'),(652,'6','Pendiente',NULL,163,2,'Aval','2023-09-08 15:53:08'),(653,'1','Pendiente',NULL,164,1,'Documento completo','2023-09-08 15:53:08'),(654,'1','Pendiente',NULL,164,1,'RAPS aprobados','2023-09-08 15:53:08'),(655,NULL,'Pendiente',NULL,164,3,'Funciones','2023-09-08 15:53:08'),(656,'6','Pendiente',NULL,164,2,'Aval','2023-09-08 15:53:08'),(657,'1','Pendiente',NULL,165,1,'Documento completo','2023-09-08 15:53:08'),(658,'1','Pendiente',NULL,165,1,'RAPS aprobados','2023-09-08 15:53:08'),(659,NULL,'Pendiente',NULL,165,3,'Funciones','2023-09-08 15:53:08'),(660,'6','Pendiente',NULL,165,2,'Aval','2023-09-08 15:53:08'),(661,'1','Pendiente',NULL,166,1,'Documento completo','2023-09-08 15:53:08'),(662,'1','Pendiente',NULL,166,1,'RAPS aprobados','2023-09-08 15:53:08'),(663,NULL,'Pendiente',NULL,166,3,'Funciones','2023-09-08 15:53:08'),(664,'6','Pendiente',NULL,166,2,'Aval','2023-09-08 15:53:08'),(665,'1','Pendiente',NULL,167,1,'Documento completo','2023-09-08 15:53:08'),(666,'1','Pendiente',NULL,167,1,'RAPS aprobados','2023-09-08 15:53:08'),(667,NULL,'Pendiente',NULL,167,3,'Funciones','2023-09-08 15:53:08'),(668,'6','Pendiente',NULL,167,2,'Aval','2023-09-08 15:53:08'),(669,'1','Pendiente',NULL,168,1,'Documento completo','2023-09-08 15:53:08'),(670,'1','Pendiente',NULL,168,1,'RAPS aprobados','2023-09-08 15:53:08'),(671,NULL,'Pendiente',NULL,168,3,'Funciones','2023-09-08 15:53:08'),(672,'6','Pendiente',NULL,168,2,'Aval','2023-09-08 15:53:08'),(673,'1','Pendiente',NULL,169,1,'Documento completo','2023-09-08 15:53:08'),(674,'1','Pendiente',NULL,169,1,'RAPS aprobados','2023-09-08 15:53:08'),(675,NULL,'Pendiente',NULL,169,3,'Funciones','2023-09-08 15:53:08'),(676,'6','Pendiente',NULL,169,2,'Aval','2023-09-08 15:53:08'),(677,'1','Pendiente',NULL,170,1,'Documento completo','2023-09-08 15:53:08'),(678,'1','Pendiente',NULL,170,1,'RAPS aprobados','2023-09-08 15:53:08'),(679,NULL,'Pendiente',NULL,170,3,'Funciones','2023-09-08 15:53:08'),(680,'6','Pendiente',NULL,170,2,'Aval','2023-09-08 15:53:08'),(681,'1','Pendiente',NULL,171,1,'Documento completo','2023-09-08 15:53:08'),(682,'1','Pendiente',NULL,171,1,'RAPS aprobados','2023-09-08 15:53:08'),(683,NULL,'Pendiente',NULL,171,3,'Funciones','2023-09-08 15:53:08'),(684,'6','Pendiente',NULL,171,2,'Aval','2023-09-08 15:53:08'),(685,'1','Pendiente',NULL,172,1,'Documento completo','2023-09-08 15:53:08'),(686,'1','Pendiente',NULL,172,1,'RAPS aprobados','2023-09-08 15:53:08'),(687,NULL,'Pendiente',NULL,172,3,'Funciones','2023-09-08 15:53:08'),(688,'6','Pendiente',NULL,172,2,'Aval','2023-09-08 15:53:08'),(689,'1','Pendiente',NULL,173,1,'Documento completo','2023-09-08 15:53:08'),(690,'1','Pendiente',NULL,173,1,'RAPS aprobados','2023-09-08 15:53:08'),(691,NULL,'Pendiente',NULL,173,3,'Funciones','2023-09-08 15:53:08'),(692,'6','Pendiente',NULL,173,2,'Aval','2023-09-08 15:53:08'),(693,'1','Pendiente',NULL,174,1,'Documento completo','2023-09-08 15:53:08'),(694,'1','Pendiente',NULL,174,1,'RAPS aprobados','2023-09-08 15:53:08'),(695,NULL,'Pendiente',NULL,174,3,'Funciones','2023-09-08 15:53:08'),(696,'6','Pendiente',NULL,174,2,'Aval','2023-09-08 15:53:08'),(697,'1','Pendiente',NULL,175,1,'Documento completo','2023-09-08 15:53:08'),(698,'1','Pendiente',NULL,175,1,'RAPS aprobados','2023-09-08 15:53:08'),(699,NULL,'Pendiente',NULL,175,3,'Funciones','2023-09-08 15:53:08'),(700,'6','Pendiente',NULL,175,2,'Aval','2023-09-08 15:53:08'),(701,'1','Pendiente',NULL,176,1,'Documento completo','2023-09-08 15:53:08'),(702,'1','Pendiente',NULL,176,1,'RAPS aprobados','2023-09-08 15:53:08'),(703,NULL,'Pendiente',NULL,176,3,'Funciones','2023-09-08 15:53:08'),(704,'6','Pendiente',NULL,176,2,'Aval','2023-09-08 15:53:08'),(705,'1','Pendiente',NULL,177,1,'Documento completo','2023-09-08 15:53:08'),(706,'1','Pendiente',NULL,177,1,'RAPS aprobados','2023-09-08 15:53:08'),(707,NULL,'Pendiente',NULL,177,3,'Funciones','2023-09-08 15:53:08'),(708,'6','Pendiente',NULL,177,2,'Aval','2023-09-08 15:53:08'),(709,'1','Pendiente',NULL,178,1,'Documento completo','2023-09-08 15:53:08'),(710,'1','Pendiente',NULL,178,1,'RAPS aprobados','2023-09-08 15:53:08'),(711,NULL,'Pendiente',NULL,178,3,'Funciones','2023-09-08 15:53:08'),(712,'6','Pendiente',NULL,178,2,'Aval','2023-09-08 15:53:08'),(713,'1','Pendiente',NULL,179,1,'Documento completo','2023-09-08 15:53:08'),(714,'1','Pendiente',NULL,179,1,'RAPS aprobados','2023-09-08 15:53:08'),(715,NULL,'Pendiente',NULL,179,3,'Funciones','2023-09-08 15:53:08'),(716,'6','Pendiente',NULL,179,2,'Aval','2023-09-08 15:53:08'),(717,'1','Pendiente',NULL,180,1,'Documento completo','2023-09-08 15:53:08'),(718,'1','Pendiente',NULL,180,1,'RAPS aprobados','2023-09-08 15:53:08'),(719,NULL,'Pendiente',NULL,180,3,'Funciones','2023-09-08 15:53:08'),(720,'6','Pendiente',NULL,180,2,'Aval','2023-09-08 15:53:08'),(721,'1','Pendiente',NULL,181,1,'Documento completo','2023-09-08 15:53:08'),(722,'1','Pendiente',NULL,181,1,'RAPS aprobados','2023-09-08 15:53:08'),(723,NULL,'Pendiente',NULL,181,3,'Funciones','2023-09-08 15:53:08'),(724,'6','Pendiente',NULL,181,2,'Aval','2023-09-08 15:53:08'),(725,'1','Pendiente',NULL,182,1,'Documento completo','2023-09-08 15:53:08'),(726,'1','Pendiente',NULL,182,1,'RAPS aprobados','2023-09-08 15:53:08'),(727,NULL,'Pendiente',NULL,182,3,'Funciones','2023-09-08 15:53:08'),(728,'6','Pendiente',NULL,182,2,'Aval','2023-09-08 15:53:08'),(729,'1','Pendiente',NULL,183,1,'Documento completo','2023-09-08 15:53:08'),(730,'1','Pendiente',NULL,183,1,'RAPS aprobados','2023-09-08 15:53:08'),(731,NULL,'Pendiente',NULL,183,3,'Funciones','2023-09-08 15:53:08'),(732,'6','Pendiente',NULL,183,2,'Aval','2023-09-08 15:53:08'),(733,'1','Pendiente',NULL,184,1,'Documento completo','2023-09-08 15:53:08'),(734,'1','Pendiente',NULL,184,1,'RAPS aprobados','2023-09-08 15:53:08'),(735,NULL,'Pendiente',NULL,184,3,'Funciones','2023-09-08 15:53:08'),(736,'6','Pendiente',NULL,184,2,'Aval','2023-09-08 15:53:08'),(737,'1','Pendiente',NULL,185,1,'Documento completo','2023-09-08 15:53:08'),(738,'1','Pendiente',NULL,185,1,'RAPS aprobados','2023-09-08 15:53:08'),(739,NULL,'Pendiente',NULL,185,3,'Funciones','2023-09-08 15:53:08'),(740,'6','Pendiente',NULL,185,2,'Aval','2023-09-08 15:53:08'),(741,'1','Pendiente',NULL,186,1,'Documento completo','2023-09-08 15:53:08'),(742,'1','Pendiente',NULL,186,1,'RAPS aprobados','2023-09-08 15:53:08'),(743,NULL,'Pendiente',NULL,186,3,'Funciones','2023-09-08 15:53:08'),(744,'6','Pendiente',NULL,186,2,'Aval','2023-09-08 15:53:08'),(745,'1','Pendiente',NULL,187,1,'Documento completo','2023-09-08 15:53:08'),(746,'1','Pendiente',NULL,187,1,'RAPS aprobados','2023-09-08 15:53:08'),(747,NULL,'Pendiente',NULL,187,3,'Funciones','2023-09-08 15:53:08'),(748,'6','Pendiente',NULL,187,2,'Aval','2023-09-08 15:53:08'),(749,'1','Pendiente',NULL,188,1,'Documento completo','2023-09-08 15:53:08'),(750,'1','Pendiente',NULL,188,1,'RAPS aprobados','2023-09-08 15:53:08'),(751,NULL,'Pendiente',NULL,188,3,'Funciones','2023-09-08 15:53:08'),(752,'6','Pendiente',NULL,188,2,'Aval','2023-09-08 15:53:08'),(753,'1','Pendiente',NULL,189,1,'Documento completo','2023-09-08 15:53:08'),(754,'1','Pendiente',NULL,189,1,'RAPS aprobados','2023-09-08 15:53:08'),(755,NULL,'Pendiente',NULL,189,3,'Funciones','2023-09-08 15:53:08'),(756,'6','Pendiente',NULL,189,2,'Aval','2023-09-08 15:53:08'),(757,'1','Pendiente',NULL,190,1,'Documento completo','2023-09-08 15:53:08'),(758,'1','Pendiente',NULL,190,1,'RAPS aprobados','2023-09-08 15:53:08'),(759,NULL,'Pendiente',NULL,190,3,'Funciones','2023-09-08 15:53:08'),(760,'6','Pendiente',NULL,190,2,'Aval','2023-09-08 15:53:08'),(761,'1','Pendiente',NULL,191,1,'Documento completo','2023-09-08 15:53:08'),(762,'1','Pendiente',NULL,191,1,'RAPS aprobados','2023-09-08 15:53:08'),(763,NULL,'Pendiente',NULL,191,3,'Funciones','2023-09-08 15:53:08'),(764,'6','Pendiente',NULL,191,2,'Aval','2023-09-08 15:53:08'),(765,'1','Pendiente',NULL,192,1,'Documento completo','2023-09-08 15:53:08'),(766,'1','Pendiente',NULL,192,1,'RAPS aprobados','2023-09-08 15:53:08'),(767,NULL,'Pendiente',NULL,192,3,'Funciones','2023-09-08 15:53:08'),(768,'6','Pendiente',NULL,192,2,'Aval','2023-09-08 15:53:08'),(769,'1','Pendiente',NULL,193,1,'Documento completo','2023-09-08 15:53:08'),(770,'1','Pendiente',NULL,193,1,'RAPS aprobados','2023-09-08 15:53:08'),(771,NULL,'Pendiente',NULL,193,3,'Funciones','2023-09-08 15:53:08'),(772,'6','Pendiente',NULL,193,2,'Aval','2023-09-08 15:53:08'),(773,'1','Pendiente',NULL,194,1,'Documento completo','2023-09-08 15:53:08'),(774,'1','Pendiente',NULL,194,1,'RAPS aprobados','2023-09-08 15:53:08'),(775,NULL,'Pendiente',NULL,194,3,'Funciones','2023-09-08 15:53:08'),(776,'6','Pendiente',NULL,194,2,'Aval','2023-09-08 15:53:08'),(777,'1','Pendiente',NULL,195,1,'Documento completo','2023-09-08 15:53:08'),(778,'1','Pendiente',NULL,195,1,'RAPS aprobados','2023-09-08 15:53:08'),(779,NULL,'Pendiente',NULL,195,3,'Funciones','2023-09-08 15:53:08'),(780,'6','Pendiente',NULL,195,2,'Aval','2023-09-08 15:53:08'),(781,'1','Pendiente',NULL,196,1,'Documento completo','2023-09-08 15:53:08'),(782,'1','Pendiente',NULL,196,1,'RAPS aprobados','2023-09-08 15:53:08'),(783,NULL,'Pendiente',NULL,196,3,'Funciones','2023-09-08 15:53:08'),(784,'6','Pendiente',NULL,196,2,'Aval','2023-09-08 15:53:08'),(785,'1','Pendiente',NULL,197,1,'Documento completo','2023-09-08 15:53:08'),(786,'1','Pendiente',NULL,197,1,'RAPS aprobados','2023-09-08 15:53:08'),(787,NULL,'Pendiente',NULL,197,3,'Funciones','2023-09-08 15:53:08'),(788,'6','Pendiente',NULL,197,2,'Aval','2023-09-08 15:53:08'),(789,'1','Pendiente',NULL,198,1,'Documento completo','2023-09-08 15:53:08'),(790,'1','Pendiente',NULL,198,1,'RAPS aprobados','2023-09-08 15:53:08'),(791,NULL,'Pendiente',NULL,198,3,'Funciones','2023-09-08 15:53:08'),(792,'6','Pendiente',NULL,198,2,'Aval','2023-09-08 15:53:08'),(793,'1','Pendiente',NULL,199,1,'Documento completo','2023-09-08 15:53:08'),(794,'1','Pendiente',NULL,199,1,'RAPS aprobados','2023-09-08 15:53:08'),(795,NULL,'Pendiente',NULL,199,3,'Funciones','2023-09-08 15:53:08'),(796,'6','Pendiente',NULL,199,2,'Aval','2023-09-08 15:53:08'),(797,'1','Pendiente',NULL,200,1,'Documento completo','2023-09-08 15:53:08'),(798,'1','Pendiente',NULL,200,1,'RAPS aprobados','2023-09-08 15:53:08'),(799,NULL,'Pendiente',NULL,200,3,'Funciones','2023-09-08 15:53:08'),(800,'6','Pendiente',NULL,200,2,'Aval','2023-09-08 15:53:08'),(801,'1','Pendiente',NULL,201,1,'Documento completo','2023-09-08 15:53:08'),(802,'1','Pendiente',NULL,201,1,'RAPS aprobados','2023-09-08 15:53:08'),(803,NULL,'Pendiente',NULL,201,3,'Funciones','2023-09-08 15:53:08'),(804,'6','Pendiente',NULL,201,2,'Aval','2023-09-08 15:53:08'),(805,'1','Pendiente',NULL,202,1,'Documento completo','2023-09-08 15:53:08'),(806,'1','Pendiente',NULL,202,1,'RAPS aprobados','2023-09-08 15:53:08'),(807,NULL,'Pendiente',NULL,202,3,'Funciones','2023-09-08 15:53:08'),(808,'6','Pendiente',NULL,202,2,'Aval','2023-09-08 15:53:08'),(809,'1','Pendiente',NULL,203,1,'Documento completo','2023-09-08 15:53:08'),(810,'1','Pendiente',NULL,203,1,'RAPS aprobados','2023-09-08 15:53:08'),(811,NULL,'Pendiente',NULL,203,3,'Funciones','2023-09-08 15:53:08'),(812,'6','Pendiente',NULL,203,2,'Aval','2023-09-08 15:53:08'),(813,'1','Pendiente',NULL,204,1,'Documento completo','2023-09-08 15:53:08'),(814,'1','Pendiente',NULL,204,1,'RAPS aprobados','2023-09-08 15:53:08'),(815,NULL,'Pendiente',NULL,204,3,'Funciones','2023-09-08 15:53:08'),(816,'6','Pendiente',NULL,204,2,'Aval','2023-09-08 15:53:08'),(817,'1','Pendiente',NULL,205,1,'Documento completo','2023-09-08 15:53:08'),(818,'1','Pendiente',NULL,205,1,'RAPS aprobados','2023-09-08 15:53:08'),(819,NULL,'Pendiente',NULL,205,3,'Funciones','2023-09-08 15:53:08'),(820,'6','Pendiente',NULL,205,2,'Aval','2023-09-08 15:53:08'),(821,'1','Pendiente',NULL,206,1,'Documento completo','2023-09-08 15:53:08'),(822,'1','Pendiente',NULL,206,1,'RAPS aprobados','2023-09-08 15:53:08'),(823,NULL,'Pendiente',NULL,206,3,'Funciones','2023-09-08 15:53:08'),(824,'6','Pendiente',NULL,206,2,'Aval','2023-09-08 15:53:08'),(825,'1','Pendiente',NULL,207,1,'Documento completo','2023-09-08 15:53:08'),(826,'1','Pendiente',NULL,207,1,'RAPS aprobados','2023-09-08 15:53:08'),(827,NULL,'Pendiente',NULL,207,3,'Funciones','2023-09-08 15:53:08'),(828,'6','Pendiente',NULL,207,2,'Aval','2023-09-08 15:53:08'),(829,'1','Pendiente',NULL,208,1,'Documento completo','2023-09-08 15:53:08'),(830,'1','Pendiente',NULL,208,1,'RAPS aprobados','2023-09-08 15:53:08'),(831,NULL,'Pendiente',NULL,208,3,'Funciones','2023-09-08 15:53:08'),(832,'6','Pendiente',NULL,208,2,'Aval','2023-09-08 15:53:08'),(833,'1','Pendiente',NULL,209,1,'Documento completo','2023-09-08 15:53:08'),(834,'1','Pendiente',NULL,209,1,'RAPS aprobados','2023-09-08 15:53:08'),(835,NULL,'Pendiente',NULL,209,3,'Funciones','2023-09-08 15:53:08'),(836,'6','Pendiente',NULL,209,2,'Aval','2023-09-08 15:53:08'),(837,'1','Pendiente',NULL,210,1,'Documento completo','2023-09-08 15:53:08'),(838,'1','Pendiente',NULL,210,1,'RAPS aprobados','2023-09-08 15:53:08'),(839,NULL,'Pendiente',NULL,210,3,'Funciones','2023-09-08 15:53:08'),(840,'6','Pendiente',NULL,210,2,'Aval','2023-09-08 15:53:08'),(841,'1','Pendiente',NULL,211,1,'Documento completo','2023-09-08 15:53:08'),(842,'1','Pendiente',NULL,211,1,'RAPS aprobados','2023-09-08 15:53:08'),(843,NULL,'Pendiente',NULL,211,3,'Funciones','2023-09-08 15:53:08'),(844,'6','Pendiente',NULL,211,2,'Aval','2023-09-08 15:53:08'),(845,'1','Pendiente',NULL,212,1,'Documento completo','2023-09-08 15:53:08'),(846,'1','Pendiente',NULL,212,1,'RAPS aprobados','2023-09-08 15:53:08'),(847,NULL,'Pendiente',NULL,212,3,'Funciones','2023-09-08 15:53:08'),(848,'6','Pendiente',NULL,212,2,'Aval','2023-09-08 15:53:08'),(849,'1','Pendiente',NULL,213,1,'Documento completo','2023-09-08 15:53:08'),(850,'1','Pendiente',NULL,213,1,'RAPS aprobados','2023-09-08 15:53:08'),(851,NULL,'Pendiente',NULL,213,3,'Funciones','2023-09-08 15:53:08'),(852,'6','Pendiente',NULL,213,2,'Aval','2023-09-08 15:53:08'),(853,'1','Pendiente',NULL,214,1,'Documento completo','2023-09-08 15:53:08'),(854,'1','Pendiente',NULL,214,1,'RAPS aprobados','2023-09-08 15:53:08'),(855,NULL,'Pendiente',NULL,214,3,'Funciones','2023-09-08 15:53:08'),(856,'6','Pendiente',NULL,214,2,'Aval','2023-09-08 15:53:08'),(857,'1','Pendiente',NULL,215,1,'Documento completo','2023-09-08 15:53:08'),(858,'1','Pendiente',NULL,215,1,'RAPS aprobados','2023-09-08 15:53:08'),(859,NULL,'Pendiente',NULL,215,3,'Funciones','2023-09-08 15:53:08'),(860,'6','Pendiente',NULL,215,2,'Aval','2023-09-08 15:53:08'),(861,'1','Pendiente',NULL,216,1,'Documento completo','2023-09-08 15:53:08'),(862,'1','Pendiente',NULL,216,1,'RAPS aprobados','2023-09-08 15:53:08'),(863,NULL,'Pendiente',NULL,216,3,'Funciones','2023-09-08 15:53:08'),(864,'6','Pendiente',NULL,216,2,'Aval','2023-09-08 15:53:08'),(865,'1','Pendiente',NULL,217,1,'Documento completo','2023-09-08 15:53:08'),(866,'1','Pendiente',NULL,217,1,'RAPS aprobados','2023-09-08 15:53:08'),(867,NULL,'Pendiente',NULL,217,3,'Funciones','2023-09-08 15:53:08'),(868,'6','Pendiente',NULL,217,2,'Aval','2023-09-08 15:53:08'),(869,'1','Pendiente',NULL,218,1,'Documento completo','2023-09-08 15:53:08'),(870,'1','Pendiente',NULL,218,1,'RAPS aprobados','2023-09-08 15:53:08'),(871,NULL,'Pendiente',NULL,218,3,'Funciones','2023-09-08 15:53:08'),(872,'6','Pendiente',NULL,218,2,'Aval','2023-09-08 15:53:08'),(873,'1','Pendiente',NULL,219,1,'Documento completo','2023-09-08 15:53:08'),(874,'1','Rechazado','Todo malo',219,1,'RAPS aprobados','2023-09-08 20:50:18'),(875,NULL,'Pendiente',NULL,219,3,'Funciones','2023-09-08 15:53:08'),(876,'6','Pendiente',NULL,219,2,'Aval','2023-09-08 15:53:08'),(877,'1','Pendiente',NULL,220,1,'Documento completo','2023-09-08 15:53:08'),(878,'1','Pendiente',NULL,220,1,'RAPS aprobados','2023-09-08 15:53:08'),(879,NULL,'Pendiente',NULL,220,3,'Funciones','2023-09-08 15:53:08'),(880,'6','Pendiente',NULL,220,2,'Aval','2023-09-08 15:53:08'),(881,'1','Pendiente',NULL,221,1,'Documento completo','2023-09-08 15:53:08'),(882,'1','Pendiente',NULL,221,1,'RAPS aprobados','2023-09-08 15:53:08'),(883,NULL,'Pendiente',NULL,221,3,'Funciones','2023-09-08 15:53:08'),(884,'6','Pendiente',NULL,221,2,'Aval','2023-09-08 15:53:08'),(885,'1','Pendiente',NULL,222,1,'Documento completo','2023-09-08 15:53:08'),(886,'1','Pendiente',NULL,222,1,'RAPS aprobados','2023-09-08 15:53:08'),(887,NULL,'Pendiente',NULL,222,3,'Funciones','2023-09-08 15:53:08'),(888,'6','Pendiente',NULL,222,2,'Aval','2023-09-08 15:53:08'),(889,'1','Pendiente',NULL,223,1,'Documento completo','2023-09-08 15:53:08'),(890,'1','Pendiente',NULL,223,1,'RAPS aprobados','2023-09-08 15:53:08'),(891,NULL,'Pendiente',NULL,223,3,'Funciones','2023-09-08 15:53:08'),(892,'6','Pendiente',NULL,223,2,'Aval','2023-09-08 15:53:08'); /*!40000 ALTER TABLE `detalles_inscripciones` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; @@ -479,119 +479,122 @@ DELIMITER ;; DECLARE var_id_ficha_creada INT; DECLARE var_id_estudiante_registrado INT; - - - -- Verificar si todos los detalles_inscripciones relacionados al id_inscripcion están en "Aprobado" -SELECT - COUNT(*) -INTO total_aprobados FROM - detalles_inscripciones -WHERE - id_inscripcion = NEW.id_inscripcion - AND estado_aval = 'Aprobado'; - - IF total_aprobados = 4 THEN - -- Cambiar el estado_general_inscripcion a "Aprobado" en la tabla inscripciones - UPDATE inscripciones SET estado_general_inscripcion = 'Aprobado' WHERE id_inscripcion = NEW.id_inscripcion; - - -- Obtener los datos necesarios para crear el nuevo aprendiz (aprendiz) -SELECT - nombre_inscripcion, - apellido_inscripcion, - tipo_documento_inscripcion, - documento_inscripcion, - email_inscripcion, - inscripcion_celular, - arl, - modalidad_inscripcion, - fecha_fin_lectiva_inscripcion, - numero_ficha_inscripcion, - nombre_programa_inscripcion, - nivel_formacion_inscripcion - INTO - var_nombre_aprendiz, - var_apellido_aprendiz, - var_tipo_documento_aprendiz, - var_numero_documento_aprendiz, - var_email_aprendiz, - var_celular_aprendiz, - var_arl_paga, - var_modalidad_inscripcion, - fecha_fin_lectiva_inscripcion_sum, - var_numero_ficha_inscripcion, - var_nombre_programa_inscripcion, - var_nivel_formacion_inscripcion - FROM - inscripciones -WHERE - id_inscripcion = NEW.id_inscripcion; + SET @check_approve = NEW.responsable_aval; - -- Obtener datos de la empresa - SELECT nit_empresa_inscripcion, nombre_empresa_inscripcion, direccion_empresa_inscripcion INTO var_nit_empresa, var_nombre_empresa, var_direccion_empresa FROM inscripciones WHERE id_inscripcion = NEW.id_inscripcion; - IF var_nit_empresa IS NOT NULL THEN - SELECT direccion_sede_empresa INTO @check_direccion FROM detalle_empresas WHERE direccion_sede_empresa = var_direccion_empresa; - # Agregar datos a la tabla empresas - IF @check_direccion IS NULL THEN - INSERT INTO detalle_empresas (direccion_sede_empresa) VALUES (var_direccion_empresa); - SET @id_detalle_empresa_insertada = LAST_INSERT_ID(); + IF @check_approve IS NULL THEN + -- Verificar si todos los detalles_inscripciones relacionados al id_inscripcion están en "Aprobado" + SELECT + COUNT(*) + INTO total_aprobados FROM + detalles_inscripciones + WHERE + id_inscripcion = NEW.id_inscripcion + AND estado_aval = 'Aprobado'; + + IF total_aprobados = 4 THEN + -- Cambiar el estado_general_inscripcion a "Aprobado" en la tabla inscripciones + UPDATE inscripciones SET estado_general_inscripcion = 'Aprobado' WHERE id_inscripcion = NEW.id_inscripcion; + + -- Obtener los datos necesarios para crear el nuevo aprendiz (aprendiz) + SELECT + nombre_inscripcion, + apellido_inscripcion, + tipo_documento_inscripcion, + documento_inscripcion, + email_inscripcion, + inscripcion_celular, + arl, + modalidad_inscripcion, + fecha_fin_lectiva_inscripcion, + numero_ficha_inscripcion, + nombre_programa_inscripcion, + nivel_formacion_inscripcion + INTO + var_nombre_aprendiz, + var_apellido_aprendiz, + var_tipo_documento_aprendiz, + var_numero_documento_aprendiz, + var_email_aprendiz, + var_celular_aprendiz, + var_arl_paga, + var_modalidad_inscripcion, + fecha_fin_lectiva_inscripcion_sum, + var_numero_ficha_inscripcion, + var_nombre_programa_inscripcion, + var_nivel_formacion_inscripcion + FROM + inscripciones + WHERE + id_inscripcion = NEW.id_inscripcion; + + -- Obtener datos de la empresa + SELECT nit_empresa_inscripcion, nombre_empresa_inscripcion, direccion_empresa_inscripcion INTO var_nit_empresa, var_nombre_empresa, var_direccion_empresa FROM inscripciones WHERE id_inscripcion = NEW.id_inscripcion; + IF var_nit_empresa IS NOT NULL THEN + SELECT direccion_sede_empresa INTO @check_direccion FROM detalle_empresas WHERE direccion_sede_empresa = var_direccion_empresa; + # Agregar datos a la tabla empresas + IF @check_direccion IS NULL THEN + INSERT INTO detalle_empresas (direccion_sede_empresa) VALUES (var_direccion_empresa); + SET @id_detalle_empresa_insertada = LAST_INSERT_ID(); + END IF; + + SELECT nit_empresa INTO @check_nit FROM empresas WHERE nit_empresa = var_nit_empresa; + IF @check_nit IS NULL THEN + INSERT INTO empresas (nit_empresa, nombre_empresa, id_detalle_empresa) + VALUES (var_nit_empresa, var_nombre_empresa, @id_detalle_empresa_insertada); + SET @id_empresa_insertada = LAST_INSERT_ID(); + ELSE + SELECT id_empresa INTO @id_empresa_existente FROM empresas WHERE nit_empresa = @check_nit; + SET @id_empresa_insertada = @id_empresa_existente; + END IF; END IF; - SELECT nit_empresa INTO @check_nit FROM empresas WHERE nit_empresa = var_nit_empresa; - IF @check_nit IS NULL THEN - INSERT INTO empresas (nit_empresa, nombre_empresa, id_detalle_empresa) - VALUES (var_nit_empresa, var_nombre_empresa, @id_detalle_empresa_insertada); - SET @id_empresa_insertada = LAST_INSERT_ID(); - ELSE - SET @id_empresa_insertada = @check_nit; + # Tomar datos del jefe + SELECT nombre_jefe_empresa_inscripcion, cargo_jefe_empresa_inscripcion, telefono_jefe_empresa_inscripcion, email_jefe_empresa_inscripcion INTO var_nombre_jefe_empresa_inscripcion, var_cargo_jefe_empresa_inscripcion, var_telefono_jefe_empresa_inscripcion, var_email_jefe_empresa_inscripcion FROM inscripciones WHERE id_inscripcion = NEW.id_inscripcion; + IF var_nombre_jefe_empresa_inscripcion IS NOT NULL THEN + INSERT INTO jefes (nombre_jefe, cargo_jefe, numero_contacto_jefe, email_jefe) VALUES (IFNULL(var_nombre_jefe_empresa_inscripcion, null), IFNULL(var_cargo_jefe_empresa_inscripcion, null), IFNULL(var_telefono_jefe_empresa_inscripcion, null), IFNULL(var_email_jefe_empresa_inscripcion, null)); + SET id_jefe_insertado = LAST_INSERT_ID(); END IF; - END IF; - - # Tomar datos del jefe - SELECT nombre_jefe_empresa_inscripcion, cargo_jefe_empresa_inscripcion, telefono_jefe_empresa_inscripcion, email_jefe_empresa_inscripcion INTO var_nombre_jefe_empresa_inscripcion, var_cargo_jefe_empresa_inscripcion, var_telefono_jefe_empresa_inscripcion, var_email_jefe_empresa_inscripcion FROM inscripciones WHERE id_inscripcion = NEW.id_inscripcion; - IF var_nombre_jefe_empresa_inscripcion IS NOT NULL THEN - INSERT INTO jefes (nombre_jefe, cargo_jefe, numero_contacto_jefe, email_jefe) VALUES (IFNULL(var_nombre_jefe_empresa_inscripcion, null), IFNULL(var_cargo_jefe_empresa_inscripcion, null), IFNULL(var_telefono_jefe_empresa_inscripcion, null), IFNULL(var_email_jefe_empresa_inscripcion, null)); - SET id_jefe_insertado = LAST_INSERT_ID(); - END IF; - -- Calcular la fecha de fin de práctica sumando 6 meses a la fecha_fin_lectiva_inscripcion - IF fecha_fin_lectiva_inscripcion_sum IS NOT NULL THEN - SET var_fecha_fin_practica_aprendiz = DATE_ADD(fecha_fin_lectiva_inscripcion_sum, INTERVAL 6 MONTH); - END IF; - - -- Obtener el nivel de formación - SELECT id_nivel_formacion INTO var_nivel_formacion_inscripcion_int FROM niveles_formacion WHERE nivel_formacion = var_nivel_formacion_inscripcion; - -- Crear la ficha si no existe - SELECT id_ficha INTO var_id_ficha_creada FROM fichas WHERE numero_ficha = var_numero_ficha_inscripcion; - IF var_id_ficha_creada IS NULL THEN - INSERT INTO fichas (numero_ficha, nombre_programa_formacion, id_nivel_formacion) VALUES (var_numero_ficha_inscripcion, var_nombre_programa_inscripcion, var_nivel_formacion_inscripcion_int); - SET var_id_ficha_creada = LAST_INSERT_ID(); - END IF; - - -- Determinar quien paga ARL - IF var_arl_paga is null then - set id_arl = 3; - ELSEIF var_arl_paga = 'La empresa' THEN - set id_arl = 2; - ELSE - set id_arl = 1; + -- Calcular la fecha de fin de práctica sumando 6 meses a la fecha_fin_lectiva_inscripcion + IF fecha_fin_lectiva_inscripcion_sum IS NOT NULL THEN + SET var_fecha_fin_practica_aprendiz = DATE_ADD(fecha_fin_lectiva_inscripcion_sum, INTERVAL 6 MONTH); END IF; - - -- Determinar el estado del aprendiz - IF CURDATE() BETWEEN fecha_fin_lectiva_inscripcion_sum AND var_fecha_fin_practica_aprendiz THEN - SET var_estado_aprendiz = 'Practicas'; - ELSEIF CURDATE() < fecha_fin_lectiva_inscripcion_sum THEN - SET var_estado_aprendiz = 'Lectiva'; - ELSE - SET var_estado_aprendiz = 'Terminado'; - END IF; - - -- Insertar el nuevo aprendiz en la tabla 'aprendices' - INSERT INTO aprendices (nombre_aprendiz, apellido_aprendiz, tipo_documento_aprendiz, numero_documento_aprendiz, email_aprendiz, celular_aprendiz, fecha_fin_practica_aprendiz, estado_aprendiz, id_empresa, id_modalidad, id_jefe, id_arl) - VALUES (var_nombre_aprendiz, var_apellido_aprendiz, var_tipo_documento_aprendiz, var_numero_documento_aprendiz, var_email_aprendiz, var_celular_aprendiz, var_fecha_fin_practica_aprendiz, var_estado_aprendiz, @id_empresa_insertada, var_modalidad_inscripcion, id_jefe_insertado, id_arl); - SET var_id_estudiante_registrado = LAST_INSERT_ID(); - - INSERT INTO detalle_fichas_aprendices(id_ficha, id_aprendiz) VALUES (var_id_ficha_creada, var_id_estudiante_registrado); - END IF; + + -- Obtener el nivel de formación + SELECT id_nivel_formacion INTO var_nivel_formacion_inscripcion_int FROM niveles_formacion WHERE nivel_formacion = var_nivel_formacion_inscripcion; + -- Crear la ficha si no existe + SELECT id_ficha INTO var_id_ficha_creada FROM fichas WHERE numero_ficha = var_numero_ficha_inscripcion; + IF var_id_ficha_creada IS NULL THEN + INSERT INTO fichas (numero_ficha, nombre_programa_formacion, id_nivel_formacion) VALUES (var_numero_ficha_inscripcion, var_nombre_programa_inscripcion, var_nivel_formacion_inscripcion_int); + SET var_id_ficha_creada = LAST_INSERT_ID(); + END IF; + + -- Determinar quien paga ARL + IF var_arl_paga is null then + set id_arl = 3; + ELSEIF var_arl_paga = 'La empresa' THEN + set id_arl = 2; + ELSE + set id_arl = 1; + END IF; + + -- Determinar el estado del aprendiz + IF CURDATE() BETWEEN fecha_fin_lectiva_inscripcion_sum AND var_fecha_fin_practica_aprendiz THEN + SET var_estado_aprendiz = 'Practicas'; + ELSEIF CURDATE() < fecha_fin_lectiva_inscripcion_sum THEN + SET var_estado_aprendiz = 'Lectiva'; + ELSE + SET var_estado_aprendiz = 'Terminado'; + END IF; + + -- Insertar el nuevo aprendiz en la tabla 'aprendices' + INSERT INTO aprendices (nombre_aprendiz, apellido_aprendiz, tipo_documento_aprendiz, numero_documento_aprendiz, email_aprendiz, celular_aprendiz, fecha_fin_practica_aprendiz, estado_aprendiz, id_empresa, id_modalidad, id_jefe, id_arl) + VALUES (var_nombre_aprendiz, var_apellido_aprendiz, var_tipo_documento_aprendiz, var_numero_documento_aprendiz, var_email_aprendiz, var_celular_aprendiz, var_fecha_fin_practica_aprendiz, var_estado_aprendiz, @id_empresa_insertada, var_modalidad_inscripcion, id_jefe_insertado, id_arl); + SET var_id_estudiante_registrado = LAST_INSERT_ID(); + + INSERT INTO detalle_fichas_aprendices(id_ficha, id_aprendiz) VALUES (var_id_ficha_creada, var_id_estudiante_registrado); + END IF; + END IF; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; @@ -614,7 +617,7 @@ CREATE TABLE `empresas` ( PRIMARY KEY (`id_empresa`), KEY `id_detalle_empresa` (`id_detalle_empresa`), CONSTRAINT `empresas_ibfk_1` FOREIGN KEY (`id_detalle_empresa`) REFERENCES `detalle_empresas` (`id_detalle_empresa`) ON DELETE CASCADE ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -623,7 +626,7 @@ CREATE TABLE `empresas` ( LOCK TABLES `empresas` WRITE; /*!40000 ALTER TABLE `empresas` DISABLE KEYS */; -INSERT INTO `empresas` VALUES (1,'Telepermance','4127254355',1),(2,'Frestolu SAS','811035751',3),(4,'firplak ','890927404-0',5); +INSERT INTO `empresas` VALUES (1,'Telepermance','4127254355',1),(2,'Frestolu SAS','811035751',3),(4,'firplak ','890927404-0',5),(5,'CULTIVOS GUAPANTE S.A.S','811-027-971-6',7),(6,'Bonem','890901866-7',8); /*!40000 ALTER TABLE `empresas` ENABLE KEYS */; UNLOCK TABLES; @@ -650,7 +653,7 @@ CREATE TABLE `fichas` ( CONSTRAINT `fichas_ibfk_1` FOREIGN KEY (`id_nivel_formacion`) REFERENCES `niveles_formacion` (`id_nivel_formacion`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_fichas_1` FOREIGN KEY (`id_instructor_seguimiento`) REFERENCES `usuarios` (`id_usuario`), CONSTRAINT `fk_fichas_2` FOREIGN KEY (`id_instructor_lider`) REFERENCES `usuarios` (`id_usuario`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -659,7 +662,7 @@ CREATE TABLE `fichas` ( LOCK TABLES `fichas` WRITE; /*!40000 ALTER TABLE `fichas` DISABLE KEYS */; -INSERT INTO `fichas` VALUES (1,'2473196','Análisis y Desarrollo de Software','2023-02-10','2023-04-01',7,NULL,2),(2,'2453890','gestión de la producción industrial',NULL,NULL,NULL,NULL,2),(3,'2313307','Gestión administrativa ',NULL,NULL,NULL,NULL,2); +INSERT INTO `fichas` VALUES (1,'2473196','Análisis y Desarrollo de Software','2023-02-10','2023-04-01',7,NULL,2),(2,'2453890','gestión de la producción industrial',NULL,NULL,NULL,NULL,2),(3,'2313307','Gestión administrativa ',NULL,NULL,NULL,NULL,2),(4,'2236470-1','sistema de gestion de la seguridad salud en el trabajo SG-SST',NULL,NULL,NULL,NULL,2),(5,'2340322-2','Gestión de la producción Industrial',NULL,NULL,NULL,NULL,2),(6,'2141930','DECORACIÓN DE ESPACIOS INTERIORES',NULL,NULL,NULL,NULL,2); /*!40000 ALTER TABLE `fichas` ENABLE KEYS */; UNLOCK TABLES; @@ -711,7 +714,7 @@ CREATE TABLE `inscripciones` ( LOCK TABLES `inscripciones` WRITE; /*!40000 ALTER TABLE `inscripciones` DISABLE KEYS */; -INSERT INTO `inscripciones` VALUES (1,'heryinson','hernandez torres','CC','1128400704','heryin22@gmail.com','3197218963','Práctica','3','Carpinteria','Técnico','2453797','2022-10-22','Edwin Grajales','egrajales@sena.edu.co','Ninguno','9014803121','Carpinteria',NULL,'Antioquia','Heyberson Hernandez Torres','Jefe','3197218963','heryin22@gmail.com','La empresa','https://drive.google.com/file/d/1QvAOFrqP6JYUPK2kJWCEyZB_GY8rTslx/preview','Muchas gracias por la atención prestada.','Rechazado','2023-09-08 15:53:07','Admin Admin'),(2,'Sebastian','Lopez Velasquez','CC','1152692565','seblove1993@gmail.com','3008848306','Práctica','3','Carpinteria','Técnico','2453797','2022-10-22','Edwin Grajales','egrajales@sena.edu.co','Ninguno','901480312','Carpinteria',NULL,'Medellin','Heyberson Hernandez Torres','Jefe','3197218963','Heryin22@gmail.com','La empresa','https://drive.google.com/file/d/1ng3lzTTMg4dlAw5YDHJPZqvggT0Ldk_j/preview','Muchas gracias por su atención prestada.','Rechazado','2023-09-08 15:53:07','Admin Admin'),(3,'JULIANA ','PEREZ GUZMAN ','CC','1026152727','juli-pg2802@outlook.es','3127038007','Lectiva','5','tecnologia gestion empresarial ','Tecnología','2453777','2023-07-01','juan camilo chavarria','jcchavarria4@misena.edu.co ','Ninguno','900181557-0','ARCIS GROUP',NULL,'ANTIOQUIA ','ANDRES ZULETA ','GERENTE ','3185744029','ANDRES.ZULETA@ARCISLS.COM',NULL,'https://drive.google.com/file/d/1tQUcd75XSdNJLO5F8T_VT3kWcHslEY2a/preview','sin observaciones ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(4,'Juliana','Bedoya Valencia','CC','1040740378','secre.jota@gmail.com','3022013149','Práctica','3','Tecnico en Carpinteria ','Técnico','2502863','2023-12-08','Orlando Antonio Ayala Mesa','orayala@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/11zjsENQZqKr6Xek5YYZQHMqMbWcPD3qI/preview','deseo hacer las etapa productiva en proyecto ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(5,'Wendy Cristina ','Gonzalez Molina ','CC','1152716791','wcristinagm@gmail.com','3246758510','Lectiva','5','Gestion de la produccion industrial','Tecnología','2562435','2024-07-17','Conrado Alcides Sosa Zapata ','casosa5@misena.edu.co','Ninguno','900878886','silhouettes from the world',NULL,'Medellin','Angela Cardona Villa','Supervisora ','3045479095','anyidona@hotmail.com','La empresa','https://drive.google.com/file/d/18B8O9e-wHVd1XPWKLN61PmmAxTy0BXKX/preview','Inicio de practicas','Pendiente','2023-09-08 15:53:07','Admin Admin'),(6,'PAULA ESTEFANÍA ','FORERO ROBLEDO ','CC','1013662745','paula.forero.r@hotmail.es','3006900078','Práctica','3','DECORACIÓN DE ESPACIO INTERIORES','Tecnología','2141930','2022-08-02','JUAN ESTEBAN ARIAS','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Xu_fkf6JQFHCESsF5cJZ9JG2NXOisnXR/preview','No pude anexar los documentos por individual por ello; adjunto envío todos los documentos solicitados en un solo PDF. Agradezco su comprensión, quedo pendiente. ','Rechazado','2023-09-08 15:53:07','Admin Admin'),(7,'VIVIANA ANDREA','FERNANDEZ SANCHEZ','CC','1026264950','andreyta.fernandez08@gmail.com','3057372652','Práctica','3','Diseño de espacios interiores','Tecnología','2141930','2022-08-02','Juan Esteban Arias','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1BV75HXaSD84F2G8KMh0PQWVe5QFHxJQv/preview','Realizaremos el proyecto en conjunto con Paula Estefania Forero Robledo de la misma ficha','Pendiente','2023-09-08 15:53:07','Admin Admin'),(8,'Luisa María','Montoya Montoya','CC','1002089639','lmmontoya936@misena.edu.co','3235023472','Práctica','3','Gestión de la seguridad y salud en el trabajo ','Tecnología','2280372-1 ','2022-10-04','Sandra Iris Escobar ','siescobar0@misena.edu.co','Jóvenes en Acción',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1orhq-ZLfS09S0fbxPGdSJ7qibpI4UNvC/preview','Ninguno','Pendiente','2023-09-08 15:53:07','Admin Admin'),(9,'Damaris Elena','Rivera Zapata','CC','42799863','derivera36@misena.edu.co','3006737732','Práctica','5','Tecnología en Gestion Administrativa','Tecnología','2339011-1','2022-12-13','Omar Jose Tuiran','omar.tuiran@misena.edu.co','Ninguno','890916155','Indugevi SA',NULL,'Sabaneta','Karina Sanchez Varela','Coordinadora Jurídica','3113814069','karina.sanchez@indugevi.com.co',NULL,'https://drive.google.com/file/d/1ULR42nZpiBzY-4nJocf8H7zCV_pTUSH-/preview','buenas tardes, se hace envío de documentos para que por favor se de aval de inicio de etapa practica a través de vinculación laboral. gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(10,'Ana Karina','Muslaco Sibaja','CC','1063074543','anamusy@hotmail.com','3042657552','Práctica','5','Gestión de la Producción Industrial','Tecnología','2236486','2022-07-24','Diego Armando Martinez García ','da42@misena.edu.co','Jóvenes en Acción','800191700','Cueros Velez',NULL,'Medellín','Juan Pablo Maya','Jefe de Planta de Marroquinería','3174018981','Jpmaya@cuerosvelez.com','La empresa','https://drive.google.com/file/d/1rCzQYdH3tR9vy1SK-krc5I8xOEmUbWv5/preview','Ok','Pendiente','2023-09-08 15:53:07','Admin Admin'),(11,'Brandon Smit','Rios Morales','CC','1046910345','Brandonrios9302@gmail.com','3206437100','Lectiva','5','Decoración de espacios interiores','Tecnología','2453770','2023-07-24','Mauricio Sanchez Muñoz ','msanchezm@sena.edu.co','Ninguno','901562747-2','Making Ideas Group SAS',NULL,'Itagüí ','Juan esteban Muñoz Castaño','Administrador ','3045950638','mobiarte.col@gmail.com','La empresa','https://drive.google.com/file/d/1j8MuzWz2d1MGL_1Kqdk5baW8CsVaPba1/preview','Envio adjunto documentos y quedo pendiente de aprobación y posteriormente programación de visita ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(12,'Jorge andrés','Arboleda Rodríguez','CC','71211202','jorleda08@gmail.com','3136891354','Práctica','3','Técnico en carpintería ','Técnico','2338084','2022-04-19','Orlando Antonio Ayala','orayala@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1CbUpGJWl2lERiB6q9bXClT5-mr6ZuvHd/preview','Si se puede hacer con el profesor Litarsuyo Serna, gracias.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(13,'Jhon William','Santafe Sanchez','CC','71279767','jhonsantafe@gmail.com','3213843236','Lectiva','5','Gestion de la Produccion Industrial','Tecnología','2453890','2023-06-30','Diego Armando Martinez','damartinezga@sena.edu.co','Ninguno','811026990','Servimetales Frey',NULL,'Itagui','Carlos Alberto Hernandez','Jefe de Produccion','3136273888','produccion@smf.com.co',NULL,'https://drive.google.com/file/d/1XxGQhSYoyUTPIfubwNN2PtGir-cpFFcL/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(14,'Heidy tatiana ','Londoño restrepo','CC','1018347766','heidyrestrepo2018@gmail.com','3023446460','Lectiva','5','Seguridad y salud en el trabajo','Tecnología','2535777','2024-04-22','Martha Cecilia Henao','marthaceci-henao@hotmail.com','Ninguno','900725119','Hidrosanitarias jzz ',NULL,'Medellin Antioquia ','Jorge zapata Zuluaga ','Representante legal ','3225853484','zapatajorge681@gmail.com','La empresa','https://drive.google.com/file/d/1pDCZRSe3xlGuTv_fTzGZjFyTWpJgJ6jx/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(15,'Adriana Miryen','Ospina Florez','CC','43461749','amospina947@misena.edu.co','3137271187','Lectiva','5','Tecnología en gestión de la producción industrial','Tecnología','2453090','2023-06-24','Diego Armando Martinez','nmartinez0632misena.edu.co','Ninguno','900498133','GM&C cosmética Avanzada',NULL,'Itagui Antioquia','Gloria Patricia Giraldo','Directora Técnica','3222009','gmccosmetica@gimal.com',NULL,'https://drive.google.com/file/d/1PfD8Kzy5XeGqwab09XVvy_7kiofSnTnJ/preview','NINGUNO','Pendiente','2023-09-08 15:53:07','Admin Admin'),(16,'Kelly Johanna ',' Otálvaro Arcila ','CC','1045050332','johannaotalvaro@hotmail.com','3044172202','Lectiva','5','Gestión empresarial ','Tecnología','2453777','2023-07-25','Juan Camilo Echavarría ','jcchavarria4@misena.edu.co','Ninguno','899,999,034','Servicio nacional de aprendizaje SENA',NULL,'Medellin','Catalina Hernández Palacio ',' Coordinadora Relaciones Corporativas',' 301 2711812','Cahernandezp@sena.edu.co',NULL,'https://drive.google.com/file/d/1ebP2zP_x81YzpqN4ojqAuQc9m91wUuqh/preview','la seguridad social la custodio yo misma ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(17,'JUAN CAMILO','BENEDETTI ARTEAGA','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','contabilizacion de operaciones comerciales y financieras ','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S',NULL,'lorica cordoba ','MABER LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1MCHTO2HLMxKIx2petIbFjQpjiv5fPkVB/preview','por favor aceptenme la carta para poder terminar la etapa practica ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(18,'Luisa María','Montoya Montoya','CC','1002089639','luisamontoya323502@gmail.com','3235023472','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2280372-1','2022-10-04','Sandra Iris Escobar','siescobar0@misena.edu.co','Jóvenes en Acción',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1lxBGPYxw3ykHTZ_UaN6u19E20L1WxIEs/preview','Retificación del pasado documento enviado el 25 de mayo','Pendiente','2023-09-08 15:53:07','Admin Admin'),(19,'JUAN ESTEBAN ','JIMENEZ ESTRADA','CC','1036607190','juanestebanjimenezestrada@gmail.com','3116644878','Práctica','1','Gestión de la seguridad y salud en el trabajo','Tecnología','2142193','2022-03-02','Luz Mary Muñoz Julio','lmmunoz662@misena.edu.co','Ninguno','800196632','Artesa SAS',NULL,'Itagui','Carlos Andrés Hoyos Mejía','Asistente administrativo','3006769615','bcarlosh@mybosi.com','La empresa','https://drive.google.com/file/d/1vgqZB6374ALseLcG4PljuAC4eYHvcXdZ/preview','Ninguno','Pendiente','2023-09-08 15:53:07','Admin Admin'),(20,'Brandon Smit','Rios Morales','CC','1046910345','brandonrios9302@gmail.com','3206437100','Lectiva','5','Decoración Espacios Interiores','Tecnología','2453770','2023-07-15','Mauricio Sánchez Muñoz ','msanchezm@sena.edu.co','Ninguno','901562747-2','Making Ideas Group SAS',NULL,'Itagui','Juan Esteban Muñoz Castaño','Administrador ','3045950638','mobiarte.col@gmail.com','La empresa','https://drive.google.com/file/d/1CckdeBWX463GzJCn8BiCy2CRWB9CYTxY/preview','Quedo atento Gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(21,'kelen','narvaez marchena','CC','1002153720','narvaez_marchena@hotmail.com','3006849978','Práctica','5','contabilizacion de operaciones comerciales y financiera financiera ','Técnico','2374442','2021-08-08','laura jaramillo quiroja','ljaramilloq@misena.edu.co','Ninguno','900992804-5','inversar del caribe sas ',NULL,'atlantico','luis vicente suarez ','gerente ','3158824585','inversardelcaribesas@gmail.com','La empresa','https://drive.google.com/file/d/12fdONxFCYhFr5ljU6LMR8dSI4IJlk2n1/preview','en el mes de marzo intente subir la practica pero no me aceptaron nuevamente adjunto documentación','Pendiente','2023-09-08 15:53:07','Admin Admin'),(22,'luisa fernanda','velasquez montoya','CC','1036665926','luisafvelasquezm0816@gmail.com','3043296175','Práctica','5','tecnologia en gestion logistica','Tecnología','2141964','2021-12-15',NULL,'Andres camilo uran arango ','Ninguno','900156954-6','Gratta zapateria ',NULL,'Itagüí ','Libardo daniel mogollon pupo','Representante legal ','4638303','Grattazapateria@yahoo.es','La empresa','https://drive.google.com/file/d/192bWhE_F6LoYG1iD3_HU0gGzjND1fWjR/preview','Donde terminar de enviar los otros documentos ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(23,'Zarel','Ferreira ochoa','CC','1001687803','Zarelferreira18@gmail.com','3017892175','Práctica','3','Recursos humanos','Técnico','2611739','2023-11-08','Sandra Patricia Diaz franco','Spdiaz69@misena.Edu.co','Ninguno','900655031','GR temporales ',NULL,'Medellin ','Juan David puentes castillo','Jefe de talento humano','3178587209','Jefe.talentohumano@grtemporales.com','La empresa','https://drive.google.com/file/d/1QNGQaEShm4h8KQxvulQtKM2WK0hp8GId/preview','Quedó atenta para la visita de seguimiento','Pendiente','2023-09-08 15:53:07','Admin Admin'),(24,'MERIBETH JOHANNA','MAZA ROJAS','CC','mjmaza9@soy.sena.edu.co','mjmaza9@soy.sena.edu.co','3204517197','Práctica','1','Tecnólogo en Producción en Multimedia','Tecnología','2181774','2023-04-30','Monica Patricia Vasquez Correa','mpvasquez@misena.edu.co','Ninguno','37399759-9','APIARIO MIS FLORES ',NULL,'CUCUTA, NORTE DE SANTANDER','MARLENY BELTRAN ARGUELLO','GERENTE','3105979765','mbeltran918@gmail.com, apiariomisflores@gmail.com',NULL,'https://drive.google.com/file/d/1au_-pQR0EFw0V81TIZQONCjVtoHb7zg1/preview','Por favor cancelar la primera inscripcion ya que estuvo mal diligenciada, ya que no estuve bien informada, en esta donde esta el cambio de la modadlidad a pasantias esta toda lo documentacion agradezco su colaboracion.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(25,'Javier Esteban ','Zuleta Moreno ','CC','1037599060','javezuleta@misena.edu.co','3053376123','Práctica','3','Tecnología en Decoración de Espacios Interiores ','Tecnología','2258670','2022-08-08','Juan Esteban Arias García ','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/146tHeJZ73bamiTmvEOP140IOPLV0HGFx/preview',' Cualquier cosa también me pueden contactar al correo poetadesconocido.jp@gmail.com ó al celular 3142279492','Pendiente','2023-09-08 15:53:07','Admin Admin'),(26,'paula andrea','alarcon sanchez','CC','43190609','paula.alarcon2013@gmail.com','3136996828','Práctica','1','Gestión de la Seguridad y Salud en el trabajo','Tecnología','2340242-1','2022-12-06','Luz Mary Muñoz Julio.','lmmunoz662@misena.edu.co','Ninguno','899999034-1','SENA',NULL,'Medellin -Antioquia','Francy Ciro Lopez','Gestora del SG - SST','3006280521','fyciro@sena.edu.co','El SENA','https://drive.google.com/file/d/1LuWykz2OfyZY204ZPMw16hqsb96UM939/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(27,'Leidy Jhoana',' Lopera Loaiza','CC','1152436629','leidylop1990@gmail.com','3106057567','Práctica','3',' Tecnico en Recursos Humanos','Técnico','2611583','2023-05-07','patricia solis','asolis3@misena.edu.co','Apoyo de sostenimiento Sena','no tengo','ninguna',NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1_3wQsTc8eaKGw8z5R-wLp2JQk0tMm65y/preview','atenta gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(28,'Paula Andrea','Alarcon Sanchez','CC','43190609','paula.alarcon2013@gmail.com','3136996828','Práctica','1','Gestión de la seguridad y salud en el trabajo','Tecnología','2340242-1','2022-12-05','Luz Mary Muñoz Julio','lmmunoz662@misena.edu.co','Ninguno','899999034-1','SENA',NULL,'ITAGUI','Francy Yamile Ciro Lopez','Gestora de SG - SST ','fyciro@sena.edu.co',NULL,'El SENA','https://drive.google.com/file/d/1VkVgeUnvJ632TugYOoqzXxFZ6r2C-5j6/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(29,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez','mpvasquez@misena.edu.co','Ninguno','830084232-3','Fundacion Panamericana para el Desarrollo',NULL,'Bogotá','Mary Elena Pito Polanco','Coordinador Nacional','3177927757','mpito@fucolde.org','La empresa','https://drive.google.com/file/d/1FJDvIv0DeDqPtnN3eqvZ3GcEoLnwA7TI/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(30,'ANDRY SANCHEZ','SANCHEZ CHAPARRO','CC','1032449690','andry44.as@gmail.com','3219205772','Práctica','5','TECNICO EN CONTABILIZACION DE OPERACIONES FINANCIERAS Y COMERCIALES','Técnico','2374442','2022-05-04','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','830.073.185-8','OPC RIVEROS S.A.S ',NULL,'BOGOTA','Marco Johanny Franco Reina','Socio - Director de Auditoria ','3138561292','mfranco@opcriveros.com','La empresa','https://drive.google.com/file/d/1lr3fAFRXO0mvXwL4jodNaeNkLjpUUhdq/preview','Se adjuntan los documentos soportes para poder iniciar con la etapa productiva ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(31,'Heidy Tatiana ','Londoño Restrepo','CC','1018347766','londonorestrepoheidytatiana@gmail.com','3023446460','Lectiva','5','Tecnología de seguridad y Salud en el trabajo ','Tecnología','2535777','2024-04-22','Marta Cecilia Henao ','martaceci-henao@hotmail.com','Ninguno','900725119','HIDROSANITARIAS JZZ',NULL,'MEDELLIN ','Jorge Zapata Zuluaga','GERENTE ','322 5853484','zapatajorge681@gmail.com','La empresa','https://drive.google.com/file/d/1E7q1q9fF-t3fPB92sfaaiiIm0bIZ0zTg/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(32,'John Mario',' Cobos Gomez','CC','1017127932','jhonmariocobosgomez@gmail.com','3206528034','Lectiva','5','TECNOLOGO EN LA GESTION DE SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2535777','2024-04-22','Martha Cecilia Henao Londoño','martaceci-henao@hotmail.com','Ninguno','901074844','CONSULTORIA INTEGRAL SST S.A.S',NULL,'Medellin','YOISI BILEIDY MORALES ARBOLEDA','COORDINADORA SST','3108933189','consultoriaintegralsst@gmail.com','La empresa','https://drive.google.com/file/d/1WOxj-JCITCnxhe5cma9V_xHVhkAL3Oua/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(33,'Elizabeth','Medina Cartagena','CC','1036638383','isabellamedinacartagena@gmail.com','3041113129','Práctica','1','Gestión Administrativa','Tecnología','2339011','2023-03-06','Omar Jose Tuiran saker','omar.tuiran@misena.edu.co','Ninguno','1028015905 - 9','Renacer sport',NULL,'la estrella','Brayham Felipe Gómez Escudero','Gefe inmediato','3137569763','renacersport@gmail.com','El SENA','https://drive.google.com/file/d/191YsJSyyQYgiBsZjsxB2YJCHWBV9KERC/preview','mi observacion es que yo llevo cuatro meses laborando con esta empresa y queria saber si estos cuatro meses me los aceptan como parte de practica gracias quedo atenta','Pendiente','2023-09-08 15:53:07','Admin Admin'),(34,'Elianeth ','montes Heredia','CC','1066745008','Elianethmontes18@gmail.com','3035340850','Práctica','4','Gestión empresarial ','Tecnología','2338995','2022-12-02','Álvaro Orozco ','alvarozco@misena.edu.co','Ninguno','8999990341','Sena',NULL,'Itagui ','Laura carolina restrepo','Lider bienestar ','5149290','lcrestrepo@sena.edu.co','El SENA','https://drive.google.com/file/d/1n6Ppy0ZGUtZ9Bg9FqZJGBeVhO7eXh9uW/preview','.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(35,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2023-06-27','Monica Patricia Vasquez','mpvasquez@misena.edu.co','Ninguno','830084232-3','Fundacion PAnamericana para el Desarrollo FUPAD',NULL,'Bogota','Mary Elena Pito Polanco','Coordinador Nacional','3177927757','mpito@fucolde.org; mpito@padf.org','La empresa','https://drive.google.com/file/d/1W-TPxEBu6bbNUKV7SUnyM_0IUVtT0rin/preview','NA','Pendiente','2023-09-08 15:53:07','Admin Admin'),(36,'Leidy Jhoana ','Lopera loaiza','CC','1152436629','leidylop1990@gmail.com','3106057567','Práctica','3','Técnico Recursos humanos ','Técnico','2611583','2023-05-05',NULL,'asolis3@misena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1wJSY3rpcgucHMGTH8xBZ2d-ShxCaZBIM/preview','gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(37,'Yhonny Javier ','Tonguino Chicangana','CC','1061698561','jhonytonguino@unicauca.edu.co','3128558757','Lectiva','3','CORDINACIÓN DE ESCUELAS DE MÚSICA','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao ','joalohe@gmail.com','Ninguno','25287504-3','Colegio Real Popayán ',NULL,'Popayán ','Gloria Edith Hoyos ','Rectora','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1hit1vTgg7ObrAwyqTiusnjRe-Mer3sCe/preview','Buenos dias envio los documentos para iniciar con el proceso de etapa practica, estaré atento a las notificaciones, gracias...','Pendiente','2023-09-08 15:53:07','Admin Admin'),(38,'Andrés Felipe','Castrillón Sucerquia','CC','1037617482','afelipe.castrillon@gmail.com','3195719602','Lectiva','5','Técnologo en Análisis y Desarrollo de Sistemas de Información','Tecnología','2141948','2021-11-30','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','901033369','Summa S.A.S.',NULL,'Sabaneta','Shirley Rosita García ','Lider Mesa de Ayuda Tecnología','3002771834','sgarcig@summa-sci.com',NULL,'https://drive.google.com/file/d/1ffF-5JAlhjqmy293X1zL6HNr0gKwHGUk/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(39,'Luna Isabel','Uribe Cortes','CC','1193587870','luna.uribe24@gmail.com','3127130924','Práctica','1','Tecnologia Gestion Empresarial','Tecnología','2236483','2022-06-24','William Caro Bautista','aewcb@misena.edu.co','Ninguno','4277747-7','Hostal Naty Luna',NULL,'Jardin, Antioquia','John Jairo Uribe Giraldo','Gerente','3137592802','jjuglo@gmail.com','El SENA','https://drive.google.com/file/d/1lmjwok6Aepf5yyi-o10VKn4k8qIHR19s/preview','El objetivo es cambiar la modalidad de practica.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(40,'JUAN CAMILO','BENEDETTI ARTEAGA','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2023-07-01','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S',NULL,'LORICA, CORDOBA','MABEL LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1c65IddjIQwC1JfmY1A2Vc_iHKy5oNLao/preview','REVISAR BIEN LAS EVIDENCIAS QUE YA LAS REALICE TODAS Y SI ME FALTA ALGUNA POR FAVOR DECIR QUE YA ME HAN NEGADO VARIAS VECES LA CARTA.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(41,'JIMMY JULIAN','HERNANDEZ CASAS','CC','11444234','jjhc26@hotmail.com','3112246421','Práctica','5','tecnologo en coordinación de escuelas de musica','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO','joalopez@sena.edu.co','Ninguno','899999328-1','ALCALDIA DE FACATATIVA',NULL,'FACATATIVÁ','EDNA LILIANA YOMAYUSA MARTINEZ','3187343529','3115571008','cultura@facatativa-cundinamarca.gov.co','La empresa','https://drive.google.com/file/d/1XNjRVyw-080geayqAUZqAnPHqfSUinZM/preview','se anexa documentación, queda pendiente anexar nueva certificación laboral y de la arl del nuevo contrato','Pendiente','2023-09-08 15:53:07','Admin Admin'),(42,'Jennifer Alejandra','Castro Morales','CC','1015456851','jcastro158@misena.edu.co','3232105096','Lectiva','5','Técnico en Servicios y Operaciones Micro financieras','Técnico','2627131','2023-05-30','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','830.098.119-1','Bombatex Publicidad sas',NULL,'Bogotá','Jorge Piragauta Sierra','Representante Legal ','3108711439','info@bombatex.com','La empresa','https://drive.google.com/file/d/1qJJnNnRxKYHeEJQV51dweoS3OOYOM3le/preview','Quedo atenta a sus comentarios ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(43,'Alvaro Eugenio','Echeverri Castaño','CC','71293827','alvaeuechcas85@gmail.com','3228970157','Práctica','1','Tecnico en Dibujo Arquitectonico','Técnico','2670216','2023-12-07','Juan david Acevedo Agudelo','jdacevedoa@misena.edu.co','FIC','890.981.115-6','Alcaldia de Montebello Antioquia',NULL,'Montebello - Antioquia','Jose Enrique Castro Castro','Secretario de Planeacion y Obras Publicas','604-848-0561 604848-0564 ext 106','planeacion@montebello-antioquia.gov.co','El SENA','https://drive.google.com/file/d/1MjWrHO_nyXQdNYHC83zeFQKUK4cQ9tHc/preview','Por el momento ninguo','Pendiente','2023-09-08 15:53:07','Admin Admin'),(44,'Maria Fernanda','Cañaveral Montoya','CC','1001456818','mariafernandacanaveralm@gmail.com','3177883995','Práctica','1','Técnico en dibujo arquitectónico','Técnico','2670216','2023-05-09','Juan David Acevedo Agudelo','jdacevedoa@misena.edu.co','FIC','899.999034-1 ','SENA',NULL,'Itagüí','SENA','INSTRUCTOR','3007774417','lghernandez@sena.edu.co','El SENA','https://drive.google.com/file/d/1E0l7x-45p8AR9Aevs5gZoEYQVJKlwH-i/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(45,'JIMMY JULIAN','HERNANDEZ CASAS','CC','11444234','jjhc26@gmail.com','3112246421','Práctica','5','TECNOLOGO EN COORDINACION DE ESCUELAS DE MUSICA','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO','joalopezh@sena.edu.co','Ninguno','899999328-1','ALCALDIA DE FACATATIVA',NULL,'FACATATIVA','EDNA LILIANA YOMAYUSA MARTINEZ','SECRETARIA DE CULTURA Y JUVENTUD','3115571008','cultura@facatativa-cundinamarca.gov.co','La empresa','https://drive.google.com/file/d/1tFXvjTiwBdsBiZltE1v6cmUKInwMWaLW/preview','SE ANEXA DOCUMENTACION PARA LA APROVACION DE LA ETAPA PRODUCTIVA POR MEDIO DE VINCULACION LABORAL, QUEDA PENDIENTE ANEXAR NUEVA CERTIFICACION CON LAS FECHAS ACTUALES DEL NUEVO CONTRATO POR MEDIO DEL CORREO ELECTRONICO','Pendiente','2023-09-08 15:53:07','Admin Admin'),(46,'Yhony Javier ','Tonguino Chicangana ','CC','1061698561','jhonyjav22@hotmail.com','3128558757','Lectiva','5','Tecnológo en dirección de escuelas de música ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LÓPEZ HENAO','joahalohe@gmail.com','Ninguno','25287504-3','COLEGIO REAL POPAYAN ',NULL,'Popayan ','GLORIA EDITH HOYOS ','RECTORA ','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1Fp6IoLVcB6brlav8lvu0SUPyt_m_pyee/preview','Buenas tardes re-envío la información con los datos anexos solicitados por el instructor para el inicio de la etapa productiva del programa.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(47,'JUAN MANUEL','VALENCIA RAMIREZ ','CC','1055833986','juanmavara@outlook.com','3113931503','Lectiva','5','TECNÓLOGO EN COORDINACIÓN DE ESCUELAS DE MÚSICA ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO ','jorge.lopez1@udea.edu.co ','Ninguno','890.801.150-3','ALCALDÍA DE SUPÍA (CALDAS)',NULL,'SUPÍA CALDAS ','NORA ANDREA NIETO MONTOYA ','SECRETARIA DE GOBIERNO ','3014048705','alcaldía@supía-caldas.gov.co','El SENA','https://drive.google.com/file/d/1A2khIh8RrDpxk0_lcadhVDOqFTP8O2t-/preview','NINGUNA ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(48,'Jose Fernando','Valencia Vargas','CC','1060593963','josebandola1994@gmail.com','3106523156','Lectiva','5','tecnologo en coordinación de escuelas de música ','Tecnología','2511135','2023-12-07','Jorge Alexander Lopez Henao ','jorge.lopez1@udea.edu.co','Ninguno','890.801.150 - 3','alcadía de supia (caldas)',NULL,'supia caldas','Nora Andrea Nieto Montoya','Secretaria de gobierno ','3014048705','alcaldia@supia-caldas.gov.co','La empresa','https://drive.google.com/file/d/1pPQmv6aT_H02Hlsfjj2Ohh-jnbHISqNZ/preview','ninguno ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(49,'Agustín Edgar','Ocampo Alzate','CC','10124922','edyalzate@gmail.com','3202059830','Lectiva','5','Cordinación de Escuelas de Música','Tecnología','2511135','2023-12-07','Jorge López','joalopezh@sena.edu.co','Ninguno','890.001.339-5','Alcaldía de Filandia',NULL,'Filandia','Andrés Restrepo','Secretario de Gobierno','3206945032','gobierno@filandia-quindío.gov.co','La empresa','https://drive.google.com/file/d/1z-Fk1SArtBHfZ-3eVNYN9xn_RXLHKlBy/preview','Cordial Saludo. Solicito encarecidamente recibir mi inscripción a etapa productiva. Gracias.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(50,'Juan David','Atehortua Rios','CC','71381811','jatehor717@gmail.com','3008751737','Práctica','5','tecnologia en gestgion administrativa','Tecnología','2024123','2022-01-11','Ana Patricia Solis','patrysolis@gmail.com','Ninguno','8002374565','Emtelco S.A.S',NULL,'Medellin','Daniela castro Paternina','ejecutiva de cuenta ','3007768003','daniela.castro@emtelco.com.co','La empresa','https://drive.google.com/file/d/1vgIfrsTaCFGfKOPyt4j2PepBU-kP0ayC/preview','solicito de su ayuda para se puedan aprobar las practicas con la vinculacion laboral, por dificultades no pude realizaras tiempo a tras','Pendiente','2023-09-08 15:53:07','Admin Admin'),(51,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez','mpvazques@misena.edu.co','Ninguno','830084232-3','Fundacion Panamericana para el Desarrollo FUPAD',NULL,'Bogota','Mary Pito','Coordinador Nacional','3177927757','mpito@padf.org; mpito@fucolde.org','La empresa','https://drive.google.com/file/d/1RDzmtRKXCINlX7pZbWwlKebrAlCed57W/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(52,'Shaenne Sophia ','Gamarra De La Ossa','CC','1102813389','profesorashaenne2@gmail.com','3002441043','Lectiva','5','Tecnólogo en Coordinación de Escuelas de Música','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','9000412354','JIN & CIA LIMITADA',NULL,'Turbaco','Leonor Carrasquilla Baena','Coordinadora General','3135742144','lcarrasquilla@lanuevaesperanza.edu.co','La empresa','https://drive.google.com/file/d/1-GTjTdIBAwvNunIK51Dcj-R8xkL_4iHy/preview','Buenas Noches, Tuve un inconveniente con el certificado laboral que no me lo han enviado por ser 7 días hábiles, espero poder subsanar ese documento, mientras tanto envié uno del año pasado llevo trabajando en la institución desde el 2013 como Docente De Música desde los grados de pre-escolar hasta quinto de primaria.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(53,'Katherine','Mejia Isaza','CC','1001390358','kthemejia52@gmail.com','3004764913','Práctica','1','Producción de multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez Correa','mpvasquez@misena.edu.co','Ninguno','811032151-3','SERVICIOS EMPRESARIALES PRODIGITAL S.A.S','CL 52 CR 48-52 INT 201 Copacabana',NULL,'Jennifer Montoya','Administradora','3105252552','jennifermontoyasalazar@gmail.com','El SENA','https://drive.google.com/file/d/1Uu5HV3BHLSPG2_KnyteoWeb0QJmfxqeN/preview','Adjunto historia clinica e incapacidad de accidente de mi papá, razón por la cual tuve que renunciar a mi pasantía anterior, para buscar un trabajo ya que el no podía laborar en ese momento. No pude subir la historia clinica reciente porque se supera el limite de subida.','Aprobado','2023-09-08 15:53:08','Admin Admin'),(54,'Luna Isabel','Uribe Cortes','CC','1193587870','luna.uribe24@gmail.com','3127130924','Práctica','1','Tecnologia gestion empresarial','Tecnología','2236483','2022-06-24','William Caro Bautista','aewcb@misena.edu.co','Ninguno','4277747-7','Hostal Naty Luna','Calle 10 #5-51 Jardín - Antioquia',NULL,'John Jairo Uribe Giraldo','Gerente','3137592802','jjuglo@gmail.com','El SENA','https://drive.google.com/file/d/1ZbTWxw0IkX0gCurfSkwGONkQlQJGkrGL/preview','En el documento anterior queda adjunto el formato de modificacion alternativa etapa practica, el acta del comite donde me autorizan terminar las practicas en otra modalidad, la carta de funciones y el formato de carta de pasantia de la empresa.','Rechazado','2023-09-08 15:53:08','Admin Admin'),(55,'Yhony Javier ','Tonguino Chicangana ','CC','1061698561','jhonyjav22@hotmail.com','3128558757','Lectiva','5','TECNOLÓGO EN DIRECCIÓN DE ESCUELAS DE MUSICA ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LÓPEZ HENAO','joalohe@gmail.com','Ninguno','25287504-3','Colegio Real Popayan ','Carrera 9 No 8-81 B/ San Camilo',NULL,'Gloria Edith Hoyos','Rectora','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1t54yCS83H0QIQuxQNP2T4JcvHgEtIGOp/preview','Muy buenas tardes re-envío la documentación con los requerimientos solicitados en la carta de funciones laborales.','Rechazado','2023-09-08 15:53:08','Admin Admin'),(56,'DIANA PAOLA','GIL ZULUGA','CC','1017241378','dianap_gil@soy.sena.edu.co','3146530476','Práctica','3','TECNICO DIBUJO ARQUITECTONICO','Técnico','2670216','2023-05-07','JUAN DAVID ACEVEDO AGUDELO ','jdacevedoa@sena.edu.co','FIC','899999034','CENTRO TECNOLOGICO MOBILIARIO','CALLE 63 #58B - 03',NULL,'JAIME LEON VERGARA','COORDINADOR ACADEMICO','604 514 9290 ','practicasctm@sena.edu.co','El SENA','https://drive.google.com/file/d/12cJcWxdpA2T9HtcHgGrGVl_6xYhGfk8e/preview','NINGUNA','Aprobado','2023-09-08 15:53:08','Admin Admin'),(57,'Jonny Arturo','Sanchez Velez','CC','8071368','sanchezjonny325@gmail.com','313 523 4754','Práctica','5','Gestión de la producción Industrial','Tecnología','2340322-2','2023-07-18','Conrrado Alcides Zapata ','casosa5@misena.edu.co','Ninguno','890.901.866-7','Bonem','Calle 6 sur # 50C 104',NULL,'Carlos Arcila Alzate ','Coordinador de Producción','604 204 2900 ext 8143','carlos.arcila@somosgrupo-a.com','La empresa','https://drive.google.com/file/d/1sCSaBDfD5qIpz9jIGSvjttqp5Sq2_A4s/preview','Anexo documentación requerida ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(58,'Jhon Fredys ','Quintero Espinosa ','CC','98672649','jfquintero2020@gmail.com','3206539464','Práctica','3','SISTEMA DE GESTION Y SEGURIDAD EN EL TRABAJO','Tecnología','2142193','2021-03-31','CRISTIAN JAMANOY','cjamanoyd@misena.edu.co','Ninguno','98672649','FREDYS QUINTERO (PROYECTO PRODUCTIVO)','CRA 52 nro. 99 SUR 96',NULL,'Ana María Pineda','Asistente de Gerencia','3244001820','anamph07@gmail.com','La empresa','https://drive.google.com/file/d/14xnM7ftI64Zmwa6EGCv9sy3M-9RaYPKS/preview','Espero respuesta','Aprobado','2023-09-08 15:53:08','Admin Admin'),(59,'Silvia Alejandra ','Lozano Copete','CC','1148951599','alejahe.sil@hotmail.es','315230798','Práctica','5','Análisis y desarrollo de sistemas de información ','Tecnología','2176105','2023-03-30','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','900918004','DBNET COLOMBIA SAS ',' Carrera 13 No 96 – 67 – Oficina 513',NULL,'CARLOS ALBERTO ADARRAGA ','Gerente de operaciones Colombia ','4325120','DBNET@DBNETCORP.COM','La empresa','https://drive.google.com/file/d/1mEdpODhrSBQoFh4mQnzxRqib7SWnQO6Q/preview','Debido a que soy Ingeniera de sistemas, me encuentro laborando como Consultora de proyectos TI, y esto aplica con la tecnología cursada ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(60,'Ana Maria','Pineda Hincapie','CC','43745150','anamph07@gmail.com','3244001820','Práctica','3','SG-SST','Tecnología','2142193','2021-03-31','Cristian Jamanoy','cjamanoyd@misena.edu.co','Ninguno','43745150','Ana María Pineda H','carrera 52 No 99 sur 96 ',NULL,'Ana Pineda','Asistente gerencia','3244001820','anamph07@gmail.com','La empresa','https://drive.google.com/file/d/1zchV1zIYT6Bowne68kIX63z7tv_bhrli/preview','Quedo atenta a la respuesta.','Aprobado','2023-09-08 15:53:08','Admin Admin'),(61,'Diana Yurley ','Cano Muñoz ','CC','1128483780','dycano08@misena.edu.co','3108985053','Práctica','1','Producción de multimedia ','Tecnología','2141942','2022-02-05','Isabel Cristina Soto Gallego','isabelsoto1@misena.edu.co','Ninguno','900493604','Doble a inversiones sas','Cra. 42A No. 1 - 25 Of. 410 San Fernando Plaza',NULL,'Keicy Johana Carmona Taborda ','Coordinadora jurídica y de gestión humana','6043220991','keicy.carmona@dobleaasesorias.com','La empresa','https://drive.google.com/file/d/18z_qkrhNhO9jFIHv3qPxyexHrYeAHSH0/preview','Quedo muy atenta con el proceso a seguir, estoy muy interesasa en culminar la formación con la oportunidad presentada','Aprobado','2023-09-08 15:53:08','Admin Admin'),(62,'Sara Cristina ','Bolivar Ibarra ','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestión Empresarial','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS','Calle 46 # 41-70',NULL,'Maria Cristina Hoyos Mejia ','Jefe Administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1VCLiMALwH7OYXjv8wkQ-llLNDfjDrMS-/preview','N/A','Aprobado','2023-09-08 15:53:08','Admin Admin'),(63,'natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','Lectiva','5','gestión de la producción industrial','Tecnología','2453890','2023-06-02','Diego Armando Martínez García ','da42@misena.edu.co','Ninguno','890927404-0','firplak ','autopista sur calle29# 41-15 Itagüí Antioquia',NULL,'manuela Moncada Velásquez ','jefe de producción','3192127510','manuela.moncada@firplak.com','La empresa','https://drive.google.com/file/d/1j4t0_kwgJi4-4NCLSXBpJ69KDpFkjYce/preview','con la mejor actitud para iniciar mis practicas ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(64,'miguel angel ','alzate Vargas ','CC','70567911','miangelalzate@gmial.com ','3006543721','Práctica','3','sistema de gestion de la seguridad salud en el trabajo SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA HERRERA ','restrada3@misena.edu.co','Ninguno','811-027-971-6','CULTIVOS GUAPANTE S.A.S','VEREDA CHAHFRUTO RIONEGRO ',NULL,'RUBEN DARIO RIVERA BETANCURT','REPRESENTANTE LEGAL ','3104122270','rubiorubencho@gmail.com ','El SENA','https://drive.google.com/file/d/1ntF8cxsAtJZ8rCLquoOfEQIPF1a8rXkJ/preview','SOLICITUD DE CAMBIO DE PARACTICA ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(65,'Jonny Arturo','Sanchez Velez','CC','8071368','sanchezjonny325@gmail.com','3135234754','Práctica','5','Gestión de la producción Industrial','Tecnología','2340322-2','2023-07-18','Conrado Alcides Ossa ','casosa5@misena.edu.co','Ninguno','890901866-7','Bonem','calle 6 sur #50c 104',NULL,'Carlos Arcila Alzate ','Coordinador de producción ','604 204 29 00 ext 8143','carlos.arcila@somosgrupo-a.com','La empresa','https://drive.google.com/file/d/1MH00HAtDelanNYvgkUacoUVmRk-8jDVM/preview','Anexo documentación solicitada ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(66,'LINA MARIA','SANCHEZ GOMEZ','CC','1002126946','slina9406@gmail.com','3046200595','Práctica','3','DECORACIÓN DE ESPACIOS INTERIORES','Tecnología','2141930','2022-08-02','MAURICIO SANCHEZ MUÑOZ','msanchezm@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/11aV-BD9g9QvHG4c9kjde9nFMV4aN48u_/preview','Espero recibir una pronta respuesta, para darle inicio al proyecto productivo y culminar la tecnología','Pendiente','2023-09-08 15:53:08','Admin Admin'),(67,'Natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','Lectiva','5','gestion de la produccion industrial ','Tecnología','2453890','2023-07-02','diego armando Martínez García ','da42@misena.edu.co','Ninguno','890927404-0','firplak','autopista sur calle 29 numero 41-15 Itagüí ',NULL,'Manuela Moncada Velasquez','Jefe de Producción','3192127510','manuela.moncada@firplak.com','La empresa','https://drive.google.com/file/d/1uPFpPUBG317IXVT6dqB0vG0tDqmlY7IO/preview','el cuestionario esta muy completo y es muy practico','Pendiente','2023-09-08 15:53:08','Admin Admin'),(68,'Silvia Alejandra ','Lozano Copete','CC','1148951599','alejahe.sil@hotmail.es','3152303798','Práctica','5','Tecnología en Análisis y desarrollo de sistemas de Información ','Tecnología','2176105','2023-03-04',' CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','900918004','DBNET COLOMBIA SAS','Carrera 13 No 96 – 67 Oficina 513 Edificio',NULL,'Carlos Alberto Adárraga Mejía ','GERENTE DE OPERACIONES ','4325120','dbnet@dbnetcorp.com ','La empresa','https://drive.google.com/file/d/1Q7ku6LgVHxmYkjSJH4Zsxy8gYLXWeBWV/preview','Buenas noches, adjunto la información requerida','Pendiente','2023-09-08 15:53:08','Admin Admin'),(69,'Juan Camilo ','Jaramillo Montoya ','CC','1037264640','kamilex24@hotmail.com','3145506724','Lectiva','5','Coordinacion de Escuelas de Música y Proyectos Culturales','Tecnología','2511135','2023-12-07',NULL,'Jorge Alexander Lopez Henao','Ninguno','8909822782','Alcaldia Ituango','Call berrio 19-08 Parque principal ',NULL,'Leidy Yohanna Vargas Correa ','secretaria de educacion cultura y deporte ','3102044327','educacion@ituango-antioquia.gov.co','La empresa','https://drive.google.com/file/d/1ZvYOd-JhKpvCxhf8c7dxXNTSqh7HLDgG/preview','Hola el certificado laboral me lo hicieron de todos los años pero en las hojas 2 y 3 esta mi contrato actual con las obligaciones.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(70,'DANI LUZ',' JIMENEZ CARTAGENA','CC','1017154262','danana7727@gmail.com','3104175652','Práctica','5','tecnologia en Gestion administrativa','Tecnología','2065924','2022-10-20','MIGUEL ANTONIO SANTANA','misantavi@misena.edu.co','Ninguno','811005425-1','CORPORACION UNIVERSITARIA UNIREMINGTON','calle 51 No 51-27 parque berrio ',NULL,'MARTA LUCIA FIGUEROA ORREGO','mfigueroa@uniremington.edu.co','3186167515','djimenez@uniremington.edu.co','La empresa','https://drive.google.com/file/d/1VdTyqRzr-6LMy7KSgRE0fIbHTTRHJL7I/preview','Quedo atenta al proceso ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(71,'MIGUEL ANGEL ','ALZATE VARGAS ','CC','70567911','MIANGELALZATE@GMIAL.COM ','3006543721','Práctica','3','SISTEMA DE GESTION DE LASEGURIDAD Y SALUD EN EL TRABAJO ','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@sena.gov.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1cZiWD0YapninyDgntdZ2_4-27s08DjvK/preview','solicitud de cambio de practica ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(72,'Sara Cristina ','Bolivar Ibarra','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestión Empresarial ','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS ','Calle 46 # 41-70',NULL,'Maria Ceistina Hoyos Mejia ','Jefe administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1BuXOojOozmtqm2hK2OYz0Uj72fpVZdHA/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(73,'YESSICA MARCELA','CAÑAS HERNANDEZ','CC','43657647','marcinauta@gmail.com','3122133140','Práctica','1','TECNÓLOGO EN GESTIÓN DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2236470','2022-07-25','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','860005068-3','CRTC ESCUELA DE TRABAJO SAN JOSE','DIAGNONAL 44 NRO 31 70',NULL,'DORIS SHADINN LOAIZA ZAPATA','COORDINADORA INSTITUCIONAL SST','3146945549','sgsst@etsanjose.org','La empresa','https://drive.google.com/file/d/1AZ77B9rnKna671KRRPhiibbEgHzwySyA/preview','Hace un mes que comencé pero tenía dificultades con el formulario para registrar la modalidad','Pendiente','2023-09-08 15:53:08','Admin Admin'),(74,'Sebastián ','Escobar Caro','CC','1046668824','sebasescobar456@gmail.com','3117610474','Práctica','5','Coordinación de Escuelas de Música','Tecnología','251135','2023-12-07','Jorge Henao López','joalopezh@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'La empresa','https://drive.google.com/file/d/10oSbVpBzIIgeKRWq8pbheTLarFV5dKNi/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(75,'JUAN CAMILO BENEDETTI','BENEDETTI ARTEAGA','CC','1067160283','JUANCAMILOBENEDETTI20@GMAIL.COM','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2022-05-09','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N* 15-72 BARRIO REMOLINO',NULL,'MABEL LORENA MANGONES URIBE','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1QuIiBGWhnj9OE8Uy_GXst035Z27L2ML4/preview','por favor aceptenme la carta tengo todas las evidencias al dia muchas gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(76,'miguel angel ','alzate vargas ','CC','70,567,911','miangelalzate@gmail.com ','300 654 37 21 ','Práctica','3','SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@misena.gov.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1YTEu2ncuTelxKY2b6DqlGikNWv3lR32T/preview','ENVIO DOCUMENTACION ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(77,'Jesus ','Velazco Ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Tecnología para la Gestion de Produccion Industrial','Tecnología','2340322','2022-12-03','Conrado Alcides Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina S.A.S','Carrera 80C#32EE-8',NULL,'Marie Moncada F','Gerente Administrativo / Representante Suplente Lega','3142046398','marie.suplimax@gmail.com','La empresa','https://drive.google.com/file/d/16JtbzjvngfBIx5HYy4vxTU1ZCY1TnQSv/preview','Faltan los demas documentos pero no deja cargar a los demás documentos','Pendiente','2023-09-08 15:53:08','Admin Admin'),(78,'Oscar David','Ramirez','CC','71389538','odavid15162931@gmail.com','3006283667','Práctica','5','tecnología gestión logística','Tecnología','2374573','2023-02-02','Laura Johana Jaramillo','ljaramilloq@misena.edu.co','Ninguno','900411781','C.I Fajas MYD','Carrera 50C # 10sur - 120',NULL,'Jorge Cadavia','Coordinador','318 5087057','coorlogistica@fajasmyd.com','La empresa','https://drive.google.com/file/d/16_hs4ZuBHgy0sbEqfetXS7H5lJqCs6xq/preview','quedo atento a su respuesta','Pendiente','2023-09-08 15:53:08','Admin Admin'),(79,'DIANA YURLEY','CANO MUÑOZ','CC','1128483780','dycano08@misena.edu.co','3108985053','Práctica','1','Tecnología en Producción de Multimedia ','Tecnología','2141942','2022-02-04','ISABEL CRISTINA SOTO GALLEGO','isabelsoto1@misena.edu.co','Ninguno','90493604','DOBLE A INVERSIONES SAS','CRA 42A 1 25 OF 410',NULL,'Keicy Johana Carmona Taborda','Coordinador Jurídico y de Gestión humana ','3220991','keicy.carmona@dobleaasesorias.com','La empresa','https://drive.google.com/file/d/1Gwa3HO4d5xQ8uEGksgj7-3r2cMuAiPUd/preview','Quedo atenta a cualquier novedad ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(80,'jony alberto','rios berrio','CC','71216853','jhonyriosb@gmail.com','3042015975','Práctica','5','tecnico en carpinteria','Técnico','2611702','2023-06-03','german villegas jaramillo','gville@sena.edu.co','Ninguno','899.999.063-3','universidad nacional de colombia','calle 65 59a-110',NULL,'christian alberto montoya hurtado','jefe inmediato','3004893982','cmontoyah@unal.edu.co',NULL,'https://drive.google.com/file/d/1T6IeAH9WLya0WRYNQnnhExMv-ASioRty/preview','un poco complicado montar los pdf','Pendiente','2023-09-08 15:53:08','Admin Admin'),(81,'JUAN CAMILO ','BENEDETTI ARTEAGA','CC','1067160283','juancamilbenedeti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO ','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N 15-72 BARRIO CENTRO',NULL,'MABEL LORENA MANGONES URIBE','JEFE DE RECURSOS HUMANOS ','304 4415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1cBFREmbRrhE1qi8HkwWzWeypANXz_F9K/preview','estan todos los requisitos. gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(82,'DANI LUZ','JIMENEZ CARTAGENA','CC','1017154262','danana7727@gmail.com','3104175652','Práctica','5','TECNOLOGIA EN GESTION ADMINISTRATIVA','Tecnología','2065924',NULL,'12 /04/ 2022','MIGUEL ANTONIO SANTANA VILLERA ','Ninguno','811005425-1','CORPORACIÓN UNIVERSITARIA REMINGTON','CALLE51 No 51-27 PARQUE BERRIO',NULL,'MARTA LUCIA FIGUERO ORREGO','SUPERVISORA','3186167515','uniremington@uniremington.edu.co','La empresa','https://drive.google.com/file/d/1l5roB9e5NedioP4RJf11g3zXm0mp3hza/preview','Quedo atenta lo mas pronto posible ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(83,'HEIDY TATIANA ','LONDOÑO RESTREPO','CC','1018347766','LONDONORESTREPOHEIDYTATIANA@GMAIL.COM','3023446460','Lectiva','5','TECNOLOGIA EN SEGURIDAD Y SALUD EN EL TRAQBAJO','Tecnología','2535777','2023-10-23','MARTHA CESILIA HENAO','martaceci-henao@hotmail.com','Ninguno','90725119','HIDROSANITARIAS JZZ S.A.S','SAN JAVIER ',NULL,'JORGE ZAPATA ZAPATA ','JEFE INMEDIATO','3225853484','JORGEZAPATAZULUAGA@GMAIL.COM','La empresa','https://drive.google.com/file/d/1VsLEx8wbOy5nF7iqF9n52saO8kFNiWVU/preview','POR FAVOR COMUNICARSE CONMIGO SI TIENEN ALGUNA DUDA 3023446460 ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(84,'Shaenne Sophia','Gamarra De La Ossa','CC','1102813389','profesorashaenne2@gmail.com','3002441043','Lectiva','5','Coordinación en escuelas de Música','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','9000412354','JIN & CIA Limitada','Sector Torrecilla, Turbaco, Bolívar',NULL,'Leonor Carrasquilla Baena','Coordinadora General','3135742144','dir.conservatorioamn@unibac.edu.co','La empresa','https://drive.google.com/file/d/1IT3EAT_aH9ZhWiHYafHReqJYpkUNCcBC/preview','Envío nuevamente el certificado laboral con las funciones especificas.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(85,'Yessica Duque','Duque Rios','CC','1036630790','yessika.duque@hotmail.com ','3218526482','Lectiva','5','gestion empresarial','Tecnología','2562425','2024-01-15','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','890903938','Bancolombia','Direccion cra 48 # 26-85',NULL,'John Edwar Ruiz Hernandez','Jefe de seccion','4041213','johruiz@bancolombia.com.co','La empresa','https://drive.google.com/file/d/1gpFxYh2T100wgo1pezaEQqM4xwNA12aS/preview','Adjunto la carta para poder realizar la homologacion de las practicas','Pendiente','2023-09-08 15:53:08','Admin Admin'),(86,'Cristian Camilo ','Hincapie Gomez','CC','1036640152','cristiancamiloh3@gmail.com','3185439882','Práctica','5','Gestión Empresarial','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez ','Alvarozco@misena.edu.co','Ninguno','800022367','Fundación Socya','calle 84 sur # 33 - 57 ',NULL,'Alvaro Perez ','Direcctor de Negocios ','301 335 8632 ','aeperez@socya.org.co','La empresa','https://drive.google.com/file/d/1nOp4lfTOwLVdvQnZzHnmuhAOZXq5H5Nc/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(87,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-18','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno',' 800.223.337-6','EMPRESA DE DESARROLLO URBANO','CARRERA 49 N°44-94- PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co','La empresa','https://drive.google.com/file/d/1hn8yn3hafYtZfZbGxAIrtlQIS3pa8RNj/preview','NINGUNA','Pendiente','2023-09-08 15:53:08','Admin Admin'),(88,'Sara Cristina ','Bolivar Ibarra','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestion Empresarial','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS','Calle 46 # 41-70',NULL,'Maria Cristina Hoyos Mejia ','Lider Administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1ZNOEpR3EcoGkVzKAZma13LVhiE9gPUc3/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(89,'oscar david','castro mendoza','CC','1005551102','davidoscar16@outlook.es','3022419232','Práctica','5','distribución física internacional','Tecnología','2455351',NULL,'Laura Jaramillo Quiroga ','ljaramilloq@misena.edu.co','Jóvenes en Acción','6053567000','CACHARERIA MUNDIAL','Vía Belén KM 1 Río Negro, Antioquia,',NULL,' Cristian Giraldo ','coordinador de turno ','3104666175','Cristian.giraldo@grupo-orbis.com','La empresa','https://drive.google.com/drive/u/1/folders/1C_zjhXGLWVN1ljLjH2HL_yBMrUX-ZmK2GtCZaUlwM0DO-E3XivqSEPYfXzLlZrwWUmI9QKQZ','NINGUNA ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(90,'Santiago ','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046380966','Práctica','3','Gestión administrativa ','Tecnología','2313307','2022-10-14','Ana Patricia Solis Leal','asolis3@misena.edu','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1xe4-opmUYLrVnRhhpMquEfaLDO0CTNCv/preview','Adjunto documentos para realizar el cambio de modalidad de prácticas, ya cuento con la autorización de dicho cambio por parte del comité. ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(91,'CRISTIAN JOHAN ','HERNANDEZ RENDON','CC','1037629396','cristian3356@hotmail.com','3218850297','Práctica','3','Gestión de salud y seguridad en el trabajo','Tecnología','2280372-2','2022-09-30','sandra iris ','siescobar0@misena.edu.co','Ninguno','n/a','n/a','n/a',NULL,'n/a',NULL,'n/a','n/a',NULL,'https://drive.google.com/drive/u/1/folders/1C_zjhXGLWVN1ljLjH2HL_yBMrUX-ZmK2GtCZaUlwM0DO-E3XivqSEPYfXzLlZrwWUmI9QKQZ','practica proyecto productivo, estoy con otro compañero el cual dejo su nombre en los comentarios ya que el formato no trae espacio para otra persona MANUELA GALEANO 1036669940 ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(92,'SINDY POLETH ','RODRIGUEZ CASAS','CC','1012372259','sindisita18@hotmail.com','3108163325','Práctica','1','PRODUCCION DE MULTIMEDIA','Tecnología','2374664','2023-08-02','MONICA PATRICIA VASQUEZ CORREA','mpvasquez@misena.edu.co','Ninguno','80249474-9','PHOTO STORE','CALLE 65 F # 78G - 65 SUR BOSA LA AMISTAD',NULL,'CARLOS HONORIO GUERRERO GOMEZ','JEFE','3103177270','photo_store@hotmail.com','El SENA','https://drive.google.com/file/d/1fqfaM8qVORLwhSo9uxR7Jz8Gxi8Yqzo2/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(93,'DAYANA MARCELA','NOGUERA SOLARTE','CC','1020824683','dayananoguera601@gmail.com','3202234272','Lectiva','5','TECNOLOGO EN GESTION ADMINISTRATIVA','Tecnología','2449035',NULL,'DORIS YANETH RODRIGUEZ','dyrodriguez@sena.edu.co','Ninguno','900293274-2','ISOPLASTICOS S.A.S','CRA18 164 50',NULL,'SANDRA PATRICIA PLAZAS','JEFE DE CONTROL','3015166056','asistente.nomina@isoplasticos.com','La empresa','https://drive.google.com/file/d/1s2vl5dOV51C1F6FqvCIsMKX3e6queLsf/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(94,'MANUELA','GALEANO GUIRAL','CC','1036669940','Manujero.09.03.2016@gmail.com','3024590304','Práctica','3','GESTION DE SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2280356-1','2022-09-30','Genny De Jesús Carvajal Jaramillo','gdcarvajal7@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A','El SENA','https://drive.google.com/file/d/1VlzPe-l90RIl72uHyUyWfpKIt0Ey9uJ3/preview','CONFORMANDO EQUIPO CON CRISTIAN JOHAN HERNANDEZ RENDON CEDULA 1037629396','Pendiente','2023-09-08 15:53:08','Admin Admin'),(95,'JUAN CAMILO ','BENEDETTI ARTEAGA ','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO ','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N* 15-72 BARRIO CENTRO',NULL,'MABEL LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','304 4415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1o4dcFE-EKwC299uqHGm9n8mPe6y0nYXl/preview','espero su respuesta pronto ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(96,'Santiago','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046389966','Práctica','3','Gestión administrativa ','Tecnología','2313307','2022-10-14','Ana Patricia Solis Leal ','asolis3@misena.edu','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1ll-EiBOd6RxKNHJuCEy3jvUKOMACmhtF/preview','Adjunto documentos para hacer cambio de modalidad de prácticas, las cuales ya cuento con la aprobación del comité. ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(97,'Sebastián','Escobar Caro','CC','1046668824','sebasescobar456@gmail.com','3117610474','Lectiva','5','Tecnólogo en Coordinación de Escuelas de Música','Tecnología','2511135','2023-12-20','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','8000.116.217-2','Corporación Universitaria Minuto de Dios','Cra 45 N°22D-25',NULL,'Elicenia Restrepo Restrepo','Directora de Bienestar - Asuntos Estudiantiles',NULL,NULL,NULL,'https://drive.google.com/file/d/12rG5glsQ5RF6lPNEg0i6LMk4vknQvCC5/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(98,'Daniela','Londoño Torres','CC','1036649420','dani.277@hotmail.com','3217237349','Práctica','5','Seguridad y salud en el trabajo','Tecnología','2280372-1','2022-10-01','Sandra Iris Escobar Osorio','siescobar0@misena.edu.co','Ninguno','901325099','WTG construccion y reformas','cra 50a 66-67',NULL,'Raul Andres Oquendo ','Coordinador proyectos ','3005994595','coordinadorwtg@gmail.com','La empresa','https://drive.google.com/file/d/1pB-ZrF26otoqUODHQi-m1s4GlTl0msVj/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(99,'YAQUELINE ','BEDOYA GALEANO','CC','1017241792','YAQUELINE297@SOY.SENA.EDU.CO','3053371991','Práctica','3','GESTION DE SGSST ','Tecnología','2280356','2022-10-22','GENNY CARVAL','GDCARVAJAL7@MISENA.EDU.CO','Ninguno','0000000','00000','000000',NULL,'00000','00000','00000000','0000000','El SENA','https://drive.google.com/file/d/1br_w8k_K_-AMTRXSdpY4oxDHLDm0iHXv/preview','NO','Pendiente','2023-09-08 15:53:08','Admin Admin'),(100,'YOLANDA DE JESUS ','RIOS CARDONA ','CC','43905369','YOLANDARIOS502@GMAIL.COM','3186124765','Práctica','3','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO ','Tecnología','2280372-2','2022-09-30','SANDR IRIS ESCOBAR ','siescobar0@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1UX0qwU3f9LWPp2YV-IsMtO--qAk1-94U/preview','NINGUNO','Pendiente','2023-09-08 15:53:08','Admin Admin'),(101,'JUAN DIEGO','RICO LONDOÑO','CC','1128455333','DIERI9225@GMAIL.COM','3008457834','Práctica','5','TECNOLOGO EN PRODUCCION INDUSTRIAL','Tecnología','2453890','2023-07-22','DIEGO ARMANDO MARTINEZ','da42@misena.edu.co','Ninguno','811.012.366-4','HIERBAS Y PLANTAS TROPICAS S.A.S','CARRERA 56 # 72 A- 101 ITAGUI ',NULL,'YENNY BETANCUR','COORDINADORA DE PRODUCCION','3103479822','yennyb@hiplantro.com','La empresa','https://drive.google.com/file/d/1vqGMdrr64RzJxsuZq8TTHF6MudpupbTl/preview','ENVIO DOCUMENTOS (PRACTICA)','Pendiente','2023-09-08 15:53:08','Admin Admin'),(102,'Leslie Nicole ','Alvarez Serna','CC','1036664757','nalvarez0596@gmail.com','3014477398','Lectiva','5','Gestión empresarial','Tecnología','2562425','2024-01-17','Maribel Rodriguez Rave','mrodriguez94@misena.edu.co','Ninguno','811043859-6','C.I PACK BLUE SAS','Cra. 48 #75A 37',NULL,'Alejandro Jaramillo','Director E-commerce','3743637','alejandro@colorblue.com.co','La empresa','https://drive.google.com/file/d/1fVX_cipbUYIw2QxST_uf98IZO4zpBaks/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(103,'Juan Pablo','Uribe Perez','CC','1036600845','juanpablouribeperez6@gmail.com','3502826268','Práctica','3','tecnología en gestión de la producción industrial','Tecnología','2320322','2023-01-16','Conrado Alcides ','casosaz@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1AKlsp9652V3sRlVW9eCqmVJWfH7VtDay/preview','Sin Observaciones','Pendiente','2023-09-08 15:53:08','Admin Admin'),(104,'david','urrego moreno','CC','1039468459','durrego95@misena.edu.co','3197707566','Práctica','3','Gestión de la seguridad y salud en el trabajo ','Tecnología','2206253','2022-04-09','sandra iris escobar osorio','siescobar0@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1aFAQx01XlFkleHkdqWuvxZluUgRSEn-Y/preview','proceso para comenzar el proyecto','Pendiente','2023-09-08 15:53:08','Admin Admin'),(105,'YEISON ENRIQUE','LOPEZ MOSQUERA','CC','1216726236','lopez25yeison@gmail.com','3225963150','Práctica','5','tecnólogo en gestión logística','Tecnología','2236465','2022-07-21','jhon alejandro jimenez','alejandrojsa@misena.edu.co','Ninguno','805.022.756-4','jobandtalent','cra 12Nº 90- 19',NULL,'Cristian ','coordinador de logística, en colombina ','3116304405','Ybetancur@colombina.com','La empresa','https://drive.google.com/file/d/1TkQBGkSkpTid_itkBjt0R2XTya2Vhurz/preview','mi contrato es obra o labor por medio de la temporal jobantalend para trabajar en colombina S.A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(106,'Maria Isabel ','Osorio Machado','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoración de espacios interiores ','Tecnología','2453770','2023-01-23','juan david acevedo ','Jdacevedoa@misena.edu.co','Ninguno',NULL,'sena calatraba de itagui ','SENA Complejo Sur Itagüí, Cl. 63 #58B-03',NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1yfdhBplwdWsdVogLimOpI6MJnT3RtvAu/preview','Me llamo maria isabel osorio y me cambiaron de ficha. ahora pertenezco a esta ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(107,'Rolando jose','guerrero sampayo','CC','1043668080','rolando22_@outlook.com','3202720874','Práctica','3','analisis sistemas de informacion','Tecnología','2251309','2022-09-01','edward lopera','elopera@misena.edu.co','Ninguno','9007683733','grupo hoteles','Cl. 47 #45 49, La Candelaria, Medellín, La Candelaria, Medellín, Antioquia',NULL,'anderson lopez','arh@grupo-hoteles.com','3194070907','arh@grupo-hoteles.com','La empresa','https://drive.google.com/file/d/1iV2dqLz_je3NJbimYP8zRVsVWxwhGDUQ/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(108,'YESSICA MARCELA','CAÑAS HERNANDEZ','CC','43657647','marcinauta@gmail.com','3122133140','Práctica','1','SG SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2236470','2022-07-25','RICARDO ESTRADA','restrada3@misena.edu.co','Ninguno','860005068-3','CRTC DE NUESTRA SEÑORA DE LOS DOLORES ','DG 44 31 70',NULL,'DORIS SHADINN LOAIZA APATA','COORDINADOR DE SST','3146945549','sgsst@etsanjose.org','La empresa','https://drive.google.com/file/d/1cVbaqzn97wV4LW-4ho4tD1WfI0mfINfb/preview','Lista la afiliación a ARL también','Pendiente','2023-09-08 15:53:08','Admin Admin'),(109,'Beatriz Elena','Carmona Tirado','CC','43167523','negritacarmona1012@gmail.com','3043555362','Lectiva','5','GS-SST','Tecnología','2453820','2023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','890931708','EXTRUSIONES S.A.','Dirección: Cl. 25 #41-166, Itagüi, Antioquia',NULL,'Gustavo Silva','Director de producción','(604) 3222307','gsilva@extrusiones.com.co','La empresa','https://drive.google.com/file/d/1x-ipNuL0rcPa3urdbEipkIPUuH-V-CGt/preview','documentacion para aprovacíon de practicas por vinculación laboral','Pendiente','2023-09-08 15:53:08','Admin Admin'),(110,'Maria Isabel','Osorio Machado ','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoración de Espacios de interiores','Tecnología','2453770','2023-01-23','Mauricio Sanchez','msanchezmunoz@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1d6T5MA-i9K5XOH75bJq1wKQHgYK1rwpw/preview','Documentos para la pasantía en el sena ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(111,'Miguel Angel','Gómez Zuluaga','CC','1027801697','ma796@misena.edu.co','3133240391','Práctica','1','Producción de Multimedia','Tecnología','2472670','2022-12-15','Jarley Mejía Agudelo ','jmejia64@misena.edu.co','Ninguno','899999034-1','Servicio Nacional de Aprendizaje SENA - Centro Tecnológico del Mobiliario CTM','Calle 63 #58B - 03, Itagüi, Antioquia',NULL,'Brandon Gonzales','Practicante Comunicaciones',NULL,NULL,'El SENA','https://drive.google.com/file/d/1XcYBcIe-r4_EuRbVonx7VLK1j8gxsEMd/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(112,'Maria Isabel','Osorio Machado','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoracion de espacios interiores','Tecnología','2453770','2023-02-23','Mauricio Sanchez','msanchezmunoz@misena.edu.co','Ninguno','5149280','sena de itagui','Cl. 63 #58B-03, Terranova, Itagüi, Antioquia',NULL,NULL,'dibujante','45149290',NULL,'El SENA','https://drive.google.com/file/d/1vnMWvogj8RFY5ZMVGkPn3-oYmbvRtyXw/preview','datos para mi pasantía en el sena','Pendiente','2023-09-08 15:53:08','Admin Admin'),(113,'Leslie Nicole','Alvarez Serna','CC','1036664757','nalvarez0596@gmail.com','3014477398','Lectiva','5','Gestión empresarial','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave','mridriguez94@misena.edu.co','Ninguno','811043859-6','C.I. pack blue sas','Cra. 48 #75A 37',NULL,'Alejandro Jaramillo','Director E-commerce','3743637','alejandro@colorblue.com.co','La empresa','https://drive.google.com/file/d/1Ia-AzXU6pog5RQxfTFIJcVS273m57oTQ/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(114,'Alexander','Quintero Munera','CC','1037625883','alexanderqm93@hotmail.com','3192536383','Lectiva','4','Tecnica en Carpintería','Técnico','2672203','2023-10-23','Antonio de Padua Monsalve Velasquez','paduamonsalve@misena.sena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A','El SENA','https://drive.google.com/file/d/1gSYRV0GFxOsYP4BDPWa1I0VAEk_gj6KS/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(115,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','TECNOLOGÍA EN GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-17','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6','EMPRESA DE DESARROLLO URBANO (EDU)','CARRERA 49 N°44-94 PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1qjIYD7MXVPezn_fUxZv5kYpEiFw0oND7/preview','https://docs.google.com/spreadsheets/d/1sQPdbNOAlE-7xx2A5By8w2zeFs3YnT61/edit?usp=sharing&ouid=116964390984032923040&rtpof=true&sd=true- ADJUNTO VINCULO DEL FORMATO DE EXCEL QUE HABIA QUE LLENAR YA QUE ESTE NO SE DEJA PEGAR EN LOS DOCUMENTOS.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(116,'Juliana ','Gaviria Gallego','CC','1036779010','Jgaviria010@misena.edu.co','1036779010','Práctica','3','Tecnológo en coordinación de escuelas de música','Tecnología','2425435','2023-07-03','Freddy Alberto Ochoa Giraldo','Faochoa54@misena.edu.co','Ninguno',NULL,NULL,NULL,'°',NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1az33PGiB20JNFXdpy9PVPpozUKQUGIFw/preview','Envío los documentos requeridos para iniciar mi etapa práctica muchas gracias. ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(117,'Sofía ','Angarita López','TI','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Apoyo de sostenimiento Sena','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100',NULL,'Laura María Morales Estrada','Directora ','3104006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1mzaE4VM7NoL_xeQ3aOqKWqkCqr8iWu6-/preview','No','Pendiente','2023-09-08 15:53:08','Admin Admin'),(118,'Esteban ','Gaviria Patiño','CC','1017197062','esteban_gaviria@soy.sena.edu.co','3046456222','Lectiva','4','Técnica en Carpintería','Técnico','2672203','2023-10-23','ANTONIO DE PADUA MONSALVE VELASQUEZ','amonsalvev@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1ueb1HRTvYvbXdEsMzPlUHkSjYo9_77Ir/preview','Gracias por tener en cuenta mi perfil','Pendiente','2023-09-08 15:53:08','Admin Admin'),(119,'Cristian Camilo ','Hincapié Gómez ','CC','1007251240','Cristiancamiloh3@gmail.com','3185439882','Práctica','5','Gestión Empresarial','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez','Alvarozco@misena.edu.co','Ninguno','800022367-4','Fundación Socya ','Calle 84 sur #33 -65',NULL,'Alvaro Perez ','Director de negocios ','3013358632','aeperez@socya.org.co','La empresa','https://drive.google.com/file/d/1qRdhRpYAEmN5S4-lkI6Tyt9CqrWzckIw/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(120,'Jycela ','ColoradoSanchez ','CC','1007251240','Jycecolosanchez@gmail.com','3219607416','Práctica','5','Gestión Empresarial ','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez','Alvarozco@misena.edu.co','Ninguno','830511773','BRM S.A.S','Carrera 42 # 31 -20 ',NULL,'Ana Maria Henao Lopera','Shift Managger ','3222725281','ana.henao@brm.com.co','La empresa','https://drive.google.com/file/d/1diw6bgHSZ_nOKZaSxuzHi7FpGRnIq2cy/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(121,'Luisa Fernanda','Galeano Gutiérrez','CC','1040738829','ludecieloazul@gmail.com','3245171763','Lectiva','1','Gestion de la Seguridad y Salud en el Trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','901677097-8','Nannys House Keeping','Cra 50 N° 52-22 #507 La Candelaria',NULL,'Olga Lucía Gallego Giraldo','Coordinadora de Gestión Humana','3028691769','selección@housekeeping.com','La empresa','https://drive.google.com/file/d/1G3QWezyzlubnS67Z2ExHGVzo6xX7ODlq/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(122,'Jesus Ernesto','Velazco Ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Gestión de la Producción Industrail','Tecnología','2340322','2022-12-04','Conrado Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina S-A:S','Carrera 80C # 32 EE - 8',NULL,'Marie Moncada','Gerente Administrativa','3142046398','marie.suplimax @gmail.com','La empresa','https://drive.google.com/file/d/10QNfWjC-qTIHqwc46py7gOhh03AL9kHI/preview','No dejo enviar los demas archivos ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(123,'YESSICA LILIANA','Duque Rios','CC','1036630790','yessika.duque@hotmail.com','3218526482','Lectiva','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-12-17','MARIBEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','890903938','BANCOLOMBIA','DIRECCION GENERAL CRA 48 # 26 85',NULL,'JOHN EDWAR RUIZ HERNANDEZ','JEFE DE SECCION','4041213','JOHRUIZ@BANCOLOMBIA.COM.CO','La empresa','https://drive.google.com/file/d/12Es1JZkVVuEt_qFkGXqgMNuwxmGomHIn/preview',' Me ha sido imposible adjuntar los dos archivos, por ende adjunto el enlace, allí podrán encontrar la información https://docs.google.com/spreadsheets/d/1wC98UgoEARCfIZ1AXnXm0OxmZS5kXd7k/edit?usp=drive_link&ouid=112554897522813390418&rtpof=true&sd=true','Pendiente','2023-09-08 15:53:08','Admin Admin'),(124,'Luisa Fernanda','Galeano Gutiérrez','CC','1040738829','ludecieloazul@gmail.com','3245171763','Lectiva','1','Gestión de la Seguridad y Salud en el Trabajo','Tecnología','2453820','0023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','901677097-8','Nannys Hose Keeping','Cra 50 N° 52-22 # 507 La Candelaria',NULL,'Olga Lucía Gallego Giraldo','Coordinadora Gestión Humana','3028691769','seleccion@housekeeping.com','La empresa','https://drive.google.com/file/d/1AtMDaFAlU2dNzT_vZ9CsS1C2BIiOCVuA/preview','La etapa lectiva finaliza el 24 de Julio de 2023, pero ya tengo todos los resultados aprobados incluido inglés','Pendiente','2023-09-08 15:53:08','Admin Admin'),(125,'Katherine','Montoya Avendaño','CC','1152469410','katherine.montoya99@gmail.com','3113171720','Práctica','5','Producción multimedia ','Tecnología','2340414','2022-12-02','Oscar Alfonso Vivas ','Oavivas60@misena.edu.co','Ninguno','901607898','Immaginaziones S.A.S','Kilometro 21 autopista norte - Centro logístico',NULL,'Juan David Sepulveda Escobar ','Coordinador de mercadeo ','3003029898','Mercadeo@dispartes.com ','La empresa','https://drive.google.com/file/d/1HHXW0GePTEsLqn8gu8UHZi75p-EKvjJt/preview','No puedo adjuntar el certificado ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(126,'Ana Sofía ','Osorio moreno ','TI','1018233020','anasofiaosoriomoreno0418@gmail.com','3052631385','Práctica','3','Dibujo arquitectónico ','Técnico','2670216','2023-05-07','Juana David Acevedo ','jdacevedoa@misena.edu.co','FIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/19gxw539fWNvCVpjiUUokkwIILpKUzo7c/preview','Gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(127,'rolando jose','guerreo sampayo','CC','1043668080','rjguerrero0@misena.edu.co','3202720874','Práctica','3','analisis sistemas de informacion','Tecnología','2251309','2022-09-02','Edward lopera','elopera@misena.edu.co','Ninguno','9007683733','grupo hoteles',' CALLE 47 45 47, MEDELLIN, ANTIOQUIA',NULL,'anderson lopez','gerente','3194070907','programacion@grupo-hoteles.com','La empresa','https://drive.google.com/file/d/1TfMMxYsBfulO5kW7v9TsDWSwanBxlL0h/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(128,'DANIELA ','AGUDELO PIZARRO','CC','1040745821','danielaagudelopizarro@gmail.com','3194894947','Lectiva','5','Gestión Empresarial','Tecnología','2562425','2023-12-03','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','901428728-1','HI BARF SAS','CALLE 37SUR 43A 18',NULL,'HILDERLENY RESTREPO','ADMINISTRADORA','3156740939','hibarfsas@gmail.com',NULL,'https://drive.google.com/file/d/1webtFkTNB5RnJRC4KAZ_2DeuAdrguz-h/preview','Muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(129,'Jesus Ernesto','Velazco ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Tecnologia en Gestion de la Producción Industrial','Tecnología','2340322',NULL,'Conrado Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina SAS','Carrera 80C#32EE-8',NULL,'Marie Moncada','Gerente Administrativa','3207022389','marie.suplimax@gmail.com','La empresa','https://drive.google.com/file/d/14scRAfq8tOxg2Ss0QADR41VDcGoNgJyK/preview','Muchas Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(130,'Abril Angélica','Betancur Muñoz','CC','52502042','squattershostelrock@gmail.com','3203784670','Lectiva','5','Tecnólogo en coordinación de escuelas musicales','Tecnología','2511135','2023-12-15','Jorge López','jorge.lopez1@udea.edu.co','Ninguno','900143296-4','Colegio Gabriel Betancourth Mejía','Carrera 87a#6a-23 Tintal Bogotá',NULL,'Laura Andrea Ruiz','Coordinadora Académica','3202068975','coldigabemjia@educacionbogota.edu.co','La empresa','https://drive.google.com/file/d/1j1HzZ8JLaIlrSm0NUR0cccn8iDagE1m1/preview','Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(131,'John Esneider','Moreno Monsalve','CC','1035435953','johnesmoreno14@gmail.com','3016383274','Práctica','3','Tecnológo en Decoracion de Espacios Interiores','Tecnología','2183836','2022-04-01','Juan Esteban Arias García','jeariasg@sena.edu.co','Ninguno','No aplica','No aplica','No aplica',NULL,'No aplica','No aplica','No aplica','No aplica',NULL,'https://drive.google.com/file/d/1QX_e8Jnp6mTskvBAfZR2KdmJVzWJEtSF/preview','No aplica','Pendiente','2023-09-08 15:53:08','Admin Admin'),(132,'Leidy Alexandra ','Guarin Mena ','CC','1152444871','Alexagm.hse@gmail.com','3206829279','Práctica','3','decoracion de espacios interiores ','Tecnología','2395917','2023-07-05','Mauricio Sanchez','msanchezm@sena.edu.co','Apoyo de sostenimiento Sena','NA','NA','NA',NULL,'NA','NA','NA','NA',NULL,'https://drive.google.com/file/d/1giNip0Q1Kc3AJZlE7PaUjzzJOEjyTHyx/preview','Na','Pendiente','2023-09-08 15:53:08','Admin Admin'),(133,'Rolando jose','guerrero sampayo','CC','1043668080','rjguerrero0@misena.edu.co','3202720874','Práctica','3','analissi sistemas de informacion','Tecnología','2251309','2022-12-12','edward lopera','elopera@sena.edu.co','Ninguno','9007683733','grupo hoteles ',' CLL 47 # 45 - 47',NULL,'anderson lopez','gerente','3194070907',NULL,'El SENA','https://drive.google.com/file/d/1IazLwBooZNkaZnuqx1Uakci0h1yB_LZ4/preview','anexe todo en muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(134,'Yeimy Yulieth','Cañola Sabas','CC','21981123','canolayulieth@gmail.com','3116073884','Lectiva','5','Gestión Empresarial','Tecnología','2562425','2023-12-08','Maribel Rodriguez Rave','mrodriguez94@misena.edu.co','Ninguno','890917141-6','Seguridad Atempi de Colombia Ltda','Calle 16B SUR #42-97',NULL,'Carolina Jiménez Moncada','Gerente de Marca y Alianzas Estratégicas','4486110','carolina.jimenez@atempi.co','La empresa','https://drive.google.com/file/d/1rU244GEQbwLrLfE_-rDysbet-boqt59r/preview','Gracias, atenta a sus importantes comentarios.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(135,'Sofía ','Angarita López','CC','1033486143','sofii.angarita@gmail.com ','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-08','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo mundo de juegos ','Calle 49#26-10, Barrio San Juan - Copacabana ',NULL,'Laura Maria Morales Estrada ','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1v_beFBJj8bb9SX6yuVUcZMLmdueHfU2Y/preview','La modalidad de practicas que elegí es pasantía ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(136,'NATALIA MARCELA ','BEDOYA BETANCUR ','CC','1047968638','NATYBEDOYA201504@GMAIL.COM','3135960687','Práctica','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-01-17','MARIBEL RODRIGUEZ','MRODRIGUEZ94@MISENA.EDU.CO','Ninguno','9001387591','INDUSTRIAL DE POMOS SA','CRA 51 B 12 SUR 90',NULL,'JUAN MORENO ','GERENTE GENERAL ','3013761030','ASISTENTE@INDUSTRIALDEPOMOS.COM.CO','La empresa','https://drive.google.com/file/d/1pXiR1fbpUQAd3wNOl1nuC3KUgNRibh17/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(137,'Sara','Gavira Rua','CC','1025881899','gaviriaruasara25@gmail.com','3005377289','Práctica','4','Dibujo Arquitectonico','Técnico','2623140','2023-03-24','William David Tibavija','wtibavija@sena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/100OiypsmW3EZ751TrqOo6mfmhEk7Ka09/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(138,'Sara ','Gaviria Rua ','CC','1025881899','gaviriaruasara25@gmail.com','3005377289','Práctica','4','Dibujo Arquitectonico','Técnico','2623140','2023-03-23','David Francisco Martinez Padilla','davidfm19@misena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/12daP4EbIlOfSd5Wz5tJyfA47Qvf163Mu/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(139,'LAURA',' ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','TECOLOGIA EN GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-18','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6','EMPRESA DE DESARROLLO URBANO','L -194, Cra. 49 #44-94, La Candelaria, Medellín, Antioquia',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1p8a4t0WbtzWgZhVRlwCX3laxkcMyigL5/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(140,'yurani andrea',' zapata lopez','CC','1020460732','yazapata.pyg2021@gmail.com','3144705186','Lectiva','3','gestion de la seguridad y salud en el trabajo','Tecnología','2453820','2023-07-01','Ricardo estrada','restrada3@misena.edu.co','Ninguno','000000000','no aplica','no aplica',NULL,'no aplica','no aplica','no aplica','no aplica','El SENA','https://drive.google.com/file/d/1GPBn0_SCiAhHXPD1FLxczgClVQreOD9J/preview','los documentos no permiten ser adjuntados ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(141,'Katherine','Montoya Avendaño','CC','1152469410','kmontoya014@misena.edu.oc','3113171720','Práctica','5','Producción multimedia ','Tecnología','2340414','2022-12-02','Oscar Alfondo Vivas ','oavivas60@misena.edu.co','Ninguno','901607898','Immaginaziones S.A.S','Kilometro 21 autopista norte - Centro logístico',NULL,'Juan David Sepulveda Escobar','Coordinador de mercadeo ','3003029898','Mercadeo@dispartes.com ','La empresa','https://drive.google.com/file/d/1z_8M4h0n5rb8c1uhIMDepTusJUQ1ZM-N/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(142,'Jonathan Camilo','Piedrahita Cadavid','CC','1037573243','jonathan05862011@gmail.com','3013730175','Práctica','1','Gestión Empresarial','Tecnología','2280414','2022-10-28','Heduan Henry Ospina','hehospina@sena.edu.co','Ninguno','860,069,229','Colmundo Radio','calle 46# 78a 09',NULL,'Linda Catalina Correa ','Coordinadora Regional ','3024116822','linda.catalinacorrea1986@gmail.com','La empresa','https://drive.google.com/file/d/1-hFiBQTuxdI4XdfWrkcdg9F3LYoq9G83/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(143,'Sofía ','Angarita López ','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de Escuelas de Música ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100 Barrio San Juan, Copacabana ',NULL,'Laura María Morales Estrada ','Directora','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1588nbZ6G2_wPyvAUrjWMfy4b_ItQ8wGV/preview','Ya los resultados de aprendizaje pendientes están aprobados ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(144,'Daniel Jacob','Salgado González','CC','1036665524','daniel-9607@hotmail.con','3218939386','Lectiva','5','Tecnólogo en Gestión Empresarial','Tecnología','2453777','2023-08-01','Juan Camilo Chavarría Grajales','jcchavarria4@misena.edu.co','Ninguno','890929647','Químicos y Plásticos Industriales Sas','Calle 48 C Sur # 43 A - 291',NULL,'Miguel Humberto Rodriguez Cespedes','Jefe de Logística','6044443560','mrodriguez@quimicoplasticos.com',NULL,'https://drive.google.com/file/d/1FzySXuY0a52YTSggcoT4-UmtzBa8_Ae5/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(145,'John Esneider','Moreno Monsalve','CC','1035435953','johnesmoreno14@gmail.com','3158080904','Práctica','3','Decoración de espacios interiores','Tecnología','2183836','2022-04-08','Juan Esteban Arias','jeariasg@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1p2cEzgHbLfM4L4iX83w6SYg_SnoXqfLt/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(146,'monica yuliana ','Murillo ossa','CC','1040740657','monikevelyn1708@gmail.com','3244744097','Práctica','1','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2340243','2022-11-30','wilmar munera','wamunera@sena.edu.co','Ninguno','901.048.954-7','montacarga dinastía','car 50 n 37-22 Itagüí Antioquia',NULL,'Wilson mejía Ocampo','gerente administrativo','2778837','montacargasdinasia@hotmail.com','El SENA','https://drive.google.com/file/d/1UlJALe9luAy-boT94k5UVQl9TLsZJZUR/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(147,'Heidy Tatiana ','Londoño Restrepo','CC','1018347766','londonorestrepoheidytatiana@gmail.com','3023446460','Lectiva','5','seguridad y salud en el trabajo','Tecnología','2535777','2023-10-24','Marta Cecilia Henao','martachl@misena.edu.co','Ninguno','900725119','Hidrosanitarias JZZ','CALLE 57 127 111 110',NULL,'JORGE ZAPATA ','GERENTE ','3225853484','jorgezapata@gmail.com','La empresa','https://drive.google.com/file/d/1o3LgEtjFFgot3QbLtxpxc8AW9ayH6WVk/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(148,'Mariana','Rivera Zuleta','CC','1040738620','riveramariana722@gmail.com','3105520105','Práctica','1','Seguridad y salud en ele trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada','restrada3@misena.edu.co','Ninguno','901594893-7','Delicarnes -porcionados SAS','Carrera 89 -47 DD 52 INT 101',NULL,'Jhoana Montoya Mendoza','Gerente General','3008855772','delicarnesporcionados@gmail.com','La empresa','https://drive.google.com/file/d/1AGpCh9biwg8P46EX2QX2S9if6bUmLmJo/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(149,'MARYBEL','GARCIA LOPEZ','CC','1000305330','mgl.2003dreams@gmail.com','3127972018','Práctica','3','DECORACIÓN DE ESPACIOS INTERIORES','Tecnología','2071532','2021-08-18','JUAN DAVID ACEVEDO','jdacevedoa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1ZCa2VknBSoIEeYz4zftC8LKs5HxgxEaA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(150,'Monica Yuliana','Murillo Ossa','CC','1040740657','monikevelyn1708@gmail.com','3244744097','Práctica','1','Sistema de gestion de seguridad y salud en el trabajo','Tecnología','2340243','2022-11-30','Wilmar Munera','alemuve@gmail.com','Ninguno','901.048.954-7','Montacargas Dinastia','cra 50 d #27-32 Yarumito Itagüí',NULL,'Wilson Mejía Ocampo','Gerente administrativo','2778837','montacargasdinastia@hotmail.com','El SENA','https://drive.google.com/file/d/1GrAXuFPLeKtoiGF0xHh5pKSPQKDzrhtB/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(151,'Sofía ','Angarita López ','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro educativo Mundo de juegos ','calle 49 #26-100 Barrio San Juan - Copacabana ',NULL,'Laura Maria Morales Estrada','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/12lSRbyJCDuQSX9WnZXWIjUoEeCS-1U_J/preview','Ya están aprobadas las competencias de ingles ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(152,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave ','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6 ','EMPRESA DE DESARROLLO URBANO (EDU)','CARRERA 49 N° 44-94 PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN PREDIAL','313 7445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1gDGW_HAUBGQXEchieKjQMxB2-vqFyRFG/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(153,'Ramirez Arroyave','Luisa Maria','CC','1152199937','luisa.ramirez9991@misena.edu.co','3103102535','Práctica','4','técnico en recursos humanos','Técnico','2425407','2022-07-05','Ana Solis Leal','asolis3@misena.edu.co','Ninguno','8999990341','centro mobiliario sena','calle 63 #58b 03',NULL,'Jorge Ivan Quiroz Valencia','tecnico 2','3104220459','jeariasg@sena.edu.co','El SENA','https://drive.google.com/file/d/1n0g77BcCLhYjbwdboyz_DrUtFu54BXb0/preview','realizo la inscripción en un café internet, puesto que desde mi correo no me permitía montar el archivo, mi correo es luisa.ramirez9991@misena.edu.co','Pendiente','2023-09-08 15:53:08','Admin Admin'),(154,'Mariana','Rivera Zuleta','CC','1040738620','riveramariana722@gmail.com','3105520105','Lectiva','1','Seguridad y salud en el trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada','restrada3@misena.edu.co','Ninguno','901594893-7','Delicarnes-Porcionados SAS','CR 89 - 47 DD 52 INT 101',NULL,'Johana Montoya Mendoza ','Gerente General','3008855772 - 589996','delicarnesporcionados@gmail.com','La empresa','https://drive.google.com/file/d/17xc9otr-v0ToRipjw_9c1CNPbTiffgTK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(155,'Kenier Gonzalo','Alvarez Benitez','CC','1039449741','kenierg.alvarez@gmail.com','3217913492','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2142180','2022-08-02','Cristian David Jamanoy','cjamanoyd@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1dfBe8twVUhzkUX82XQigaVz69bWxR-Yx/preview','Esta propuesta esta conformada con otro integrante de la misma ficha para realizarlo en pareja mil gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(156,'John Alexander ','Morales Cardona','CC','11278453777','jamzari.v@gmail.com','3116889931','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2142180','2022-08-02','Cristian David Jamanoy','cjamanoyd@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1c87XYa__gcH6YbkqpMaxAf2I96TaJ9jR/preview','esta propuesta esta diseñada para presentarla en equipo con un compañero de ficha ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(157,'Leydi Tatiana','Sanchez Perez','CC','1040743146','tatisanchez880@gmail.com','3013717708','Práctica','5','Gestion empresarial','Tecnología','2562425','2024-01-17','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','811043859','C.I Pack Blue','Cra 48 # 75 a 37',NULL,'Sonia Alzate','Contadora ','3743637 ext 125','Contabilidad@colorblue.com.co','La empresa','https://drive.google.com/file/d/1Fz-u-NE6Dfawfclbm2n5Lpe-3u1GicXH/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(158,'miguel johan','romero pitta','CC','13176401','mjromerop7@gmail.com','3105820232','Práctica','3','coordinación de escuelas de musica','Tecnología','2425435','2023-06-04','freddy alberto ochoa giraldo','faochoa@sena.edu.co','Ninguno','no aplica','no aplica','no aplica',NULL,'no aplica','no aplica','no aplica','no aplica','El SENA','https://drive.google.com/file/d/1VdY0zR_IfWicKj3EeR0thNVELNRrZzJA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(159,'Anyelis Maria','Narvaez Cervantes','CC','1005473188','anyeliskenworth@gmail.com','3004339608','Práctica','5','Recursos Humanos','Técnico','2611739','2023-03-27','Sandra Patricia Diaz Franco','sdiazf@sena.edu.co','Ninguno','1040261079','Abastos y legumbres el laguito','Carrera 9# 24f Sincelejo Sucre ',NULL,'Yovani Andres Arias Gonzales ','Recursos humanos','3217287133','Abastosylengunbres@gmail.com','La empresa','https://drive.google.com/file/d/1StsKkdRbbs41YQ6z3MATIVfln0LjZmxz/preview','Cambio de modalidad de practica.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(160,'Arley De Jesus','Alvarez Alvarez','CC','1216716400','arleyde450@gmail.com','3145324827','Práctica','1','Produccion Multimedia','Tecnología','2232449','2022-05-20',' DANIEL FELIPE VARGAS MORENO ','dfvargas07@misena.edu.co','Ninguno','900.382.580-3','ENJOY SPORTS WEAR S.A.S','Diagonal 74 c # 32 EE - 92 ',NULL,'Kevin Garcia ','Director de mercadeo','3012270038','mercadeo@enjoysportswear.com.co','El SENA','https://drive.google.com/file/d/1HfIpaQ4n-H3-pvTGXh6qFo9mw7g2kUla/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(161,'Santiago Antonio','Serna Toro','CC','1088319076','saserna67@misena.edu.co','3184982489','Práctica','1','Tecnología en Producción Multimedia','Tecnología','2281774','2022-09-28','MONICA PATRICIA VASQUEZ CORREA','mpvasquez@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,'Edwin Alberto Quintero Sanchez',NULL,'315 7130873',NULL,'El SENA','https://drive.google.com/file/d/1bc4Yni0Azp1IN2MMDtMbxVgSp7elY04j/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(162,'Valentina','Ramirez Uribe','CC','1193511091','valentinauribe0906@gmail.com','3107429247','Práctica','1','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2142193','2022-12-09','Cristian Jamanoy','cjamanoyd@misena.edu.co','Ninguno','900.391.169-7','PROINTOL S.A.S','calle 26 sur # 19 b 38',NULL,'Orlando Vargas Rodriguez','Representante legal','3178666352','ingenieria@prointol.com','La empresa','https://drive.google.com/file/d/1kvk7ainVkzuF5F0M9BjKMy04NCRD-g-7/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(163,'yolanda','rios cardona','CC','43905369','yolandarios502@gmail.com','3186124765','Práctica','3','SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2280372','2022-09-30','SANDRA IRIS ','siescobar0@misenaedu.co','Ninguno','0','0','0',NULL,'0','0','0','0','El SENA','https://drive.google.com/file/d/1R3HegNwyNd0D4kNFPvn3vxgF7xvTl1TQ/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(164,'yaqueline','bedoya galeano','CC','1017241792','emily.30enero@hotmail.com','3102311773','Práctica','3','seguridad y salud en el trabajo','Tecnología','2280356','2022-10-29','jenny carvajal ','gdcarvajal7@misena.edu.co','Ninguno','0','0','0',NULL,'0','0','0','0','El SENA','https://drive.google.com/file/d/15sYeRC9y1V3iY3Oe_MOLHrrsQLWm6fTa/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(165,'Jessica Alejandra ','Higuera Rodriguez','CC','1000287663','jessialejahr@gmail.com','3193651122','Práctica','5','Producción multimedia','Tecnología','2176100','2024-02-28','Juan David Rios Ramirez','jdrios15@misena.edu.co','Ninguno','901496703','WorkPress SAS','Cra 15 #22 26',NULL,'Juan David Betancurt Zamora','Asistente de producción audiovisual ','3227701097','Betajuanda.200@gmail.com','La empresa','https://drive.google.com/file/d/1o90d8eN2ITnDNEFLI3WmwuFUEYIyjYeE/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(166,'Sofía ','Angarita López','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de música ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100 Barrio San Juan - Copacabana ',NULL,'Laura María Morales Estrada','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1CjrYYFFRzqZ5zl8ksvgAv3Y5VOrjmHkG/preview','Ya están arreglados los pendientes de inglés ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(167,'EVER ANDRES','MONSALVE ZAPATA','CC','71277627','eversofy@hotmail.com','3234929142','Lectiva','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-01-17','MARYBEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','860002964','BANCO DE BOGOTA','CR 43 A # 9 SUR 91',NULL,'BEATIRZ ELENA MOLINA','GERENTE ADMINISTRATIVA','6046045700','agalean@bancodebogota.com.co','La empresa','https://drive.google.com/file/d/1RiRTZK2OMgAdqQgwrYN228Fc0ifdrCMK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(168,'CARLOS ALBERTO','SANCHEZ TORO','CC','71374283','saludocupacionalcmj@gmail.com','3106331857','Práctica','4','TECNICO EN CARPINTERIA','Técnico','2611702','2023-05-08','GERMAN DE JESUS VILLEGAS JARAMILLO','gdvillegas4@misena.edu.co','Ninguno','899.999034-1 ','SENA','Cl. 63 #58B-03, Terranova, Itagüi, Antioquia',NULL,'MOISES TOR','INSTRUCTOR','3167974959','moisest1894@hotmail.com','El SENA','https://drive.google.com/file/d/19qTxWtic96p56JU--aXGirTV6RfiG1Ts/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(169,'Andres Jose ','Mandon Cueto','CC','1091665515','ajmandonc@ufpso.edu.co','3185888497','Práctica','3','Coordinación de Escuelas de Música','Tecnología','2425435','2023-06-04','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','No aplica','No aplica','No aplica ',NULL,'Andres Jose Mandon Cueto','No aplica ','No aplica ','ajmandonc@ufpso.edu.co','El SENA','https://drive.google.com/file/d/18WP_ezvri43f4WQPCwYTTQNzo_BrF4xG/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(170,'Carlos Roberto',' Moya Vélez','CC','71388614','moyacuerdas@gmail.com','3147510554','Práctica','1','Técnico en elaboración de Violín y Viola','Técnico','2425603','2023-01-03','jJosé Ricardo Cárdenas','jrcardenas@sena.edu.co','Ninguno','890.916.911-6','Fundación Incolmotos Yamaha','cl 37 # 45-65 piso 2',NULL,'juan Gonzalo Saldarriaga','Jefe servicio técnico. Vientos','2321316','jgsaldar@incolmotos-yamaha.com.co','El SENA','https://drive.google.com/file/d/1Jdcbwbf5mr53u2iP6jalH2evqzdPNZe-/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(171,'Proyecto Productivo','garcia quintero','CC','1035440841','diegogarcia0910@hotmail.com','3147713429','Práctica','5','gestion de la produccion industrial ','Tecnología','2236486','2022-07-24','John Alejandro Jiménez Sánchez','alejandrojsa@misena.edu.co','Ninguno','900.952.713-2','ONE CONSULTANTS S.A.S','carrera 47f # 80 sur 17',NULL,'maria isabel arango ','jefe de planeacion','310 4981655','maria.arango@vacompanyinc.com',NULL,'https://drive.google.com/file/d/1tzGNKs4-DB0dywty8-Hgi_3nmOWzIG1f/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(172,'juan pablo','uribe perez ','CC','1036600845','juanpablouribeperez6@gmail.com','3502826268','Práctica','3','gestion de la produccion industrial','Tecnología','2340322','2023-01-16','conrrado alcides','casosa5@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1PZk5t4aDuMPyd7ky-P_n-FhPPXWisGTy/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(173,'CARLOS ALBERTO','SANCHEZ TORO','CC','71374283','saludocupacionalcmj@gmail.com','3106331857','Práctica','4','TECNICA EN CARPINTERIA','Técnico','2611702','2023-05-08','GERMAN DE JESUS VILLEGAS','gdvillegas4@misena.edu.co','Jóvenes en Acción','899-999-034-1','SENA','CALLE 63 # 58B-03',NULL,'MOISES TORO','INSTRUCTOR','3167974959','moisest1894@hotmail.com','El SENA','https://drive.google.com/file/d/1XCA7SZ-JsCY56fR4851abNZM5i3oziY9/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(174,'Manuela','Muñoz Sanchez','CC','1002127246','manuelamunozsanchez94@gmail.com','3235926432','Práctica','1','tecnoligia en sistema de gestion de la seguridad y salud en el trabajo ','Tecnología','2380038','2022-12-03','Elsy Puerta ','epuerta63@misena.edu.co','Ninguno','21439038-1','jugos lalo','Bolombolo - Venecia ',NULL,'María Victoria Martínez Garcés ','gerente ','3106358955','mariapecas2013@hotmail.com','El SENA','https://drive.google.com/file/d/1Mgth_WKvV9CnBWZq6DP7rAxuALWgEczk/preview','la empresa no me pagara la ARL','Pendiente','2023-09-08 15:53:08','Admin Admin'),(175,'Angie alejandra ','villarreal patascoy ','CC','1085348097','angiepatascoy@gmail.com','3118872277','Práctica','1','Tecnólogo en Producción Multimedia','Tecnología','2374664','2023-02-02','Mónica patricia Vázquez correa','mpvasquez@misena.edu.co','Ninguno','901600306-1','iglesia centro internacional vida nueva','calle 9 A #18 A- 03 BARRIO ATAHUALPA AV. PANAMERICANA CIUDAD DE PASTO',NULL,'Carlos Mario Gonzales luna ','coordinador de la área de producción ','3186107702','admvidanueva3@gmail.com','El SENA','https://drive.google.com/file/d/1xNHOZ-y_uI1StwHUTG0eews46uWqrleC/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(176,'JENNY PAOLA ','CACERES LONDOÑO','CC','1054548652','caceresjenisita@hotmail.com','3147622477','Práctica','3','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2142180','2022-08-02','CRISTIAN JAMANOY','CJAMONAYD@MISENA.EDU.CO','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1gnkptt6GvzvVRe8HWatqS6yVPXVwqaQ8/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(177,'Julieth Natalia ','Agudelo Patiño','CC','1128450601','rodri-nata@hotmail.com','3147676848','Práctica','5','sistema de gestión de seguridad y salud en el trabajo','Tecnología','2535777','2023-10-23','Marta Cecilia Henao','martaceci-henao@hotmail.com','Jóvenes en Acción','91467186-4','QUALITY SST S.A.S','pobado',NULL,'Melisa Tabares','Jefe inmediato','3013356868','qualitysst.sas@gmail.com','La empresa','https://drive.google.com/file/d/1WGLA_Mpl059p3phfnUY1_EEwbKRPagJN/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(178,'Yuliana Andrea','Echavarria Balvin ','CC','1037592075','andrea021983@hotmail.com','3205073028','Lectiva','5','Gestión de la Producción Industrial','Tecnología','2562435','2023-11-28','Conrado alsides Sosa','casosa5@misena.edu.co','Ninguno','890902165-7','Laboratorios Laproff S.A.S','Cra 43 A 61 sur 84 Sabaneta Antioquia',NULL,'Oscar Arcesio','Jefe Inmediato','6043227980','WWw.laproff.com',NULL,'https://drive.google.com/file/d/1IOhqYPCWKd2x9ObYrp3S8W7fYIARY0-O/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(179,'Daniela Isabel ','Gutiérrez torres ','CC','1081212951','danitg614@gmail.com','3054633053','Práctica','1','Gestión de mercados','Tecnología','2281645','2022-10-14','Claudia Janeth Restrepo Restrepo ','cjrestrepo@misena.edu.co','Jóvenes en Acción','900675626','Classic jeans shop s.a.s','Calle 46#52-39',NULL,'Aminta Pacheco ','Administradora ','3013073662','amintapacheco@yahoo.com','La empresa','https://drive.google.com/file/d/1Q_gxAVMCb2G8d1E9oj8cHWWaswF5HJFH/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(180,'Adriana patricia','robledo Chaverra ','CC','1045493448','aparocha21@gmail.com','3219716654','Práctica','5','gestión logística ','Tecnología','1881624','2020-12-15','Yuli milena Acevedo Arroyave','yulimilena@misena.edu.co','Ninguno','1045493448-2 ','autoservicio el caporo','turbo Antioquia ',NULL,'Adriana robledo ','administradora ','3219716654 3106681037','aparocha21@gmail.com ',NULL,'https://drive.google.com/file/d/1nD1H1PfvdRLesPNN890atyUnWvLRvnUl/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(181,'Yeison Arbey','Berrio Pulgarin','CC','1152215606','yaberrio60@misena.edu.co','3147661666','Práctica','5','Tecnología en gestión de la producción industrial','Tecnología','2453890','2023-07-24','Diego Armando Martinez Garcia','da42@misena.edu.co','Ninguno','901550344','TULUM BRANDS INTERNATIONAL S.A.S..','cl 57 43 47 ',NULL,'Alejandro lancheros','Jefe de producción','312 4711810','alejandro.lancheros@tulumfashions.com',NULL,'https://drive.google.com/file/d/1f-nB7A0CbEN9tWdNxrU-JJwAnEHOXmry/preview','Pendiente carta de cambio de las practicas','Pendiente','2023-09-08 15:53:08','Admin Admin'),(182,'JULIO CESAR','ZAPATA CORREA ','CC','1033653694','juliocesar12.jczc@gmail.com','3013723978','Práctica','5','Gestión de la producción industrial','Tecnología','2340322','2023-01-14','Conrado Alcides Sosa Zapata ','cososa@misena.edu.co','Ninguno','890907241','ESE HOSPTAL LA MERCED','CALLE 49 # 36 - 298',NULL,'JUAN FERNANDO BERMUDEZ','JEFE INMEDIATO,FINANCIERO ','3137543079','difinanciera@hlamerced.gov.co','La empresa','https://drive.google.com/file/d/1Mx7ZjIfgfiWVUgPlIiFSnCWSKXbSK56X/preview','BUENOS DIAS ME PERMITO DIRIGIRME POR ESTE MEDIO YA QUE VOY HA CONTINUAR LAS PRACTICAS POR EL MISMO METODO QUE SON PRACTICAS DE VINCULO LABORAL EN LA NUEVA EMPRESA MUCHAS GRACIAS QUEDO ATENTO... ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(183,'Ivan dario','Yepes molina','CC','98713410','Ivanyepesmolina@gmail.com','3011830508','Práctica','5','Gestion de la produccion industrial','Tecnología','2340322','2023-07-18','Gloria patricia arboleda vargas','garboleda@sena.edu.co','Ninguno','890900281-4','Industrias Haceb S.A','Calle 59#55-80',NULL,'Santiago montoya castro','Lider UBN','3115998294','Santiago.montoyac@haceb.com','La empresa','https://drive.google.com/file/d/1ckF_m2M4t4LkQcO8fUvNHk6g0FvlhreK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(184,'David Alejandro','Olaya Osorio','CC','1036644661','olayaosorioalejandro@gmail.com','3132757524','Práctica','5','Tecnólogo en gestión en la seguridad y salud en el trabajo','Tecnología','2183818','2022-09-30','Cristian Jamanoy','cjamanoy@sena.edu.co','Ninguno','900411004-8','Perforaciones Voladuras Y Demoliciones S.A.S','CARRERA 67 # 71 - 79 - BARRIO EL VOLADOR',NULL,'Yurany castrillon','jefe de gestión humana','3128617922','pyv.yuranycastrillon@gmail.com','La empresa','https://drive.google.com/file/d/1BEoV67YlUQHaYJDXsynVuj8yXe0I2bKS/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(185,'Julieth Natalia','Agudelo Patiño','CC','1128450601','rodri-nata@hotmail.com','3147676848','Lectiva','5','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2535777','2023-10-22','Marta Cecilia Henao','martaceci-henao@hotmail.com','Ninguno','901467186-4 ','Quality SST S.A.S','Estación estadio',NULL,'Melisa Tabares','Gerente General','301- 335- 68-68','qualitysst.gestionempresarial.com','La empresa','https://drive.google.com/file/d/1mCuqCK87maoe7z_uGYw9bJomIc6NZU4j/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(186,'LAURA ESTEFANIA','DIAZ QUEVEDO','CC','1019110293','LEDIAZ855@MISENA.EDU.CO','3105516151','Práctica','5','ANALISIS Y DESARROLLO DE SISTEMAS DE INFORMACION','Tecnología','2348202','2023-01-27','SANDRA PATRICIA ACUÑA GIRALDO','apagiraldo@misena.edu.co','Ninguno','901127220','F INICIATIVAS SAS (FI GROUP)','CR 12 NO. 90- 19',NULL,'KATHERINE MANRIQUE','MANAGER BUSINESS PERFORMANCE','6333007','laura.diaz@fi-group.com','La empresa','https://drive.google.com/file/d/1j2efWJsYDJomImxOCflJiNd5FtDIAqcZ/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(187,'PAULO ANDRES','SOLIS AGUDELO','CC','1114834537','aandreessolis@gmail.com','3186189537','Práctica','3','ANALISIS Y DESARROLLO DE SISTEMAS DE INFORMACION','Tecnología','2236489','2022-08-24','JUAN DAVID CARVAJAL','JDCARVAJAL04@MISENA.EDU.CO','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Sr4CFKrb9XXt8vMGSkIanQJR1DXBPqax/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(188,'Diana Carolina','Marulanda Jaramillo','CC','53006932','dicalop7@gmail.com','323 2038102','Práctica','5','Gestión Logística','Tecnología','2348324','2022-12-15',' Yuli Milena Acevedo Arroyave ','yulimilena@misena.edu.co','Ninguno','19406994 9','Zhoe ropa de mujer','carrera 13 #62 25 local 3',NULL,'Ricardo Sanchez Fernandez ','Gerente gerenal','310 8839729','ricardosanchezf@hotmail.com','La empresa','https://drive.google.com/file/d/13vl0f8o0epY_YIZtIRRMlLc6CIbfc0Ij/preview','Quedo atenta, Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(189,'Camilo Alejandro','Silva Gómez','CC','1072706292','allonyx.ngs@gmail.com','3137392733','Práctica','3','Analisis Y Desarrollo de los SIstemas de Informacion (ADSI)','Tecnología','2068280','2022-10-26','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','No aplica','No aplica','No aplica',NULL,'No aplica','No aplica','3137392733','allonyx.ngs@gmail.com',NULL,'https://drive.google.com/file/d/1AEEl5LxwHEAjPhF2C2TNrXENUvJbM1XY/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(190,'Camilo Alejandro','Silva Gomez','CC','1072706292','casilva29@misenaeduco','3137392733','Práctica','3','Analisis y Desarrollo de los Sistemas de Informacion (ADSI)','Tecnología','2068280','2020-04-12','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A',NULL,'https://drive.google.com/file/d/10pwIA9Ixpm4lFmnhKPSPONlVGKajkSaU/preview','Se inicio el desarrolo del proyecto formativo con los estudiantes Faiver Retrepo y Luis Carlos Guerrero Castro los cuales desistieron de la formacion y culminacion de proyecto productivo','Pendiente','2023-09-08 15:53:08','Admin Admin'),(191,'Daniel','Mosquera Zapata','CC','1214735856','ielv.9a@gmail.com','3003225368','Lectiva','5','Gestión de la producción industrial','Tecnología','2562435','2023-11-30','Conrado Alcides Sossa','casosaz@sena.edu.co','Ninguno','900981071','SI-3',NULL,NULL,'Isabel Velez','Coordinadora de cotizaciones-data-atención a planta','3117525189',NULL,'La empresa','https://drive.google.com/file/d/11RqdzziOWfcv1ri0UeHK5Q72Y-3pHFlE/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(192,'Ana Cristina','Mejía Mesa','CC','1037640761','anamejiamesa@gmail.com','3507354979','Práctica','3','Coordinación de Escuelas de Música','Tecnología','2425435','2023-07-31','Freddy Ochoa','faochoa54@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1gAbQSy3I9IXki-nPfj6G7aOoxccdq6OW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(193,'LORENA MARCELA','CARDENAS RODAS','CC','1042063259','lmcardenas668@gmail.com','3113456627','Práctica','5','GESTION EMPRESARIAL','Tecnología','2562425','2023-08-15','MARIVEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','890911898','STOP SAS','CRA 59 A # 14-95',NULL,'ERIKA JULIETH CARMONA CANO','AUXILIAR DE COMPRAS','604-6041431 3015812224','ecarmona@stop.com.co','La empresa','https://drive.google.com/file/d/1wab6hZ9QfPlZZjsVY0aIKumYqGjxnuz7/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(194,'Juan David ','Gil Tiria ','CC','1035871214','juangt9510@gmail.com','3136184294','Práctica','3','Tecnologia en sistema de gestión de seguridad y salud en el trabajo ','Tecnología','2025257-2','2021-07-27','Díana Milena Gómez Mora','dmigomo@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1CHmgjW7QRVXjeJpVL--aM8R63hKJrlcR/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(195,'valeria','salgado benitez ','CC','1,000,653,919','benitezrodriguezyoris@gmail.com','3105124194','Práctica','1','sistema de gestión de la seguridad y salud en el trabajo ','Tecnología','2142180','2022-08-02','wilmar munera','alemuve@gmail.com','Ninguno','92,528,337','calzado la elegancia ','calle 11 número 3-26',NULL,'Édison sierra Orosco ','dueño','3205426991','luiyidiciembre2002@gmail.com','El SENA','https://drive.google.com/file/d/1_acP6hYjKRipzUxpNcZpRO7o74SXVJ57/preview','registro','Pendiente','2023-09-08 15:53:08','Admin Admin'),(196,'Juan Esteban','Diaz Villada','CC','1035970642','juanv123654@gmail.com','3053285078','Práctica','1','Decoracion de espacios interiores ','Tecnología','2453770','2023-07-25','Mauricio Sanchez Muñoz','msanchezm@sena.edu.co','Ninguno','900492390-2','Raul Gonzales Group SAS','Cra 111 A #148 50',NULL,'Raul Gonzales Rubiano ','Gerente General','3133570150','Raulgonzalezgroup2019@gmail.com','El SENA','https://drive.google.com/file/d/1uf0TWjUr-codnpQWyV1SbhjdItiQkyij/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(197,'Catalina ',' torres londoño ','CC','43191931','cata4851@hotmail.com','3016293913','Práctica','5','Seguridad y salud en el trabajo ','Tecnología','2562438','2024-10-17','Sandra iris Escobar Osorio ','siescobar0@misena.edu.co','Ninguno','900285704-4 ','Renting Antioquia ','Calle 60 sur 44 64 ',NULL,'Milena Escobar Morales ','Jefe de seguridad y salud en el trabajo ','3226050368','Jefesst@rentan.com.co',NULL,'https://drive.google.com/file/d/1BVs0W-BR5DntOaim-92tp6I5ouT9WSjN/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(198,'LORAINE','DIAZ HERRERA','CC','1047446347','VIENARUIZ2013@HORTMAIL.COM','3147548041','Práctica','1','NEGOCIACION INTERNACIONAL','Tecnología','2348515','2023-06-27','JORGE MARIO PAYARES','jmpayares@gmail.com','Ninguno','901332611-3','L&L SOLUCION SAS','TV 54 N28-25 EDIFICIO MOVISOL OFICINA 303',NULL,'MILER CANO ARRIETA','3216652467','3216652467','GERENCIA@LYLSOLUCION.COM','La empresa','https://drive.google.com/file/d/1po4g-friM-5iGqsKFsbL_u4PxpUEFqLB/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(199,'Kelly Jhoana','Martínez Suaza','CC','1036648276','martinez_kj1909@hotmail.com','3148175900','Lectiva','5','Tecnología en Gestión Empresarial','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave','mrodriguez94@misena.edu.co','Ninguno','811008963-6','Multienlace SAS','Cl 8B 65 - 191 Puerto Seco piso 1',NULL,'Yesica Yulier Álvarez Restrepo ','Líder ','3003843476','yesica.alvarez@grupokonecta.co',NULL,'https://drive.google.com/file/d/11Xye3R8CfgCIfFjlO9hwCancE7W1SUr4/preview','Quedo atenta a la respuesta. Muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(200,'Adrián De Jesús','Hernández Ospina','CC','71278499','ajho0924@gmail.com','300 458 5101','Lectiva','5','Tecnólogo en Gestión de la Producción Industrial ','Tecnología','2562435','2023-12-17','Conrado Alcides Sosa Zapata','casosa5@misena.edu.co','Ninguno','901265043-2','Pinturas Real Flex','Cra. 55 # 77 Sur 228 Int 106',NULL,'Liana Marcela Rios Henao','Gerente','604- 322 4626','info@realflex.co',NULL,'https://drive.google.com/file/d/1OhuagqOS6xQkmKKiuVXuJlkZ2aUNKjru/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(201,'DICK MIGUEL','NIEVES PUCHE','CC','1067404068','DICKNIEVES08@GMAIL.COM','3022997757','Práctica','5','GESTION DE LA PRODUCCION INDUSTRIAL','Tecnología','2453890','2023-07-24','DIEGO ARMANDO MARTINEZ GARCIA','DA42@MISENA.EDU.CO','Ninguno','800191700-8','CUEROS VELEZ S.A','CALLE 29#52-115',NULL,'SANTIAGO ARAQUE ','COORDINADOR','3046123550','3555100','La empresa','https://drive.google.com/file/d/1w5o3_0dfuCJtAo2pLwPUaFLTYu2magNw/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(202,'Paulo Cesar','Morales Garcia','CC','15339475','pauloc1977@gmail.com','3113813497','Práctica','5','Gestión de la Producción Industrial','Tecnología','2340322','2023-07-18','Gloria Patricia Arboleda Vargas','Gloria Patricia Arboleda Vargas','Ninguno','890906119-6','NUVANT SAS','Calle 61 Sur N 43A -290 Sabaneta',NULL,'Carlos Andres Arias Atehortua','Jefe de Producción','3183929196','carias@nuvantglobal.com',NULL,'https://drive.google.com/file/d/1ZD4s5yntzL-0dh6sW2Z4oSpDPNK2NIbP/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(203,'Brayan Felipe ','Muñoz Alvarez','CC','1214738323','brayanfelipemunozalvarez123@gmail.com','3206165947','Práctica','1','Producción Multimedia ','Tecnología','2232449','2024-02-28','No me se el nombre ','ComiteAprendices@sena.edu.co','Ninguno','901360723-9','D.O HIDROSANITARIA S.A.S','Calle 104 b # 46 a 45',NULL,'Erlinson Daimer Osorio Muñoz ','Gerente ','3059052281','dohidrosanitariasas@gmail.com','El SENA','https://drive.google.com/file/d/1r5PY7OtBfuUrm2kK57JXlyejakryCWJW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(204,'Cristian Manuel','Sanchez Duran','CC','1024552036','manuelcoordi12881@gmail.com','3102315471','Lectiva','5','Coordinación Procesos Logisticos ','Tecnología','2542024','2024-01-24','Carolina Velasquez Ruiz ','caritovelasruiz@misena.edu.co','Ninguno','890.900.943-1','Alkosto S.A ','Av carrera 68 No 72 - 43',NULL,'Omar Mauricio Correa','Director de Logistica','3103179772','Mauricio.correa@alkosto.com.co','La empresa','https://drive.google.com/file/d/1ymRJqtdwMQggyq0iqst5ZDkwLR0vUFkV/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(205,'Paula Andrea','Ramirez Reyes','CC','1036929596','miasofia546@gmail.com','3004076243','Práctica','3','Tecnologia en Seguridad y Salud en el trabajo','Tecnología','2280356','2022-09-30','Geny Carvajal ','gdcarvajal7@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1EnXsuR1RbCDmhAZD59XcjSfMIXbLSfZj/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(206,'STIVEN','GARCIA SANTAMARIA','CC','1001268759','123GARCIASTIVEN123@GMAIL.COM','3104074775','Práctica','3','DISEÑO Y DECORACION DE ESPACIOS INTERIORES ','Tecnología','2071532','2022-02-22','JUAN DAVID ACEVEDO AGUDELO ','jdacevedoa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Gyy5PcE6ha-H4Y16kcXgwDRdv7JbbXzg/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(207,'Cesar Andres','Arce Sanchez','CC','1053772112','cesarandres.arce@gmail.com','3136649171','Lectiva','5','COORDINACION DE PROCESOS LOGISTICOS','Tecnología','2542024','2024-06-23','Carolina Velásquez Ruiz ','cavelasquezr@sena.edu.co','Ninguno','890904713','coordinadora mercantil','estación uribe bod 3 parque industrial normandia ',NULL,'Sebastián Henao ','jefe inmediato ','3017590071','sebastian.henao@coordinadora.com','La empresa','https://drive.google.com/file/d/1QERoJiuvKBzi_N9s947P5pvGNALWTtCr/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(208,'Carolina','Diosa Ochoa ','CC','1000763446','cdiosa6@misena.edu.co','3206590928','Práctica','3','Producción de multimedia','Tecnología','2472670','2024-01-31','Heduan Henry ospina','h2odante@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/17A6shBqe-nwhdWKofiJhxCFkWVc2MagI/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(209,'ELIZABETH ','ATENCIO RAMOS','CC','1038102381','elizabethatencioviajes@gmail.com','3045769806','Práctica','3','GESTIÓN EMPRESARIAL','Tecnología','2236495','2022-07-21','OMAR TUIRAN ','elizabethatencioviajes@gmail.com','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1QRuUG5SQLtzsg6Gr6v11-a_Ju_B_f4aT/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(210,'GLORIA STELLA',' MARTINEZ TAMAYO','CC','43037778','gloriartesm@hotmail.com','3163236313','Práctica','3','ELABORACION DE VIOLIN Y VIOLA','Técnico','2425603','2022-07-01','JOSE RICARDO CARDENAS','jrcardenas@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A',NULL,'https://drive.google.com/file/d/1zofoNuBP38NKx5YS6pN2b2syWtR6VKQC/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(211,'Alexis','Vanegas Gonzalez','CC','1039449883','avanegas388@misena.edu.co','3103856135','Práctica','3','Gestion Logistica','Tecnología','2236465','2022-07-21','Jhon Alejandro Jimenez','alejandrojsa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Tm0JGNaF1dG723pSx2m1jEaZP_w-ZdfW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(212,'Camilo','Gómez Rivera','CC','1036941876','camilogri148@gmail.com','3113701255','Práctica','1','tecnólogo en coordinación de escuelas de música','Tecnología','2141920','2022-08-10','Jorge hugo mesa','jhmesa2@misena.edu.co ','Ninguno','890.907.317-2','MUNICIPIO DE RIONEGRO','Cl. 48 #50-36, Rionegro, Antioquia',NULL,'Melissa Arias Garcia ','subsecretaria de cultura','314748162','mariasq@rionegro.gov.co','El SENA','https://drive.google.com/file/d/1qS3PlW-fe5b7_ncEMRY_MQsBtvnXG0bD/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(213,'Diana maritza','Marín Pérez ','CC','1152690558','Diana.paisa@hotmail.com','3217273106','Práctica','5','Sistema de gestión y de seguridad y salud en el trabajo ','Tecnología','2249919','2022-12-07','Gina briset delgado Rodríguez ','gdelgadory@misena.edu.co','Ninguno','901452226-5','Provideco obras civiles as','Cr 30 # 20 128- Marinilla Antioquia ',NULL,'Victor Alfonso Quintero ','3043448923','3043448923','Victorkintero@gmail.com','La empresa','https://drive.google.com/file/d/1_j_o225F40SjsyHFiZMu5IUD5TJpNUUx/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(214,'ESTEFANIA','AGUDELO ALVAREZ','CC','1018223534','agudelostefania2@gmail.com','3147906011','Práctica','1','Tecnologia en Gestion de la Seguridad y Salud en el trabajo.','Tecnología','2313313','2022-10-28','MARTA CECILIA HENAO LONDOÑO','mchenaol@sena.edu.co','Ninguno','98711722-7','Andres Fernando Tabares Molina (Blau technology)','Cra 50 #38a-185',NULL,'Jenny Alejandra Velez Agudelo','Analista SST','3117718116','alejavelz@hotmail.com','La empresa','https://drive.google.com/file/d/1pTFVysIVEX-bTIbw9jU-G4C6b6lm3TC0/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(215,'Alexis ','Vanegas Gonzalez','CC','1039449883','avanegas388@misena.edu.co','3103856135','Práctica','3','Gestion Logistica','Tecnología','2236465','2022-07-21','Jhon Alejandro Jimenez','alejandrojsa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1a1vSm7WlgPW0tRXQCnov-1If4hlCroyK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(216,'MIGUEL ANGEL ','ALZATE VARGAS ','CC','70567911','MIANGELALZATE@GMAIL.COM ','300654 37 21 ','Práctica','3','SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1DqMb5_MvsS4NMEbgreXoGr9z1QHoI8kq/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(217,'ANA MARIA','VELEZ SALDARRIAGA','CC','1036668372','anamvs100mts@gmail.com','3104025679','Práctica','3','GESTION ADMINISTRATIVA','Tecnología','2339011','2022-12-05','OMAR JOSE TUIRAN SAKER','omar.tuiran@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1K7SDRUH9dMyVhD_fdfz7c1JFlX-TMWqS/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(218,'Klinshman Daniel ','Pérez marulanda ','CC','1037610033','kdpm91@gmail.com','3017802434','Práctica','3','Técnico en construcción mantenimiento y reparación de estructuras en guadua y bambú ','Técnico','2684829','2023-08-28','Luis Guillermo Gutiérrez ','Lgutierrezro@sena.edu.co','FIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1_kD8DGrCwydnflPugqwt5og6mc9OyKkA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(219,'JHONNY ANDRES ','MESA VEGA ','CC','1053442104','jhonnymesaandresvega@gmail.com','3187630590','Práctica','5','Distribución fisica internacional ','Tecnología','2281629','2022-10-14','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','830136162','Dico telecomunicaciones s.a','Diagonal 24c #96-72',NULL,'Natalia caipa morales','Gestor de Compras y Contratos','3214278453','natalia.caipa@dicocolombia.com','La empresa','https://drive.google.com/file/d/1iMeOiVrYwdq26bOTgmvZmymYN23mBLqq/preview','quedo pendiente a sus comentarios ','Rechazado','2023-09-08 15:53:08','Admin Admin'),(220,'JEISON KINN','VILORIA MARTINEZ','CC','1020392906','consultor45@outlook.com','3505893712','Práctica','5','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología',' 2142193-3','2022-08-22','LUZ MARY MUÑOZ','lmmunoz662@misena.edu.co','Ninguno','901493391','foraminas empresarial sas','carrera 81 N 43-72 local 1257',NULL,'Juan esteban echavarria castrillon','gerente ','3174241286','foraminaempresarial21@gmail.com','La empresa','https://drive.google.com/file/d/1_aTWCNT9eE32X2E9f8w26OjzwJKGJc-v/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(221,'diana smith','gomez mongua','CC','64577370','dianig14@live.com','3013751961','Práctica','1','tecnologo en negociacion internacional','Tecnología','2374753','2023-02-22','Yuli Milena Acevedo Arroyave','yacevedoa@sena.edu.co','Ninguno','900.817.982-1','G&C INGENIERIA Y CONSTRUCCION','CRA 6J N°32-30',NULL,'JUAN CAMILO MONTES OLMOS','GERENTE','3013716957','contabilidadgruasytransportes@gmail.com','El SENA','https://drive.google.com/file/d/1t1sRwVA1-Eh0Gp6_Dd9nB0k_ff54C05L/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(222,'ANNY CATALINA','URIBE ROLDAN','CC','1037624905','acatalina1300@gmail.com','3135558093','Práctica','5','TECNOLOGIA EN GESTION ADMINISTRATIVA','Tecnología','2065924','2022-10-22','MIGUEL SANTANA','misantavi@misena.edu.co','Ninguno','890900841','CAJA DE COMPENSACIÓN FAMILIAR DE ANTIOQUIA','Cra. 48 #20-34 Ciudad del río',NULL,'Stefania Cano Marin','Responsable de Conexiones Empresariales','300 3843618','stefaniacanom@comfama.com.co','La empresa','https://drive.google.com/file/d/1YaqS88Av1lZ9GedOttDXlVBYanrHGOnv/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(223,'LUIS CARLOS ','SALAZAR OJEDA','CC','12994454','salazarluthier@gmail.com','3184787775','Práctica','1','ELABORACION DE VIOLIN Y VIOLA','Técnico','2425603','2023-12-01','JOSE RICARDO CARDENAS','jrcardenas@sena.edu.co','Ninguno',NULL,'SALAZAR INSTRUMENTOS','VEREDA DOLORES ',NULL,'LUIS CARLOS SALAZAR OJEDA','PROPIETARIO','3017903801','salazarluthier@gmail.com','La empresa','https://drive.google.com/file/d/13Ya6Y3NvNPyFoqm-op1tAabfbA_9255B/preview','Ofrezco mil disculpas pero no entiendo si es el medio correcto para el processo','Pendiente','2023-09-08 15:53:08','Admin Admin'); +INSERT INTO `inscripciones` VALUES (1,'heryinson','hernandez torres','CC','1128400704','heryin22@gmail.com','3197218963','Práctica','3','Carpinteria','Técnico','2453797','2022-10-22','Edwin Grajales','egrajales@sena.edu.co','Ninguno','9014803121','Carpinteria',NULL,'Antioquia','Heyberson Hernandez Torres','Jefe','3197218963','heryin22@gmail.com','La empresa','https://drive.google.com/file/d/1QvAOFrqP6JYUPK2kJWCEyZB_GY8rTslx/preview','Muchas gracias por la atención prestada.','Rechazado','2023-09-08 15:53:07','Admin Admin'),(2,'Sebastian','Lopez Velasquez','CC','1152692565','seblove1993@gmail.com','3008848306','Práctica','3','Carpinteria','Técnico','2453797','2022-10-22','Edwin Grajales','egrajales@sena.edu.co','Ninguno','901480312','Carpinteria',NULL,'Medellin','Heyberson Hernandez Torres','Jefe','3197218963','Heryin22@gmail.com','La empresa','https://drive.google.com/file/d/1ng3lzTTMg4dlAw5YDHJPZqvggT0Ldk_j/preview','Muchas gracias por su atención prestada.','Rechazado','2023-09-08 15:53:07','Admin Admin'),(3,'JULIANA ','PEREZ GUZMAN ','CC','1026152727','juli-pg2802@outlook.es','3127038007','Lectiva','5','tecnologia gestion empresarial ','Tecnología','2453777','2023-07-01','juan camilo chavarria','jcchavarria4@misena.edu.co ','Ninguno','900181557-0','ARCIS GROUP',NULL,'ANTIOQUIA ','ANDRES ZULETA ','GERENTE ','3185744029','ANDRES.ZULETA@ARCISLS.COM',NULL,'https://drive.google.com/file/d/1tQUcd75XSdNJLO5F8T_VT3kWcHslEY2a/preview','sin observaciones ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(4,'Juliana','Bedoya Valencia','CC','1040740378','secre.jota@gmail.com','3022013149','Práctica','3','Tecnico en Carpinteria ','Técnico','2502863','2023-12-08','Orlando Antonio Ayala Mesa','orayala@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/11zjsENQZqKr6Xek5YYZQHMqMbWcPD3qI/preview','deseo hacer las etapa productiva en proyecto ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(5,'Wendy Cristina ','Gonzalez Molina ','CC','1152716791','wcristinagm@gmail.com','3246758510','Lectiva','5','Gestion de la produccion industrial','Tecnología','2562435','2024-07-17','Conrado Alcides Sosa Zapata ','casosa5@misena.edu.co','Ninguno','900878886','silhouettes from the world',NULL,'Medellin','Angela Cardona Villa','Supervisora ','3045479095','anyidona@hotmail.com','La empresa','https://drive.google.com/file/d/18B8O9e-wHVd1XPWKLN61PmmAxTy0BXKX/preview','Inicio de practicas','Pendiente','2023-09-08 15:53:07','Admin Admin'),(6,'PAULA ESTEFANÍA ','FORERO ROBLEDO ','CC','1013662745','paula.forero.r@hotmail.es','3006900078','Práctica','3','DECORACIÓN DE ESPACIO INTERIORES','Tecnología','2141930','2022-08-02','JUAN ESTEBAN ARIAS','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Xu_fkf6JQFHCESsF5cJZ9JG2NXOisnXR/preview','No pude anexar los documentos por individual por ello; adjunto envío todos los documentos solicitados en un solo PDF. Agradezco su comprensión, quedo pendiente. ','Rechazado','2023-09-08 15:53:07','Admin Admin'),(7,'VIVIANA ANDREA','FERNANDEZ SANCHEZ','CC','1026264950','andreyta.fernandez08@gmail.com','3057372652','Práctica','3','Diseño de espacios interiores','Tecnología','2141930','2022-08-02','Juan Esteban Arias','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1BV75HXaSD84F2G8KMh0PQWVe5QFHxJQv/preview','Realizaremos el proyecto en conjunto con Paula Estefania Forero Robledo de la misma ficha','Pendiente','2023-09-08 15:53:07','Admin Admin'),(8,'Luisa María','Montoya Montoya','CC','1002089639','lmmontoya936@misena.edu.co','3235023472','Práctica','3','Gestión de la seguridad y salud en el trabajo ','Tecnología','2280372-1 ','2022-10-04','Sandra Iris Escobar ','siescobar0@misena.edu.co','Jóvenes en Acción',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1orhq-ZLfS09S0fbxPGdSJ7qibpI4UNvC/preview','Ninguno','Pendiente','2023-09-08 15:53:07','Admin Admin'),(9,'Damaris Elena','Rivera Zapata','CC','42799863','derivera36@misena.edu.co','3006737732','Práctica','5','Tecnología en Gestion Administrativa','Tecnología','2339011-1','2022-12-13','Omar Jose Tuiran','omar.tuiran@misena.edu.co','Ninguno','890916155','Indugevi SA',NULL,'Sabaneta','Karina Sanchez Varela','Coordinadora Jurídica','3113814069','karina.sanchez@indugevi.com.co',NULL,'https://drive.google.com/file/d/1ULR42nZpiBzY-4nJocf8H7zCV_pTUSH-/preview','buenas tardes, se hace envío de documentos para que por favor se de aval de inicio de etapa practica a través de vinculación laboral. gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(10,'Ana Karina','Muslaco Sibaja','CC','1063074543','anamusy@hotmail.com','3042657552','Práctica','5','Gestión de la Producción Industrial','Tecnología','2236486','2022-07-24','Diego Armando Martinez García ','da42@misena.edu.co','Jóvenes en Acción','800191700','Cueros Velez',NULL,'Medellín','Juan Pablo Maya','Jefe de Planta de Marroquinería','3174018981','Jpmaya@cuerosvelez.com','La empresa','https://drive.google.com/file/d/1rCzQYdH3tR9vy1SK-krc5I8xOEmUbWv5/preview','Ok','Pendiente','2023-09-08 15:53:07','Admin Admin'),(11,'Brandon Smit','Rios Morales','CC','1046910345','Brandonrios9302@gmail.com','3206437100','Lectiva','5','Decoración de espacios interiores','Tecnología','2453770','2023-07-24','Mauricio Sanchez Muñoz ','msanchezm@sena.edu.co','Ninguno','901562747-2','Making Ideas Group SAS',NULL,'Itagüí ','Juan esteban Muñoz Castaño','Administrador ','3045950638','mobiarte.col@gmail.com','La empresa','https://drive.google.com/file/d/1j8MuzWz2d1MGL_1Kqdk5baW8CsVaPba1/preview','Envio adjunto documentos y quedo pendiente de aprobación y posteriormente programación de visita ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(12,'Jorge andrés','Arboleda Rodríguez','CC','71211202','jorleda08@gmail.com','3136891354','Práctica','3','Técnico en carpintería ','Técnico','2338084','2022-04-19','Orlando Antonio Ayala','orayala@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1CbUpGJWl2lERiB6q9bXClT5-mr6ZuvHd/preview','Si se puede hacer con el profesor Litarsuyo Serna, gracias.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(13,'Jhon William','Santafe Sanchez','CC','71279767','jhonsantafe@gmail.com','3213843236','Lectiva','5','Gestion de la Produccion Industrial','Tecnología','2453890','2023-06-30','Diego Armando Martinez','damartinezga@sena.edu.co','Ninguno','811026990','Servimetales Frey',NULL,'Itagui','Carlos Alberto Hernandez','Jefe de Produccion','3136273888','produccion@smf.com.co',NULL,'https://drive.google.com/file/d/1XxGQhSYoyUTPIfubwNN2PtGir-cpFFcL/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(14,'Heidy tatiana ','Londoño restrepo','CC','1018347766','heidyrestrepo2018@gmail.com','3023446460','Lectiva','5','Seguridad y salud en el trabajo','Tecnología','2535777','2024-04-22','Martha Cecilia Henao','marthaceci-henao@hotmail.com','Ninguno','900725119','Hidrosanitarias jzz ',NULL,'Medellin Antioquia ','Jorge zapata Zuluaga ','Representante legal ','3225853484','zapatajorge681@gmail.com','La empresa','https://drive.google.com/file/d/1pDCZRSe3xlGuTv_fTzGZjFyTWpJgJ6jx/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(15,'Adriana Miryen','Ospina Florez','CC','43461749','amospina947@misena.edu.co','3137271187','Lectiva','5','Tecnología en gestión de la producción industrial','Tecnología','2453090','2023-06-24','Diego Armando Martinez','nmartinez0632misena.edu.co','Ninguno','900498133','GM&C cosmética Avanzada',NULL,'Itagui Antioquia','Gloria Patricia Giraldo','Directora Técnica','3222009','gmccosmetica@gimal.com',NULL,'https://drive.google.com/file/d/1PfD8Kzy5XeGqwab09XVvy_7kiofSnTnJ/preview','NINGUNO','Pendiente','2023-09-08 15:53:07','Admin Admin'),(16,'Kelly Johanna ',' Otálvaro Arcila ','CC','1045050332','johannaotalvaro@hotmail.com','3044172202','Lectiva','5','Gestión empresarial ','Tecnología','2453777','2023-07-25','Juan Camilo Echavarría ','jcchavarria4@misena.edu.co','Ninguno','899,999,034','Servicio nacional de aprendizaje SENA',NULL,'Medellin','Catalina Hernández Palacio ',' Coordinadora Relaciones Corporativas',' 301 2711812','Cahernandezp@sena.edu.co',NULL,'https://drive.google.com/file/d/1ebP2zP_x81YzpqN4ojqAuQc9m91wUuqh/preview','la seguridad social la custodio yo misma ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(17,'JUAN CAMILO','BENEDETTI ARTEAGA','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','contabilizacion de operaciones comerciales y financieras ','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S',NULL,'lorica cordoba ','MABER LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1MCHTO2HLMxKIx2petIbFjQpjiv5fPkVB/preview','por favor aceptenme la carta para poder terminar la etapa practica ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(18,'Luisa María','Montoya Montoya','CC','1002089639','luisamontoya323502@gmail.com','3235023472','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2280372-1','2022-10-04','Sandra Iris Escobar','siescobar0@misena.edu.co','Jóvenes en Acción',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1lxBGPYxw3ykHTZ_UaN6u19E20L1WxIEs/preview','Retificación del pasado documento enviado el 25 de mayo','Pendiente','2023-09-08 15:53:07','Admin Admin'),(19,'JUAN ESTEBAN ','JIMENEZ ESTRADA','CC','1036607190','juanestebanjimenezestrada@gmail.com','3116644878','Práctica','1','Gestión de la seguridad y salud en el trabajo','Tecnología','2142193','2022-03-02','Luz Mary Muñoz Julio','lmmunoz662@misena.edu.co','Ninguno','800196632','Artesa SAS',NULL,'Itagui','Carlos Andrés Hoyos Mejía','Asistente administrativo','3006769615','bcarlosh@mybosi.com','La empresa','https://drive.google.com/file/d/1vgqZB6374ALseLcG4PljuAC4eYHvcXdZ/preview','Ninguno','Pendiente','2023-09-08 15:53:07','Admin Admin'),(20,'Brandon Smit','Rios Morales','CC','1046910345','brandonrios9302@gmail.com','3206437100','Lectiva','5','Decoración Espacios Interiores','Tecnología','2453770','2023-07-15','Mauricio Sánchez Muñoz ','msanchezm@sena.edu.co','Ninguno','901562747-2','Making Ideas Group SAS',NULL,'Itagui','Juan Esteban Muñoz Castaño','Administrador ','3045950638','mobiarte.col@gmail.com','La empresa','https://drive.google.com/file/d/1CckdeBWX463GzJCn8BiCy2CRWB9CYTxY/preview','Quedo atento Gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(21,'kelen','narvaez marchena','CC','1002153720','narvaez_marchena@hotmail.com','3006849978','Práctica','5','contabilizacion de operaciones comerciales y financiera financiera ','Técnico','2374442','2021-08-08','laura jaramillo quiroja','ljaramilloq@misena.edu.co','Ninguno','900992804-5','inversar del caribe sas ',NULL,'atlantico','luis vicente suarez ','gerente ','3158824585','inversardelcaribesas@gmail.com','La empresa','https://drive.google.com/file/d/12fdONxFCYhFr5ljU6LMR8dSI4IJlk2n1/preview','en el mes de marzo intente subir la practica pero no me aceptaron nuevamente adjunto documentación','Pendiente','2023-09-08 15:53:07','Admin Admin'),(22,'luisa fernanda','velasquez montoya','CC','1036665926','luisafvelasquezm0816@gmail.com','3043296175','Práctica','5','tecnologia en gestion logistica','Tecnología','2141964','2021-12-15',NULL,'Andres camilo uran arango ','Ninguno','900156954-6','Gratta zapateria ',NULL,'Itagüí ','Libardo daniel mogollon pupo','Representante legal ','4638303','Grattazapateria@yahoo.es','La empresa','https://drive.google.com/file/d/192bWhE_F6LoYG1iD3_HU0gGzjND1fWjR/preview','Donde terminar de enviar los otros documentos ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(23,'Zarel','Ferreira ochoa','CC','1001687803','Zarelferreira18@gmail.com','3017892175','Práctica','3','Recursos humanos','Técnico','2611739','2023-11-08','Sandra Patricia Diaz franco','Spdiaz69@misena.Edu.co','Ninguno','900655031','GR temporales ',NULL,'Medellin ','Juan David puentes castillo','Jefe de talento humano','3178587209','Jefe.talentohumano@grtemporales.com','La empresa','https://drive.google.com/file/d/1QNGQaEShm4h8KQxvulQtKM2WK0hp8GId/preview','Quedó atenta para la visita de seguimiento','Pendiente','2023-09-08 15:53:07','Admin Admin'),(24,'MERIBETH JOHANNA','MAZA ROJAS','CC','mjmaza9@soy.sena.edu.co','mjmaza9@soy.sena.edu.co','3204517197','Práctica','1','Tecnólogo en Producción en Multimedia','Tecnología','2181774','2023-04-30','Monica Patricia Vasquez Correa','mpvasquez@misena.edu.co','Ninguno','37399759-9','APIARIO MIS FLORES ',NULL,'CUCUTA, NORTE DE SANTANDER','MARLENY BELTRAN ARGUELLO','GERENTE','3105979765','mbeltran918@gmail.com, apiariomisflores@gmail.com',NULL,'https://drive.google.com/file/d/1au_-pQR0EFw0V81TIZQONCjVtoHb7zg1/preview','Por favor cancelar la primera inscripcion ya que estuvo mal diligenciada, ya que no estuve bien informada, en esta donde esta el cambio de la modadlidad a pasantias esta toda lo documentacion agradezco su colaboracion.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(25,'Javier Esteban ','Zuleta Moreno ','CC','1037599060','javezuleta@misena.edu.co','3053376123','Práctica','3','Tecnología en Decoración de Espacios Interiores ','Tecnología','2258670','2022-08-08','Juan Esteban Arias García ','jearias@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/146tHeJZ73bamiTmvEOP140IOPLV0HGFx/preview',' Cualquier cosa también me pueden contactar al correo poetadesconocido.jp@gmail.com ó al celular 3142279492','Pendiente','2023-09-08 15:53:07','Admin Admin'),(26,'paula andrea','alarcon sanchez','CC','43190609','paula.alarcon2013@gmail.com','3136996828','Práctica','1','Gestión de la Seguridad y Salud en el trabajo','Tecnología','2340242-1','2022-12-06','Luz Mary Muñoz Julio.','lmmunoz662@misena.edu.co','Ninguno','899999034-1','SENA',NULL,'Medellin -Antioquia','Francy Ciro Lopez','Gestora del SG - SST','3006280521','fyciro@sena.edu.co','El SENA','https://drive.google.com/file/d/1LuWykz2OfyZY204ZPMw16hqsb96UM939/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(27,'Leidy Jhoana',' Lopera Loaiza','CC','1152436629','leidylop1990@gmail.com','3106057567','Práctica','3',' Tecnico en Recursos Humanos','Técnico','2611583','2023-05-07','patricia solis','asolis3@misena.edu.co','Apoyo de sostenimiento Sena','no tengo','ninguna',NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1_3wQsTc8eaKGw8z5R-wLp2JQk0tMm65y/preview','atenta gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(28,'Paula Andrea','Alarcon Sanchez','CC','43190609','paula.alarcon2013@gmail.com','3136996828','Práctica','1','Gestión de la seguridad y salud en el trabajo','Tecnología','2340242-1','2022-12-05','Luz Mary Muñoz Julio','lmmunoz662@misena.edu.co','Ninguno','899999034-1','SENA',NULL,'ITAGUI','Francy Yamile Ciro Lopez','Gestora de SG - SST ','fyciro@sena.edu.co',NULL,'El SENA','https://drive.google.com/file/d/1VkVgeUnvJ632TugYOoqzXxFZ6r2C-5j6/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(29,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez','mpvasquez@misena.edu.co','Ninguno','830084232-3','Fundacion Panamericana para el Desarrollo',NULL,'Bogotá','Mary Elena Pito Polanco','Coordinador Nacional','3177927757','mpito@fucolde.org','La empresa','https://drive.google.com/file/d/1FJDvIv0DeDqPtnN3eqvZ3GcEoLnwA7TI/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(30,'ANDRY SANCHEZ','SANCHEZ CHAPARRO','CC','1032449690','andry44.as@gmail.com','3219205772','Práctica','5','TECNICO EN CONTABILIZACION DE OPERACIONES FINANCIERAS Y COMERCIALES','Técnico','2374442','2022-05-04','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','830.073.185-8','OPC RIVEROS S.A.S ',NULL,'BOGOTA','Marco Johanny Franco Reina','Socio - Director de Auditoria ','3138561292','mfranco@opcriveros.com','La empresa','https://drive.google.com/file/d/1lr3fAFRXO0mvXwL4jodNaeNkLjpUUhdq/preview','Se adjuntan los documentos soportes para poder iniciar con la etapa productiva ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(31,'Heidy Tatiana ','Londoño Restrepo','CC','1018347766','londonorestrepoheidytatiana@gmail.com','3023446460','Lectiva','5','Tecnología de seguridad y Salud en el trabajo ','Tecnología','2535777','2024-04-22','Marta Cecilia Henao ','martaceci-henao@hotmail.com','Ninguno','900725119','HIDROSANITARIAS JZZ',NULL,'MEDELLIN ','Jorge Zapata Zuluaga','GERENTE ','322 5853484','zapatajorge681@gmail.com','La empresa','https://drive.google.com/file/d/1E7q1q9fF-t3fPB92sfaaiiIm0bIZ0zTg/preview','Ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(32,'John Mario',' Cobos Gomez','CC','1017127932','jhonmariocobosgomez@gmail.com','3206528034','Lectiva','5','TECNOLOGO EN LA GESTION DE SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2535777','2024-04-22','Martha Cecilia Henao Londoño','martaceci-henao@hotmail.com','Ninguno','901074844','CONSULTORIA INTEGRAL SST S.A.S',NULL,'Medellin','YOISI BILEIDY MORALES ARBOLEDA','COORDINADORA SST','3108933189','consultoriaintegralsst@gmail.com','La empresa','https://drive.google.com/file/d/1WOxj-JCITCnxhe5cma9V_xHVhkAL3Oua/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(33,'Elizabeth','Medina Cartagena','CC','1036638383','isabellamedinacartagena@gmail.com','3041113129','Práctica','1','Gestión Administrativa','Tecnología','2339011','2023-03-06','Omar Jose Tuiran saker','omar.tuiran@misena.edu.co','Ninguno','1028015905 - 9','Renacer sport',NULL,'la estrella','Brayham Felipe Gómez Escudero','Gefe inmediato','3137569763','renacersport@gmail.com','El SENA','https://drive.google.com/file/d/191YsJSyyQYgiBsZjsxB2YJCHWBV9KERC/preview','mi observacion es que yo llevo cuatro meses laborando con esta empresa y queria saber si estos cuatro meses me los aceptan como parte de practica gracias quedo atenta','Pendiente','2023-09-08 15:53:07','Admin Admin'),(34,'Elianeth ','montes Heredia','CC','1066745008','Elianethmontes18@gmail.com','3035340850','Práctica','4','Gestión empresarial ','Tecnología','2338995','2022-12-02','Álvaro Orozco ','alvarozco@misena.edu.co','Ninguno','8999990341','Sena',NULL,'Itagui ','Laura carolina restrepo','Lider bienestar ','5149290','lcrestrepo@sena.edu.co','El SENA','https://drive.google.com/file/d/1n6Ppy0ZGUtZ9Bg9FqZJGBeVhO7eXh9uW/preview','.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(35,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2023-06-27','Monica Patricia Vasquez','mpvasquez@misena.edu.co','Ninguno','830084232-3','Fundacion PAnamericana para el Desarrollo FUPAD',NULL,'Bogota','Mary Elena Pito Polanco','Coordinador Nacional','3177927757','mpito@fucolde.org; mpito@padf.org','La empresa','https://drive.google.com/file/d/1W-TPxEBu6bbNUKV7SUnyM_0IUVtT0rin/preview','NA','Pendiente','2023-09-08 15:53:07','Admin Admin'),(36,'Leidy Jhoana ','Lopera loaiza','CC','1152436629','leidylop1990@gmail.com','3106057567','Práctica','3','Técnico Recursos humanos ','Técnico','2611583','2023-05-05',NULL,'asolis3@misena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1wJSY3rpcgucHMGTH8xBZ2d-ShxCaZBIM/preview','gracias','Pendiente','2023-09-08 15:53:07','Admin Admin'),(37,'Yhonny Javier ','Tonguino Chicangana','CC','1061698561','jhonytonguino@unicauca.edu.co','3128558757','Lectiva','3','CORDINACIÓN DE ESCUELAS DE MÚSICA','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao ','joalohe@gmail.com','Ninguno','25287504-3','Colegio Real Popayán ',NULL,'Popayán ','Gloria Edith Hoyos ','Rectora','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1hit1vTgg7ObrAwyqTiusnjRe-Mer3sCe/preview','Buenos dias envio los documentos para iniciar con el proceso de etapa practica, estaré atento a las notificaciones, gracias...','Pendiente','2023-09-08 15:53:07','Admin Admin'),(38,'Andrés Felipe','Castrillón Sucerquia','CC','1037617482','afelipe.castrillon@gmail.com','3195719602','Lectiva','5','Técnologo en Análisis y Desarrollo de Sistemas de Información','Tecnología','2141948','2021-11-30','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','901033369','Summa S.A.S.',NULL,'Sabaneta','Shirley Rosita García ','Lider Mesa de Ayuda Tecnología','3002771834','sgarcig@summa-sci.com',NULL,'https://drive.google.com/file/d/1ffF-5JAlhjqmy293X1zL6HNr0gKwHGUk/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(39,'Luna Isabel','Uribe Cortes','CC','1193587870','luna.uribe24@gmail.com','3127130924','Práctica','1','Tecnologia Gestion Empresarial','Tecnología','2236483','2022-06-24','William Caro Bautista','aewcb@misena.edu.co','Ninguno','4277747-7','Hostal Naty Luna',NULL,'Jardin, Antioquia','John Jairo Uribe Giraldo','Gerente','3137592802','jjuglo@gmail.com','El SENA','https://drive.google.com/file/d/1lmjwok6Aepf5yyi-o10VKn4k8qIHR19s/preview','El objetivo es cambiar la modalidad de practica.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(40,'JUAN CAMILO','BENEDETTI ARTEAGA','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2023-07-01','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S',NULL,'LORICA, CORDOBA','MABEL LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1c65IddjIQwC1JfmY1A2Vc_iHKy5oNLao/preview','REVISAR BIEN LAS EVIDENCIAS QUE YA LAS REALICE TODAS Y SI ME FALTA ALGUNA POR FAVOR DECIR QUE YA ME HAN NEGADO VARIAS VECES LA CARTA.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(41,'JIMMY JULIAN','HERNANDEZ CASAS','CC','11444234','jjhc26@hotmail.com','3112246421','Práctica','5','tecnologo en coordinación de escuelas de musica','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO','joalopez@sena.edu.co','Ninguno','899999328-1','ALCALDIA DE FACATATIVA',NULL,'FACATATIVÁ','EDNA LILIANA YOMAYUSA MARTINEZ','3187343529','3115571008','cultura@facatativa-cundinamarca.gov.co','La empresa','https://drive.google.com/file/d/1XNjRVyw-080geayqAUZqAnPHqfSUinZM/preview','se anexa documentación, queda pendiente anexar nueva certificación laboral y de la arl del nuevo contrato','Pendiente','2023-09-08 15:53:07','Admin Admin'),(42,'Jennifer Alejandra','Castro Morales','CC','1015456851','jcastro158@misena.edu.co','3232105096','Lectiva','5','Técnico en Servicios y Operaciones Micro financieras','Técnico','2627131','2023-05-30','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','830.098.119-1','Bombatex Publicidad sas',NULL,'Bogotá','Jorge Piragauta Sierra','Representante Legal ','3108711439','info@bombatex.com','La empresa','https://drive.google.com/file/d/1qJJnNnRxKYHeEJQV51dweoS3OOYOM3le/preview','Quedo atenta a sus comentarios ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(43,'Alvaro Eugenio','Echeverri Castaño','CC','71293827','alvaeuechcas85@gmail.com','3228970157','Práctica','1','Tecnico en Dibujo Arquitectonico','Técnico','2670216','2023-12-07','Juan david Acevedo Agudelo','jdacevedoa@misena.edu.co','FIC','890.981.115-6','Alcaldia de Montebello Antioquia',NULL,'Montebello - Antioquia','Jose Enrique Castro Castro','Secretario de Planeacion y Obras Publicas','604-848-0561 604848-0564 ext 106','planeacion@montebello-antioquia.gov.co','El SENA','https://drive.google.com/file/d/1MjWrHO_nyXQdNYHC83zeFQKUK4cQ9tHc/preview','Por el momento ninguo','Pendiente','2023-09-08 15:53:07','Admin Admin'),(44,'Maria Fernanda','Cañaveral Montoya','CC','1001456818','mariafernandacanaveralm@gmail.com','3177883995','Práctica','1','Técnico en dibujo arquitectónico','Técnico','2670216','2023-05-09','Juan David Acevedo Agudelo','jdacevedoa@misena.edu.co','FIC','899.999034-1 ','SENA',NULL,'Itagüí','SENA','INSTRUCTOR','3007774417','lghernandez@sena.edu.co','El SENA','https://drive.google.com/file/d/1E0l7x-45p8AR9Aevs5gZoEYQVJKlwH-i/preview','ninguna','Pendiente','2023-09-08 15:53:07','Admin Admin'),(45,'JIMMY JULIAN','HERNANDEZ CASAS','CC','11444234','jjhc26@gmail.com','3112246421','Práctica','5','TECNOLOGO EN COORDINACION DE ESCUELAS DE MUSICA','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO','joalopezh@sena.edu.co','Ninguno','899999328-1','ALCALDIA DE FACATATIVA',NULL,'FACATATIVA','EDNA LILIANA YOMAYUSA MARTINEZ','SECRETARIA DE CULTURA Y JUVENTUD','3115571008','cultura@facatativa-cundinamarca.gov.co','La empresa','https://drive.google.com/file/d/1tFXvjTiwBdsBiZltE1v6cmUKInwMWaLW/preview','SE ANEXA DOCUMENTACION PARA LA APROVACION DE LA ETAPA PRODUCTIVA POR MEDIO DE VINCULACION LABORAL, QUEDA PENDIENTE ANEXAR NUEVA CERTIFICACION CON LAS FECHAS ACTUALES DEL NUEVO CONTRATO POR MEDIO DEL CORREO ELECTRONICO','Pendiente','2023-09-08 15:53:07','Admin Admin'),(46,'Yhony Javier ','Tonguino Chicangana ','CC','1061698561','jhonyjav22@hotmail.com','3128558757','Lectiva','5','Tecnológo en dirección de escuelas de música ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LÓPEZ HENAO','joahalohe@gmail.com','Ninguno','25287504-3','COLEGIO REAL POPAYAN ',NULL,'Popayan ','GLORIA EDITH HOYOS ','RECTORA ','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1Fp6IoLVcB6brlav8lvu0SUPyt_m_pyee/preview','Buenas tardes re-envío la información con los datos anexos solicitados por el instructor para el inicio de la etapa productiva del programa.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(47,'JUAN MANUEL','VALENCIA RAMIREZ ','CC','1055833986','juanmavara@outlook.com','3113931503','Lectiva','5','TECNÓLOGO EN COORDINACIÓN DE ESCUELAS DE MÚSICA ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LOPEZ HENAO ','jorge.lopez1@udea.edu.co ','Ninguno','890.801.150-3','ALCALDÍA DE SUPÍA (CALDAS)',NULL,'SUPÍA CALDAS ','NORA ANDREA NIETO MONTOYA ','SECRETARIA DE GOBIERNO ','3014048705','alcaldía@supía-caldas.gov.co','El SENA','https://drive.google.com/file/d/1A2khIh8RrDpxk0_lcadhVDOqFTP8O2t-/preview','NINGUNA ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(48,'Jose Fernando','Valencia Vargas','CC','1060593963','josebandola1994@gmail.com','3106523156','Lectiva','5','tecnologo en coordinación de escuelas de música ','Tecnología','2511135','2023-12-07','Jorge Alexander Lopez Henao ','jorge.lopez1@udea.edu.co','Ninguno','890.801.150 - 3','alcadía de supia (caldas)',NULL,'supia caldas','Nora Andrea Nieto Montoya','Secretaria de gobierno ','3014048705','alcaldia@supia-caldas.gov.co','La empresa','https://drive.google.com/file/d/1pPQmv6aT_H02Hlsfjj2Ohh-jnbHISqNZ/preview','ninguno ','Pendiente','2023-09-08 15:53:07','Admin Admin'),(49,'Agustín Edgar','Ocampo Alzate','CC','10124922','edyalzate@gmail.com','3202059830','Lectiva','5','Cordinación de Escuelas de Música','Tecnología','2511135','2023-12-07','Jorge López','joalopezh@sena.edu.co','Ninguno','890.001.339-5','Alcaldía de Filandia',NULL,'Filandia','Andrés Restrepo','Secretario de Gobierno','3206945032','gobierno@filandia-quindío.gov.co','La empresa','https://drive.google.com/file/d/1z-Fk1SArtBHfZ-3eVNYN9xn_RXLHKlBy/preview','Cordial Saludo. Solicito encarecidamente recibir mi inscripción a etapa productiva. Gracias.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(50,'Juan David','Atehortua Rios','CC','71381811','jatehor717@gmail.com','3008751737','Práctica','5','tecnologia en gestgion administrativa','Tecnología','2024123','2022-01-11','Ana Patricia Solis','patrysolis@gmail.com','Ninguno','8002374565','Emtelco S.A.S',NULL,'Medellin','Daniela castro Paternina','ejecutiva de cuenta ','3007768003','daniela.castro@emtelco.com.co','La empresa','https://drive.google.com/file/d/1vgIfrsTaCFGfKOPyt4j2PepBU-kP0ayC/preview','solicito de su ayuda para se puedan aprobar las practicas con la vinculacion laboral, por dificultades no pude realizaras tiempo a tras','Pendiente','2023-09-08 15:53:07','Admin Admin'),(51,'Adriana Marcela','Oviedo Gomez','CC','52701054','amoviedo45@misena.edu.co','3228521897','Práctica','1','Produccion Multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez','mpvazques@misena.edu.co','Ninguno','830084232-3','Fundacion Panamericana para el Desarrollo FUPAD',NULL,'Bogota','Mary Pito','Coordinador Nacional','3177927757','mpito@padf.org; mpito@fucolde.org','La empresa','https://drive.google.com/file/d/1RDzmtRKXCINlX7pZbWwlKebrAlCed57W/preview','N/A','Pendiente','2023-09-08 15:53:07','Admin Admin'),(52,'Shaenne Sophia ','Gamarra De La Ossa','CC','1102813389','profesorashaenne2@gmail.com','3002441043','Lectiva','5','Tecnólogo en Coordinación de Escuelas de Música','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','9000412354','JIN & CIA LIMITADA',NULL,'Turbaco','Leonor Carrasquilla Baena','Coordinadora General','3135742144','lcarrasquilla@lanuevaesperanza.edu.co','La empresa','https://drive.google.com/file/d/1-GTjTdIBAwvNunIK51Dcj-R8xkL_4iHy/preview','Buenas Noches, Tuve un inconveniente con el certificado laboral que no me lo han enviado por ser 7 días hábiles, espero poder subsanar ese documento, mientras tanto envié uno del año pasado llevo trabajando en la institución desde el 2013 como Docente De Música desde los grados de pre-escolar hasta quinto de primaria.','Pendiente','2023-09-08 15:53:07','Admin Admin'),(53,'Katherine','Mejia Isaza','CC','1001390358','kthemejia52@gmail.com','3004764913','Práctica','1','Producción de multimedia','Tecnología','2348392','2022-12-16','Monica Patricia Vasquez Correa','mpvasquez@misena.edu.co','Ninguno','811032151-3','SERVICIOS EMPRESARIALES PRODIGITAL S.A.S','CL 52 CR 48-52 INT 201 Copacabana',NULL,'Jennifer Montoya','Administradora','3105252552','jennifermontoyasalazar@gmail.com','El SENA','https://drive.google.com/file/d/1Uu5HV3BHLSPG2_KnyteoWeb0QJmfxqeN/preview','Adjunto historia clinica e incapacidad de accidente de mi papá, razón por la cual tuve que renunciar a mi pasantía anterior, para buscar un trabajo ya que el no podía laborar en ese momento. No pude subir la historia clinica reciente porque se supera el limite de subida.','Aprobado','2023-09-08 15:53:08','Admin Admin'),(54,'Luna Isabel','Uribe Cortes','CC','1193587870','luna.uribe24@gmail.com','3127130924','Práctica','1','Tecnologia gestion empresarial','Tecnología','2236483','2022-06-24','William Caro Bautista','aewcb@misena.edu.co','Ninguno','4277747-7','Hostal Naty Luna','Calle 10 #5-51 Jardín - Antioquia',NULL,'John Jairo Uribe Giraldo','Gerente','3137592802','jjuglo@gmail.com','El SENA','https://drive.google.com/file/d/1ZbTWxw0IkX0gCurfSkwGONkQlQJGkrGL/preview','En el documento anterior queda adjunto el formato de modificacion alternativa etapa practica, el acta del comite donde me autorizan terminar las practicas en otra modalidad, la carta de funciones y el formato de carta de pasantia de la empresa.','Rechazado','2023-09-08 15:53:08','Admin Admin'),(55,'Yhony Javier ','Tonguino Chicangana ','CC','1061698561','jhonyjav22@hotmail.com','3128558757','Lectiva','5','TECNOLÓGO EN DIRECCIÓN DE ESCUELAS DE MUSICA ','Tecnología','2511135','2023-12-07','JORGE ALEXANDER LÓPEZ HENAO','joalohe@gmail.com','Ninguno','25287504-3','Colegio Real Popayan ','Carrera 9 No 8-81 B/ San Camilo',NULL,'Gloria Edith Hoyos','Rectora','3147066176','coordinacionrealpopayan@gmail.com','La empresa','https://drive.google.com/file/d/1t54yCS83H0QIQuxQNP2T4JcvHgEtIGOp/preview','Muy buenas tardes re-envío la documentación con los requerimientos solicitados en la carta de funciones laborales.','Rechazado','2023-09-08 15:53:08','Admin Admin'),(56,'DIANA PAOLA','GIL ZULUGA','CC','1017241378','dianap_gil@soy.sena.edu.co','3146530476','Práctica','3','TECNICO DIBUJO ARQUITECTONICO','Técnico','2670216','2023-05-07','JUAN DAVID ACEVEDO AGUDELO ','jdacevedoa@sena.edu.co','FIC','899999034','CENTRO TECNOLOGICO MOBILIARIO','CALLE 63 #58B - 03',NULL,'JAIME LEON VERGARA','COORDINADOR ACADEMICO','604 514 9290 ','practicasctm@sena.edu.co','El SENA','https://drive.google.com/file/d/12cJcWxdpA2T9HtcHgGrGVl_6xYhGfk8e/preview','NINGUNA','Aprobado','2023-09-08 15:53:08','Admin Admin'),(57,'Jonny Arturo','Sanchez Velez','CC','8071368','sanchezjonny325@gmail.com','313 523 4754','Práctica','5','Gestión de la producción Industrial','Tecnología','2340322-2','2023-07-18','Conrrado Alcides Zapata ','casosa5@misena.edu.co','Ninguno','890.901.866-7','Bonem','Calle 6 sur # 50C 104',NULL,'Carlos Arcila Alzate ','Coordinador de Producción','604 204 2900 ext 8143','carlos.arcila@somosgrupo-a.com','La empresa','https://drive.google.com/file/d/1sCSaBDfD5qIpz9jIGSvjttqp5Sq2_A4s/preview','Anexo documentación requerida ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(58,'Jhon Fredys ','Quintero Espinosa ','CC','98672649','jfquintero2020@gmail.com','3206539464','Práctica','3','SISTEMA DE GESTION Y SEGURIDAD EN EL TRABAJO','Tecnología','2142193','2021-03-31','CRISTIAN JAMANOY','cjamanoyd@misena.edu.co','Ninguno','98672649','FREDYS QUINTERO (PROYECTO PRODUCTIVO)','CRA 52 nro. 99 SUR 96',NULL,'Ana María Pineda','Asistente de Gerencia','3244001820','anamph07@gmail.com','La empresa','https://drive.google.com/file/d/14xnM7ftI64Zmwa6EGCv9sy3M-9RaYPKS/preview','Espero respuesta','Aprobado','2023-09-08 15:53:08','Admin Admin'),(59,'Silvia Alejandra ','Lozano Copete','CC','1148951599','alejahe.sil@hotmail.es','315230798','Práctica','5','Análisis y desarrollo de sistemas de información ','Tecnología','2176105','2023-03-30','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','900918004','DBNET COLOMBIA SAS ',' Carrera 13 No 96 – 67 – Oficina 513',NULL,'CARLOS ALBERTO ADARRAGA ','Gerente de operaciones Colombia ','4325120','DBNET@DBNETCORP.COM','La empresa','https://drive.google.com/file/d/1mEdpODhrSBQoFh4mQnzxRqib7SWnQO6Q/preview','Debido a que soy Ingeniera de sistemas, me encuentro laborando como Consultora de proyectos TI, y esto aplica con la tecnología cursada ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(60,'Ana Maria','Pineda Hincapie','CC','43745150','anamph07@gmail.com','3244001820','Práctica','3','SG-SST','Tecnología','2142193','2021-03-31','Cristian Jamanoy','cjamanoyd@misena.edu.co','Ninguno','43745150','Ana María Pineda H','carrera 52 No 99 sur 96 ',NULL,'Ana Pineda','Asistente gerencia','3244001820','anamph07@gmail.com','La empresa','https://drive.google.com/file/d/1zchV1zIYT6Bowne68kIX63z7tv_bhrli/preview','Quedo atenta a la respuesta.','Aprobado','2023-09-08 15:53:08','Admin Admin'),(61,'Diana Yurley ','Cano Muñoz ','CC','1128483780','dycano08@misena.edu.co','3108985053','Práctica','1','Producción de multimedia ','Tecnología','2141942','2022-02-05','Isabel Cristina Soto Gallego','isabelsoto1@misena.edu.co','Ninguno','900493604','Doble a inversiones sas','Cra. 42A No. 1 - 25 Of. 410 San Fernando Plaza',NULL,'Keicy Johana Carmona Taborda ','Coordinadora jurídica y de gestión humana','6043220991','keicy.carmona@dobleaasesorias.com','La empresa','https://drive.google.com/file/d/18z_qkrhNhO9jFIHv3qPxyexHrYeAHSH0/preview','Quedo muy atenta con el proceso a seguir, estoy muy interesasa en culminar la formación con la oportunidad presentada','Aprobado','2023-09-08 15:53:08','Admin Admin'),(62,'Sara Cristina ','Bolivar Ibarra ','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestión Empresarial','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS','Calle 46 # 41-70',NULL,'Maria Cristina Hoyos Mejia ','Jefe Administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1VCLiMALwH7OYXjv8wkQ-llLNDfjDrMS-/preview','N/A','Aprobado','2023-09-08 15:53:08','Admin Admin'),(63,'natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','Lectiva','5','gestión de la producción industrial','Tecnología','2453890','2023-06-02','Diego Armando Martínez García ','da42@misena.edu.co','Ninguno','890927404-0','firplak ','autopista sur calle29# 41-15 Itagüí Antioquia',NULL,'manuela Moncada Velásquez ','jefe de producción','3192127510','manuela.moncada@firplak.com','La empresa','https://drive.google.com/file/d/1j4t0_kwgJi4-4NCLSXBpJ69KDpFkjYce/preview','con la mejor actitud para iniciar mis practicas ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(64,'miguel angel ','alzate Vargas ','CC','70567911','miangelalzate@gmial.com ','3006543721','Práctica','3','sistema de gestion de la seguridad salud en el trabajo SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA HERRERA ','restrada3@misena.edu.co','Ninguno','811-027-971-6','CULTIVOS GUAPANTE S.A.S','VEREDA CHAHFRUTO RIONEGRO ',NULL,'RUBEN DARIO RIVERA BETANCURT','REPRESENTANTE LEGAL ','3104122270','rubiorubencho@gmail.com ','El SENA','https://drive.google.com/file/d/1ntF8cxsAtJZ8rCLquoOfEQIPF1a8rXkJ/preview','SOLICITUD DE CAMBIO DE PARACTICA ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(65,'Jonny Arturo','Sanchez Velez','CC','8071368','sanchezjonny325@gmail.com','3135234754','Práctica','5','Gestión de la producción Industrial','Tecnología','2340322-2','2023-07-18','Conrado Alcides Ossa ','casosa5@misena.edu.co','Ninguno','890901866-7','Bonem','calle 6 sur #50c 104',NULL,'Carlos Arcila Alzate ','Coordinador de producción ','604 204 29 00 ext 8143','carlos.arcila@somosgrupo-a.com','La empresa','https://drive.google.com/file/d/1MH00HAtDelanNYvgkUacoUVmRk-8jDVM/preview','Anexo documentación solicitada ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(66,'LINA MARIA','SANCHEZ GOMEZ','CC','1002126946','slina9406@gmail.com','3046200595','Práctica','3','DECORACIÓN DE ESPACIOS INTERIORES','Tecnología','2141930','2022-08-02','MAURICIO SANCHEZ MUÑOZ','msanchezm@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/11aV-BD9g9QvHG4c9kjde9nFMV4aN48u_/preview','Espero recibir una pronta respuesta, para darle inicio al proyecto productivo y culminar la tecnología','Aprobado','2023-09-08 15:53:08','Admin Admin'),(67,'Natalia ','Martínez orejuela ','CC','1128432360','nm1240507@gmail.com','3011106005','Lectiva','5','gestion de la produccion industrial ','Tecnología','2453890','2023-07-02','diego armando Martínez García ','da42@misena.edu.co','Ninguno','890927404-0','firplak','autopista sur calle 29 numero 41-15 Itagüí ',NULL,'Manuela Moncada Velasquez','Jefe de Producción','3192127510','manuela.moncada@firplak.com','La empresa','https://drive.google.com/file/d/1uPFpPUBG317IXVT6dqB0vG0tDqmlY7IO/preview','el cuestionario esta muy completo y es muy practico','Pendiente','2023-09-08 15:53:08','Admin Admin'),(68,'Silvia Alejandra ','Lozano Copete','CC','1148951599','alejahe.sil@hotmail.es','3152303798','Práctica','5','Tecnología en Análisis y desarrollo de sistemas de Información ','Tecnología','2176105','2023-03-04',' CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','900918004','DBNET COLOMBIA SAS','Carrera 13 No 96 – 67 Oficina 513 Edificio',NULL,'Carlos Alberto Adárraga Mejía ','GERENTE DE OPERACIONES ','4325120','dbnet@dbnetcorp.com ','La empresa','https://drive.google.com/file/d/1Q7ku6LgVHxmYkjSJH4Zsxy8gYLXWeBWV/preview','Buenas noches, adjunto la información requerida','Pendiente','2023-09-08 15:53:08','Admin Admin'),(69,'Juan Camilo ','Jaramillo Montoya ','CC','1037264640','kamilex24@hotmail.com','3145506724','Lectiva','5','Coordinacion de Escuelas de Música y Proyectos Culturales','Tecnología','2511135','2023-12-07',NULL,'Jorge Alexander Lopez Henao','Ninguno','8909822782','Alcaldia Ituango','Call berrio 19-08 Parque principal ',NULL,'Leidy Yohanna Vargas Correa ','secretaria de educacion cultura y deporte ','3102044327','educacion@ituango-antioquia.gov.co','La empresa','https://drive.google.com/file/d/1ZvYOd-JhKpvCxhf8c7dxXNTSqh7HLDgG/preview','Hola el certificado laboral me lo hicieron de todos los años pero en las hojas 2 y 3 esta mi contrato actual con las obligaciones.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(70,'DANI LUZ',' JIMENEZ CARTAGENA','CC','1017154262','danana7727@gmail.com','3104175652','Práctica','5','tecnologia en Gestion administrativa','Tecnología','2065924','2022-10-20','MIGUEL ANTONIO SANTANA','misantavi@misena.edu.co','Ninguno','811005425-1','CORPORACION UNIVERSITARIA UNIREMINGTON','calle 51 No 51-27 parque berrio ',NULL,'MARTA LUCIA FIGUEROA ORREGO','mfigueroa@uniremington.edu.co','3186167515','djimenez@uniremington.edu.co','La empresa','https://drive.google.com/file/d/1VdTyqRzr-6LMy7KSgRE0fIbHTTRHJL7I/preview','Quedo atenta al proceso ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(71,'MIGUEL ANGEL ','ALZATE VARGAS ','CC','70567911','MIANGELALZATE@GMIAL.COM ','3006543721','Práctica','3','SISTEMA DE GESTION DE LASEGURIDAD Y SALUD EN EL TRABAJO ','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@sena.gov.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1cZiWD0YapninyDgntdZ2_4-27s08DjvK/preview','solicitud de cambio de practica ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(72,'Sara Cristina ','Bolivar Ibarra','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestión Empresarial ','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS ','Calle 46 # 41-70',NULL,'Maria Ceistina Hoyos Mejia ','Jefe administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1BuXOojOozmtqm2hK2OYz0Uj72fpVZdHA/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(73,'YESSICA MARCELA','CAÑAS HERNANDEZ','CC','43657647','marcinauta@gmail.com','3122133140','Práctica','1','TECNÓLOGO EN GESTIÓN DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2236470','2022-07-25','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','860005068-3','CRTC ESCUELA DE TRABAJO SAN JOSE','DIAGNONAL 44 NRO 31 70',NULL,'DORIS SHADINN LOAIZA ZAPATA','COORDINADORA INSTITUCIONAL SST','3146945549','sgsst@etsanjose.org','La empresa','https://drive.google.com/file/d/1AZ77B9rnKna671KRRPhiibbEgHzwySyA/preview','Hace un mes que comencé pero tenía dificultades con el formulario para registrar la modalidad','Pendiente','2023-09-08 15:53:08','Admin Admin'),(74,'Sebastián ','Escobar Caro','CC','1046668824','sebasescobar456@gmail.com','3117610474','Práctica','5','Coordinación de Escuelas de Música','Tecnología','251135','2023-12-07','Jorge Henao López','joalopezh@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'La empresa','https://drive.google.com/file/d/10oSbVpBzIIgeKRWq8pbheTLarFV5dKNi/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(75,'JUAN CAMILO BENEDETTI','BENEDETTI ARTEAGA','CC','1067160283','JUANCAMILOBENEDETTI20@GMAIL.COM','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2022-05-09','LAURA JOHANNA JARAMILLO QUIROGA','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N* 15-72 BARRIO REMOLINO',NULL,'MABEL LORENA MANGONES URIBE','JEFE DE RECURSOS HUMANOS ','3044415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1QuIiBGWhnj9OE8Uy_GXst035Z27L2ML4/preview','por favor aceptenme la carta tengo todas las evidencias al dia muchas gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(76,'miguel angel ','alzate vargas ','CC','70,567,911','miangelalzate@gmail.com ','300 654 37 21 ','Práctica','3','SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@misena.gov.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1YTEu2ncuTelxKY2b6DqlGikNWv3lR32T/preview','ENVIO DOCUMENTACION ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(77,'Jesus ','Velazco Ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Tecnología para la Gestion de Produccion Industrial','Tecnología','2340322','2022-12-03','Conrado Alcides Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina S.A.S','Carrera 80C#32EE-8',NULL,'Marie Moncada F','Gerente Administrativo / Representante Suplente Lega','3142046398','marie.suplimax@gmail.com','La empresa','https://drive.google.com/file/d/16JtbzjvngfBIx5HYy4vxTU1ZCY1TnQSv/preview','Faltan los demas documentos pero no deja cargar a los demás documentos','Pendiente','2023-09-08 15:53:08','Admin Admin'),(78,'Oscar David','Ramirez','CC','71389538','odavid15162931@gmail.com','3006283667','Práctica','5','tecnología gestión logística','Tecnología','2374573','2023-02-02','Laura Johana Jaramillo','ljaramilloq@misena.edu.co','Ninguno','900411781','C.I Fajas MYD','Carrera 50C # 10sur - 120',NULL,'Jorge Cadavia','Coordinador','318 5087057','coorlogistica@fajasmyd.com','La empresa','https://drive.google.com/file/d/16_hs4ZuBHgy0sbEqfetXS7H5lJqCs6xq/preview','quedo atento a su respuesta','Pendiente','2023-09-08 15:53:08','Admin Admin'),(79,'DIANA YURLEY','CANO MUÑOZ','CC','1128483780','dycano08@misena.edu.co','3108985053','Práctica','1','Tecnología en Producción de Multimedia ','Tecnología','2141942','2022-02-04','ISABEL CRISTINA SOTO GALLEGO','isabelsoto1@misena.edu.co','Ninguno','90493604','DOBLE A INVERSIONES SAS','CRA 42A 1 25 OF 410',NULL,'Keicy Johana Carmona Taborda','Coordinador Jurídico y de Gestión humana ','3220991','keicy.carmona@dobleaasesorias.com','La empresa','https://drive.google.com/file/d/1Gwa3HO4d5xQ8uEGksgj7-3r2cMuAiPUd/preview','Quedo atenta a cualquier novedad ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(80,'jony alberto','rios berrio','CC','71216853','jhonyriosb@gmail.com','3042015975','Práctica','5','tecnico en carpinteria','Técnico','2611702','2023-06-03','german villegas jaramillo','gville@sena.edu.co','Ninguno','899.999.063-3','universidad nacional de colombia','calle 65 59a-110',NULL,'christian alberto montoya hurtado','jefe inmediato','3004893982','cmontoyah@unal.edu.co',NULL,'https://drive.google.com/file/d/1T6IeAH9WLya0WRYNQnnhExMv-ASioRty/preview','un poco complicado montar los pdf','Pendiente','2023-09-08 15:53:08','Admin Admin'),(81,'JUAN CAMILO ','BENEDETTI ARTEAGA','CC','1067160283','juancamilbenedeti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO ','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N 15-72 BARRIO CENTRO',NULL,'MABEL LORENA MANGONES URIBE','JEFE DE RECURSOS HUMANOS ','304 4415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1cBFREmbRrhE1qi8HkwWzWeypANXz_F9K/preview','estan todos los requisitos. gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(82,'DANI LUZ','JIMENEZ CARTAGENA','CC','1017154262','danana7727@gmail.com','3104175652','Práctica','5','TECNOLOGIA EN GESTION ADMINISTRATIVA','Tecnología','2065924',NULL,'12 /04/ 2022','MIGUEL ANTONIO SANTANA VILLERA ','Ninguno','811005425-1','CORPORACIÓN UNIVERSITARIA REMINGTON','CALLE51 No 51-27 PARQUE BERRIO',NULL,'MARTA LUCIA FIGUERO ORREGO','SUPERVISORA','3186167515','uniremington@uniremington.edu.co','La empresa','https://drive.google.com/file/d/1l5roB9e5NedioP4RJf11g3zXm0mp3hza/preview','Quedo atenta lo mas pronto posible ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(83,'HEIDY TATIANA ','LONDOÑO RESTREPO','CC','1018347766','LONDONORESTREPOHEIDYTATIANA@GMAIL.COM','3023446460','Lectiva','5','TECNOLOGIA EN SEGURIDAD Y SALUD EN EL TRAQBAJO','Tecnología','2535777','2023-10-23','MARTHA CESILIA HENAO','martaceci-henao@hotmail.com','Ninguno','90725119','HIDROSANITARIAS JZZ S.A.S','SAN JAVIER ',NULL,'JORGE ZAPATA ZAPATA ','JEFE INMEDIATO','3225853484','JORGEZAPATAZULUAGA@GMAIL.COM','La empresa','https://drive.google.com/file/d/1VsLEx8wbOy5nF7iqF9n52saO8kFNiWVU/preview','POR FAVOR COMUNICARSE CONMIGO SI TIENEN ALGUNA DUDA 3023446460 ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(84,'Shaenne Sophia','Gamarra De La Ossa','CC','1102813389','profesorashaenne2@gmail.com','3002441043','Lectiva','5','Coordinación en escuelas de Música','Tecnología','2511135','2023-12-07','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','9000412354','JIN & CIA Limitada','Sector Torrecilla, Turbaco, Bolívar',NULL,'Leonor Carrasquilla Baena','Coordinadora General','3135742144','dir.conservatorioamn@unibac.edu.co','La empresa','https://drive.google.com/file/d/1IT3EAT_aH9ZhWiHYafHReqJYpkUNCcBC/preview','Envío nuevamente el certificado laboral con las funciones especificas.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(85,'Yessica Duque','Duque Rios','CC','1036630790','yessika.duque@hotmail.com ','3218526482','Lectiva','5','gestion empresarial','Tecnología','2562425','2024-01-15','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','890903938','Bancolombia','Direccion cra 48 # 26-85',NULL,'John Edwar Ruiz Hernandez','Jefe de seccion','4041213','johruiz@bancolombia.com.co','La empresa','https://drive.google.com/file/d/1gpFxYh2T100wgo1pezaEQqM4xwNA12aS/preview','Adjunto la carta para poder realizar la homologacion de las practicas','Pendiente','2023-09-08 15:53:08','Admin Admin'),(86,'Cristian Camilo ','Hincapie Gomez','CC','1036640152','cristiancamiloh3@gmail.com','3185439882','Práctica','5','Gestión Empresarial','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez ','Alvarozco@misena.edu.co','Ninguno','800022367','Fundación Socya','calle 84 sur # 33 - 57 ',NULL,'Alvaro Perez ','Direcctor de Negocios ','301 335 8632 ','aeperez@socya.org.co','La empresa','https://drive.google.com/file/d/1nOp4lfTOwLVdvQnZzHnmuhAOZXq5H5Nc/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(87,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-18','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno',' 800.223.337-6','EMPRESA DE DESARROLLO URBANO','CARRERA 49 N°44-94- PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co','La empresa','https://drive.google.com/file/d/1hn8yn3hafYtZfZbGxAIrtlQIS3pa8RNj/preview','NINGUNA','Pendiente','2023-09-08 15:53:08','Admin Admin'),(88,'Sara Cristina ','Bolivar Ibarra','CC','1039459217','sarabolivar12@yahoo.com','3004553029','Lectiva','5','Tecnologia en Gestion Empresarial','Tecnología','2453777','2023-07-23','Juan Camilo Chavarria Grajales ','jcchavarria4@misena.edu.co','Ninguno','811035751','Frestolu SAS','Calle 46 # 41-70',NULL,'Maria Cristina Hoyos Mejia ','Lider Administrativa ','4489036','asistente@frestolu.com',NULL,'https://drive.google.com/file/d/1ZNOEpR3EcoGkVzKAZma13LVhiE9gPUc3/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(89,'oscar david','castro mendoza','CC','1005551102','davidoscar16@outlook.es','3022419232','Práctica','5','distribución física internacional','Tecnología','2455351',NULL,'Laura Jaramillo Quiroga ','ljaramilloq@misena.edu.co','Jóvenes en Acción','6053567000','CACHARERIA MUNDIAL','Vía Belén KM 1 Río Negro, Antioquia,',NULL,' Cristian Giraldo ','coordinador de turno ','3104666175','Cristian.giraldo@grupo-orbis.com','La empresa','https://drive.google.com/drive/u/1/folders/1C_zjhXGLWVN1ljLjH2HL_yBMrUX-ZmK2GtCZaUlwM0DO-E3XivqSEPYfXzLlZrwWUmI9QKQZ','NINGUNA ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(90,'Santiago ','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046380966','Práctica','3','Gestión administrativa ','Tecnología','2313307','2022-10-14','Ana Patricia Solis Leal','asolis3@misena.edu','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1xe4-opmUYLrVnRhhpMquEfaLDO0CTNCv/preview','Adjunto documentos para realizar el cambio de modalidad de prácticas, ya cuento con la autorización de dicho cambio por parte del comité. ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(91,'CRISTIAN JOHAN ','HERNANDEZ RENDON','CC','1037629396','cristian3356@hotmail.com','3218850297','Práctica','3','Gestión de salud y seguridad en el trabajo','Tecnología','2280372-2','2022-09-30','sandra iris ','siescobar0@misena.edu.co','Ninguno','n/a','n/a','n/a',NULL,'n/a',NULL,'n/a','n/a',NULL,'https://drive.google.com/drive/u/1/folders/1C_zjhXGLWVN1ljLjH2HL_yBMrUX-ZmK2GtCZaUlwM0DO-E3XivqSEPYfXzLlZrwWUmI9QKQZ','practica proyecto productivo, estoy con otro compañero el cual dejo su nombre en los comentarios ya que el formato no trae espacio para otra persona MANUELA GALEANO 1036669940 ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(92,'SINDY POLETH ','RODRIGUEZ CASAS','CC','1012372259','sindisita18@hotmail.com','3108163325','Práctica','1','PRODUCCION DE MULTIMEDIA','Tecnología','2374664','2023-08-02','MONICA PATRICIA VASQUEZ CORREA','mpvasquez@misena.edu.co','Ninguno','80249474-9','PHOTO STORE','CALLE 65 F # 78G - 65 SUR BOSA LA AMISTAD',NULL,'CARLOS HONORIO GUERRERO GOMEZ','JEFE','3103177270','photo_store@hotmail.com','El SENA','https://drive.google.com/file/d/1fqfaM8qVORLwhSo9uxR7Jz8Gxi8Yqzo2/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(93,'DAYANA MARCELA','NOGUERA SOLARTE','CC','1020824683','dayananoguera601@gmail.com','3202234272','Lectiva','5','TECNOLOGO EN GESTION ADMINISTRATIVA','Tecnología','2449035',NULL,'DORIS YANETH RODRIGUEZ','dyrodriguez@sena.edu.co','Ninguno','900293274-2','ISOPLASTICOS S.A.S','CRA18 164 50',NULL,'SANDRA PATRICIA PLAZAS','JEFE DE CONTROL','3015166056','asistente.nomina@isoplasticos.com','La empresa','https://drive.google.com/file/d/1s2vl5dOV51C1F6FqvCIsMKX3e6queLsf/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(94,'MANUELA','GALEANO GUIRAL','CC','1036669940','Manujero.09.03.2016@gmail.com','3024590304','Práctica','3','GESTION DE SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2280356-1','2022-09-30','Genny De Jesús Carvajal Jaramillo','gdcarvajal7@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A','El SENA','https://drive.google.com/file/d/1VlzPe-l90RIl72uHyUyWfpKIt0Ey9uJ3/preview','CONFORMANDO EQUIPO CON CRISTIAN JOHAN HERNANDEZ RENDON CEDULA 1037629396','Pendiente','2023-09-08 15:53:08','Admin Admin'),(95,'JUAN CAMILO ','BENEDETTI ARTEAGA ','CC','1067160283','juancamilobenedetti20@gmail.com','3008219582','Práctica','1','CONTABILIZACION DE OPERACIONES COMERCIALES Y FINANCIERAS ','Técnico','2374442','2022-05-04','LAURA JOHANNA JARAMILLO ','ljaramilloq@misena.edu.co','Ninguno','812002958','CLINICA LA TRINIDAD S.A.S','CALLE 2 N* 15-72 BARRIO CENTRO',NULL,'MABEL LORENA MANGONES URIBE ','JEFE DE RECURSOS HUMANOS ','304 4415572','talentohumano@clinicalatrinidad.com.co','El SENA','https://drive.google.com/file/d/1o4dcFE-EKwC299uqHGm9n8mPe6y0nYXl/preview','espero su respuesta pronto ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(96,'Santiago','Patiño Patiño','CC','1035875153','ssantiago746@gmail.com','3046389966','Práctica','3','Gestión administrativa ','Tecnología','2313307','2022-10-14','Ana Patricia Solis Leal ','asolis3@misena.edu','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1ll-EiBOd6RxKNHJuCEy3jvUKOMACmhtF/preview','Adjunto documentos para hacer cambio de modalidad de prácticas, las cuales ya cuento con la aprobación del comité. ','Aprobado','2023-09-08 15:53:08','Admin Admin'),(97,'Sebastián','Escobar Caro','CC','1046668824','sebasescobar456@gmail.com','3117610474','Lectiva','5','Tecnólogo en Coordinación de Escuelas de Música','Tecnología','2511135','2023-12-20','Jorge Alexander López Henao','joalopezh@sena.edu.co','Ninguno','8000.116.217-2','Corporación Universitaria Minuto de Dios','Cra 45 N°22D-25',NULL,'Elicenia Restrepo Restrepo','Directora de Bienestar - Asuntos Estudiantiles',NULL,NULL,NULL,'https://drive.google.com/file/d/12rG5glsQ5RF6lPNEg0i6LMk4vknQvCC5/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(98,'Daniela','Londoño Torres','CC','1036649420','dani.277@hotmail.com','3217237349','Práctica','5','Seguridad y salud en el trabajo','Tecnología','2280372-1','2022-10-01','Sandra Iris Escobar Osorio','siescobar0@misena.edu.co','Ninguno','901325099','WTG construccion y reformas','cra 50a 66-67',NULL,'Raul Andres Oquendo ','Coordinador proyectos ','3005994595','coordinadorwtg@gmail.com','La empresa','https://drive.google.com/file/d/1pB-ZrF26otoqUODHQi-m1s4GlTl0msVj/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(99,'YAQUELINE ','BEDOYA GALEANO','CC','1017241792','YAQUELINE297@SOY.SENA.EDU.CO','3053371991','Práctica','3','GESTION DE SGSST ','Tecnología','2280356','2022-10-22','GENNY CARVAL','GDCARVAJAL7@MISENA.EDU.CO','Ninguno','0000000','00000','000000',NULL,'00000','00000','00000000','0000000','El SENA','https://drive.google.com/file/d/1br_w8k_K_-AMTRXSdpY4oxDHLDm0iHXv/preview','NO','Pendiente','2023-09-08 15:53:08','Admin Admin'),(100,'YOLANDA DE JESUS ','RIOS CARDONA ','CC','43905369','YOLANDARIOS502@GMAIL.COM','3186124765','Práctica','3','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO ','Tecnología','2280372-2','2022-09-30','SANDR IRIS ESCOBAR ','siescobar0@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1UX0qwU3f9LWPp2YV-IsMtO--qAk1-94U/preview','NINGUNO','Pendiente','2023-09-08 15:53:08','Admin Admin'),(101,'JUAN DIEGO','RICO LONDOÑO','CC','1128455333','DIERI9225@GMAIL.COM','3008457834','Práctica','5','TECNOLOGO EN PRODUCCION INDUSTRIAL','Tecnología','2453890','2023-07-22','DIEGO ARMANDO MARTINEZ','da42@misena.edu.co','Ninguno','811.012.366-4','HIERBAS Y PLANTAS TROPICAS S.A.S','CARRERA 56 # 72 A- 101 ITAGUI ',NULL,'YENNY BETANCUR','COORDINADORA DE PRODUCCION','3103479822','yennyb@hiplantro.com','La empresa','https://drive.google.com/file/d/1vqGMdrr64RzJxsuZq8TTHF6MudpupbTl/preview','ENVIO DOCUMENTOS (PRACTICA)','Pendiente','2023-09-08 15:53:08','Admin Admin'),(102,'Leslie Nicole ','Alvarez Serna','CC','1036664757','nalvarez0596@gmail.com','3014477398','Lectiva','5','Gestión empresarial','Tecnología','2562425','2024-01-17','Maribel Rodriguez Rave','mrodriguez94@misena.edu.co','Ninguno','811043859-6','C.I PACK BLUE SAS','Cra. 48 #75A 37',NULL,'Alejandro Jaramillo','Director E-commerce','3743637','alejandro@colorblue.com.co','La empresa','https://drive.google.com/file/d/1fVX_cipbUYIw2QxST_uf98IZO4zpBaks/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(103,'Juan Pablo','Uribe Perez','CC','1036600845','juanpablouribeperez6@gmail.com','3502826268','Práctica','3','tecnología en gestión de la producción industrial','Tecnología','2320322','2023-01-16','Conrado Alcides ','casosaz@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1AKlsp9652V3sRlVW9eCqmVJWfH7VtDay/preview','Sin Observaciones','Pendiente','2023-09-08 15:53:08','Admin Admin'),(104,'david','urrego moreno','CC','1039468459','durrego95@misena.edu.co','3197707566','Práctica','3','Gestión de la seguridad y salud en el trabajo ','Tecnología','2206253','2022-04-09','sandra iris escobar osorio','siescobar0@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1aFAQx01XlFkleHkdqWuvxZluUgRSEn-Y/preview','proceso para comenzar el proyecto','Pendiente','2023-09-08 15:53:08','Admin Admin'),(105,'YEISON ENRIQUE','LOPEZ MOSQUERA','CC','1216726236','lopez25yeison@gmail.com','3225963150','Práctica','5','tecnólogo en gestión logística','Tecnología','2236465','2022-07-21','jhon alejandro jimenez','alejandrojsa@misena.edu.co','Ninguno','805.022.756-4','jobandtalent','cra 12Nº 90- 19',NULL,'Cristian ','coordinador de logística, en colombina ','3116304405','Ybetancur@colombina.com','La empresa','https://drive.google.com/file/d/1TkQBGkSkpTid_itkBjt0R2XTya2Vhurz/preview','mi contrato es obra o labor por medio de la temporal jobantalend para trabajar en colombina S.A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(106,'Maria Isabel ','Osorio Machado','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoración de espacios interiores ','Tecnología','2453770','2023-01-23','juan david acevedo ','Jdacevedoa@misena.edu.co','Ninguno',NULL,'sena calatraba de itagui ','SENA Complejo Sur Itagüí, Cl. 63 #58B-03',NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1yfdhBplwdWsdVogLimOpI6MJnT3RtvAu/preview','Me llamo maria isabel osorio y me cambiaron de ficha. ahora pertenezco a esta ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(107,'Rolando jose','guerrero sampayo','CC','1043668080','rolando22_@outlook.com','3202720874','Práctica','3','analisis sistemas de informacion','Tecnología','2251309','2022-09-01','edward lopera','elopera@misena.edu.co','Ninguno','9007683733','grupo hoteles','Cl. 47 #45 49, La Candelaria, Medellín, La Candelaria, Medellín, Antioquia',NULL,'anderson lopez','arh@grupo-hoteles.com','3194070907','arh@grupo-hoteles.com','La empresa','https://drive.google.com/file/d/1iV2dqLz_je3NJbimYP8zRVsVWxwhGDUQ/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(108,'YESSICA MARCELA','CAÑAS HERNANDEZ','CC','43657647','marcinauta@gmail.com','3122133140','Práctica','1','SG SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2236470','2022-07-25','RICARDO ESTRADA','restrada3@misena.edu.co','Ninguno','860005068-3','CRTC DE NUESTRA SEÑORA DE LOS DOLORES ','DG 44 31 70',NULL,'DORIS SHADINN LOAIZA APATA','COORDINADOR DE SST','3146945549','sgsst@etsanjose.org','La empresa','https://drive.google.com/file/d/1cVbaqzn97wV4LW-4ho4tD1WfI0mfINfb/preview','Lista la afiliación a ARL también','Pendiente','2023-09-08 15:53:08','Admin Admin'),(109,'Beatriz Elena','Carmona Tirado','CC','43167523','negritacarmona1012@gmail.com','3043555362','Lectiva','5','GS-SST','Tecnología','2453820','2023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','890931708','EXTRUSIONES S.A.','Dirección: Cl. 25 #41-166, Itagüi, Antioquia',NULL,'Gustavo Silva','Director de producción','(604) 3222307','gsilva@extrusiones.com.co','La empresa','https://drive.google.com/file/d/1x-ipNuL0rcPa3urdbEipkIPUuH-V-CGt/preview','documentacion para aprovacíon de practicas por vinculación laboral','Pendiente','2023-09-08 15:53:08','Admin Admin'),(110,'Maria Isabel','Osorio Machado ','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoración de Espacios de interiores','Tecnología','2453770','2023-01-23','Mauricio Sanchez','msanchezmunoz@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1d6T5MA-i9K5XOH75bJq1wKQHgYK1rwpw/preview','Documentos para la pasantía en el sena ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(111,'Miguel Angel','Gómez Zuluaga','CC','1027801697','ma796@misena.edu.co','3133240391','Práctica','1','Producción de Multimedia','Tecnología','2472670','2022-12-15','Jarley Mejía Agudelo ','jmejia64@misena.edu.co','Ninguno','899999034-1','Servicio Nacional de Aprendizaje SENA - Centro Tecnológico del Mobiliario CTM','Calle 63 #58B - 03, Itagüi, Antioquia',NULL,'Brandon Gonzales','Practicante Comunicaciones',NULL,NULL,'El SENA','https://drive.google.com/file/d/1XcYBcIe-r4_EuRbVonx7VLK1j8gxsEMd/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(112,'Maria Isabel','Osorio Machado','CC','1035232323','mariia-1817@outlook.es','3007773593','Práctica','1','Decoracion de espacios interiores','Tecnología','2453770','2023-02-23','Mauricio Sanchez','msanchezmunoz@misena.edu.co','Ninguno','5149280','sena de itagui','Cl. 63 #58B-03, Terranova, Itagüi, Antioquia',NULL,NULL,'dibujante','45149290',NULL,'El SENA','https://drive.google.com/file/d/1vnMWvogj8RFY5ZMVGkPn3-oYmbvRtyXw/preview','datos para mi pasantía en el sena','Pendiente','2023-09-08 15:53:08','Admin Admin'),(113,'Leslie Nicole','Alvarez Serna','CC','1036664757','nalvarez0596@gmail.com','3014477398','Lectiva','5','Gestión empresarial','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave','mridriguez94@misena.edu.co','Ninguno','811043859-6','C.I. pack blue sas','Cra. 48 #75A 37',NULL,'Alejandro Jaramillo','Director E-commerce','3743637','alejandro@colorblue.com.co','La empresa','https://drive.google.com/file/d/1Ia-AzXU6pog5RQxfTFIJcVS273m57oTQ/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(114,'Alexander','Quintero Munera','CC','1037625883','alexanderqm93@hotmail.com','3192536383','Lectiva','4','Tecnica en Carpintería','Técnico','2672203','2023-10-23','Antonio de Padua Monsalve Velasquez','paduamonsalve@misena.sena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A','El SENA','https://drive.google.com/file/d/1gSYRV0GFxOsYP4BDPWa1I0VAEk_gj6KS/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(115,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','TECNOLOGÍA EN GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-17','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6','EMPRESA DE DESARROLLO URBANO (EDU)','CARRERA 49 N°44-94 PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1qjIYD7MXVPezn_fUxZv5kYpEiFw0oND7/preview','https://docs.google.com/spreadsheets/d/1sQPdbNOAlE-7xx2A5By8w2zeFs3YnT61/edit?usp=sharing&ouid=116964390984032923040&rtpof=true&sd=true- ADJUNTO VINCULO DEL FORMATO DE EXCEL QUE HABIA QUE LLENAR YA QUE ESTE NO SE DEJA PEGAR EN LOS DOCUMENTOS.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(116,'Juliana ','Gaviria Gallego','CC','1036779010','Jgaviria010@misena.edu.co','1036779010','Práctica','3','Tecnológo en coordinación de escuelas de música','Tecnología','2425435','2023-07-03','Freddy Alberto Ochoa Giraldo','Faochoa54@misena.edu.co','Ninguno',NULL,NULL,NULL,'°',NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1az33PGiB20JNFXdpy9PVPpozUKQUGIFw/preview','Envío los documentos requeridos para iniciar mi etapa práctica muchas gracias. ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(117,'Sofía ','Angarita López','TI','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Apoyo de sostenimiento Sena','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100',NULL,'Laura María Morales Estrada','Directora ','3104006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1mzaE4VM7NoL_xeQ3aOqKWqkCqr8iWu6-/preview','No','Pendiente','2023-09-08 15:53:08','Admin Admin'),(118,'Esteban ','Gaviria Patiño','CC','1017197062','esteban_gaviria@soy.sena.edu.co','3046456222','Lectiva','4','Técnica en Carpintería','Técnico','2672203','2023-10-23','ANTONIO DE PADUA MONSALVE VELASQUEZ','amonsalvev@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1ueb1HRTvYvbXdEsMzPlUHkSjYo9_77Ir/preview','Gracias por tener en cuenta mi perfil','Pendiente','2023-09-08 15:53:08','Admin Admin'),(119,'Cristian Camilo ','Hincapié Gómez ','CC','1007251240','Cristiancamiloh3@gmail.com','3185439882','Práctica','5','Gestión Empresarial','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez','Alvarozco@misena.edu.co','Ninguno','800022367-4','Fundación Socya ','Calle 84 sur #33 -65',NULL,'Alvaro Perez ','Director de negocios ','3013358632','aeperez@socya.org.co','La empresa','https://drive.google.com/file/d/1qRdhRpYAEmN5S4-lkI6Tyt9CqrWzckIw/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(120,'Jycela ','ColoradoSanchez ','CC','1007251240','Jycecolosanchez@gmail.com','3219607416','Práctica','5','Gestión Empresarial ','Tecnología','2395953','2023-04-05','Alvaro Orozco Velez','Alvarozco@misena.edu.co','Ninguno','830511773','BRM S.A.S','Carrera 42 # 31 -20 ',NULL,'Ana Maria Henao Lopera','Shift Managger ','3222725281','ana.henao@brm.com.co','La empresa','https://drive.google.com/file/d/1diw6bgHSZ_nOKZaSxuzHi7FpGRnIq2cy/preview','N/A','Pendiente','2023-09-08 15:53:08','Admin Admin'),(121,'Luisa Fernanda','Galeano Gutiérrez','CC','1040738829','ludecieloazul@gmail.com','3245171763','Lectiva','1','Gestion de la Seguridad y Salud en el Trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','901677097-8','Nannys House Keeping','Cra 50 N° 52-22 #507 La Candelaria',NULL,'Olga Lucía Gallego Giraldo','Coordinadora de Gestión Humana','3028691769','selección@housekeeping.com','La empresa','https://drive.google.com/file/d/1G3QWezyzlubnS67Z2ExHGVzo6xX7ODlq/preview','.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(122,'Jesus Ernesto','Velazco Ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Gestión de la Producción Industrail','Tecnología','2340322','2022-12-04','Conrado Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina S-A:S','Carrera 80C # 32 EE - 8',NULL,'Marie Moncada','Gerente Administrativa','3142046398','marie.suplimax @gmail.com','La empresa','https://drive.google.com/file/d/10QNfWjC-qTIHqwc46py7gOhh03AL9kHI/preview','No dejo enviar los demas archivos ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(123,'YESSICA LILIANA','Duque Rios','CC','1036630790','yessika.duque@hotmail.com','3218526482','Lectiva','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-12-17','MARIBEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','890903938','BANCOLOMBIA','DIRECCION GENERAL CRA 48 # 26 85',NULL,'JOHN EDWAR RUIZ HERNANDEZ','JEFE DE SECCION','4041213','JOHRUIZ@BANCOLOMBIA.COM.CO','La empresa','https://drive.google.com/file/d/12Es1JZkVVuEt_qFkGXqgMNuwxmGomHIn/preview',' Me ha sido imposible adjuntar los dos archivos, por ende adjunto el enlace, allí podrán encontrar la información https://docs.google.com/spreadsheets/d/1wC98UgoEARCfIZ1AXnXm0OxmZS5kXd7k/edit?usp=drive_link&ouid=112554897522813390418&rtpof=true&sd=true','Pendiente','2023-09-08 15:53:08','Admin Admin'),(124,'Luisa Fernanda','Galeano Gutiérrez','CC','1040738829','ludecieloazul@gmail.com','3245171763','Lectiva','1','Gestión de la Seguridad y Salud en el Trabajo','Tecnología','2453820','0023-07-24','Ricardo Estrada Herrera','restrada3@misena.edu.co','Ninguno','901677097-8','Nannys Hose Keeping','Cra 50 N° 52-22 # 507 La Candelaria',NULL,'Olga Lucía Gallego Giraldo','Coordinadora Gestión Humana','3028691769','seleccion@housekeeping.com','La empresa','https://drive.google.com/file/d/1AtMDaFAlU2dNzT_vZ9CsS1C2BIiOCVuA/preview','La etapa lectiva finaliza el 24 de Julio de 2023, pero ya tengo todos los resultados aprobados incluido inglés','Pendiente','2023-09-08 15:53:08','Admin Admin'),(125,'Katherine','Montoya Avendaño','CC','1152469410','katherine.montoya99@gmail.com','3113171720','Práctica','5','Producción multimedia ','Tecnología','2340414','2022-12-02','Oscar Alfonso Vivas ','Oavivas60@misena.edu.co','Ninguno','901607898','Immaginaziones S.A.S','Kilometro 21 autopista norte - Centro logístico',NULL,'Juan David Sepulveda Escobar ','Coordinador de mercadeo ','3003029898','Mercadeo@dispartes.com ','La empresa','https://drive.google.com/file/d/1HHXW0GePTEsLqn8gu8UHZi75p-EKvjJt/preview','No puedo adjuntar el certificado ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(126,'Ana Sofía ','Osorio moreno ','TI','1018233020','anasofiaosoriomoreno0418@gmail.com','3052631385','Práctica','3','Dibujo arquitectónico ','Técnico','2670216','2023-05-07','Juana David Acevedo ','jdacevedoa@misena.edu.co','FIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/19gxw539fWNvCVpjiUUokkwIILpKUzo7c/preview','Gracias ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(127,'rolando jose','guerreo sampayo','CC','1043668080','rjguerrero0@misena.edu.co','3202720874','Práctica','3','analisis sistemas de informacion','Tecnología','2251309','2022-09-02','Edward lopera','elopera@misena.edu.co','Ninguno','9007683733','grupo hoteles',' CALLE 47 45 47, MEDELLIN, ANTIOQUIA',NULL,'anderson lopez','gerente','3194070907','programacion@grupo-hoteles.com','La empresa','https://drive.google.com/file/d/1TfMMxYsBfulO5kW7v9TsDWSwanBxlL0h/preview','ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(128,'DANIELA ','AGUDELO PIZARRO','CC','1040745821','danielaagudelopizarro@gmail.com','3194894947','Lectiva','5','Gestión Empresarial','Tecnología','2562425','2023-12-03','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','901428728-1','HI BARF SAS','CALLE 37SUR 43A 18',NULL,'HILDERLENY RESTREPO','ADMINISTRADORA','3156740939','hibarfsas@gmail.com',NULL,'https://drive.google.com/file/d/1webtFkTNB5RnJRC4KAZ_2DeuAdrguz-h/preview','Muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(129,'Jesus Ernesto','Velazco ventura','PEP','5335085','jvelazcov@gmail.com','3057614304','Práctica','5','Tecnologia en Gestion de la Producción Industrial','Tecnología','2340322',NULL,'Conrado Sosa','casosa5@misena.edu.co','Ninguno','9007380898','Suplimax Andina SAS','Carrera 80C#32EE-8',NULL,'Marie Moncada','Gerente Administrativa','3207022389','marie.suplimax@gmail.com','La empresa','https://drive.google.com/file/d/14scRAfq8tOxg2Ss0QADR41VDcGoNgJyK/preview','Muchas Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(130,'Abril Angélica','Betancur Muñoz','CC','52502042','squattershostelrock@gmail.com','3203784670','Lectiva','5','Tecnólogo en coordinación de escuelas musicales','Tecnología','2511135','2023-12-15','Jorge López','jorge.lopez1@udea.edu.co','Ninguno','900143296-4','Colegio Gabriel Betancourth Mejía','Carrera 87a#6a-23 Tintal Bogotá',NULL,'Laura Andrea Ruiz','Coordinadora Académica','3202068975','coldigabemjia@educacionbogota.edu.co','La empresa','https://drive.google.com/file/d/1j1HzZ8JLaIlrSm0NUR0cccn8iDagE1m1/preview','Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(131,'John Esneider','Moreno Monsalve','CC','1035435953','johnesmoreno14@gmail.com','3016383274','Práctica','3','Tecnológo en Decoracion de Espacios Interiores','Tecnología','2183836','2022-04-01','Juan Esteban Arias García','jeariasg@sena.edu.co','Ninguno','No aplica','No aplica','No aplica',NULL,'No aplica','No aplica','No aplica','No aplica',NULL,'https://drive.google.com/file/d/1QX_e8Jnp6mTskvBAfZR2KdmJVzWJEtSF/preview','No aplica','Pendiente','2023-09-08 15:53:08','Admin Admin'),(132,'Leidy Alexandra ','Guarin Mena ','CC','1152444871','Alexagm.hse@gmail.com','3206829279','Práctica','3','decoracion de espacios interiores ','Tecnología','2395917','2023-07-05','Mauricio Sanchez','msanchezm@sena.edu.co','Apoyo de sostenimiento Sena','NA','NA','NA',NULL,'NA','NA','NA','NA',NULL,'https://drive.google.com/file/d/1giNip0Q1Kc3AJZlE7PaUjzzJOEjyTHyx/preview','Na','Pendiente','2023-09-08 15:53:08','Admin Admin'),(133,'Rolando jose','guerrero sampayo','CC','1043668080','rjguerrero0@misena.edu.co','3202720874','Práctica','3','analissi sistemas de informacion','Tecnología','2251309','2022-12-12','edward lopera','elopera@sena.edu.co','Ninguno','9007683733','grupo hoteles ',' CLL 47 # 45 - 47',NULL,'anderson lopez','gerente','3194070907',NULL,'El SENA','https://drive.google.com/file/d/1IazLwBooZNkaZnuqx1Uakci0h1yB_LZ4/preview','anexe todo en muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(134,'Yeimy Yulieth','Cañola Sabas','CC','21981123','canolayulieth@gmail.com','3116073884','Lectiva','5','Gestión Empresarial','Tecnología','2562425','2023-12-08','Maribel Rodriguez Rave','mrodriguez94@misena.edu.co','Ninguno','890917141-6','Seguridad Atempi de Colombia Ltda','Calle 16B SUR #42-97',NULL,'Carolina Jiménez Moncada','Gerente de Marca y Alianzas Estratégicas','4486110','carolina.jimenez@atempi.co','La empresa','https://drive.google.com/file/d/1rU244GEQbwLrLfE_-rDysbet-boqt59r/preview','Gracias, atenta a sus importantes comentarios.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(135,'Sofía ','Angarita López','CC','1033486143','sofii.angarita@gmail.com ','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-08','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo mundo de juegos ','Calle 49#26-10, Barrio San Juan - Copacabana ',NULL,'Laura Maria Morales Estrada ','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1v_beFBJj8bb9SX6yuVUcZMLmdueHfU2Y/preview','La modalidad de practicas que elegí es pasantía ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(136,'NATALIA MARCELA ','BEDOYA BETANCUR ','CC','1047968638','NATYBEDOYA201504@GMAIL.COM','3135960687','Práctica','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-01-17','MARIBEL RODRIGUEZ','MRODRIGUEZ94@MISENA.EDU.CO','Ninguno','9001387591','INDUSTRIAL DE POMOS SA','CRA 51 B 12 SUR 90',NULL,'JUAN MORENO ','GERENTE GENERAL ','3013761030','ASISTENTE@INDUSTRIALDEPOMOS.COM.CO','La empresa','https://drive.google.com/file/d/1pXiR1fbpUQAd3wNOl1nuC3KUgNRibh17/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(137,'Sara','Gavira Rua','CC','1025881899','gaviriaruasara25@gmail.com','3005377289','Práctica','4','Dibujo Arquitectonico','Técnico','2623140','2023-03-24','William David Tibavija','wtibavija@sena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/100OiypsmW3EZ751TrqOo6mfmhEk7Ka09/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(138,'Sara ','Gaviria Rua ','CC','1025881899','gaviriaruasara25@gmail.com','3005377289','Práctica','4','Dibujo Arquitectonico','Técnico','2623140','2023-03-23','David Francisco Martinez Padilla','davidfm19@misena.edu.co','Apoyo de sostenimiento Sena',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/12daP4EbIlOfSd5Wz5tJyfA47Qvf163Mu/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(139,'LAURA',' ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','TECOLOGIA EN GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-18','MARIBEL RODRIGUEZ RAVE','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6','EMPRESA DE DESARROLLO URBANO','L -194, Cra. 49 #44-94, La Candelaria, Medellín, Antioquia',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN CONTRACTUAL','3137445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1p8a4t0WbtzWgZhVRlwCX3laxkcMyigL5/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(140,'yurani andrea',' zapata lopez','CC','1020460732','yazapata.pyg2021@gmail.com','3144705186','Lectiva','3','gestion de la seguridad y salud en el trabajo','Tecnología','2453820','2023-07-01','Ricardo estrada','restrada3@misena.edu.co','Ninguno','000000000','no aplica','no aplica',NULL,'no aplica','no aplica','no aplica','no aplica','El SENA','https://drive.google.com/file/d/1GPBn0_SCiAhHXPD1FLxczgClVQreOD9J/preview','los documentos no permiten ser adjuntados ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(141,'Katherine','Montoya Avendaño','CC','1152469410','kmontoya014@misena.edu.oc','3113171720','Práctica','5','Producción multimedia ','Tecnología','2340414','2022-12-02','Oscar Alfondo Vivas ','oavivas60@misena.edu.co','Ninguno','901607898','Immaginaziones S.A.S','Kilometro 21 autopista norte - Centro logístico',NULL,'Juan David Sepulveda Escobar','Coordinador de mercadeo ','3003029898','Mercadeo@dispartes.com ','La empresa','https://drive.google.com/file/d/1z_8M4h0n5rb8c1uhIMDepTusJUQ1ZM-N/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(142,'Jonathan Camilo','Piedrahita Cadavid','CC','1037573243','jonathan05862011@gmail.com','3013730175','Práctica','1','Gestión Empresarial','Tecnología','2280414','2022-10-28','Heduan Henry Ospina','hehospina@sena.edu.co','Ninguno','860,069,229','Colmundo Radio','calle 46# 78a 09',NULL,'Linda Catalina Correa ','Coordinadora Regional ','3024116822','linda.catalinacorrea1986@gmail.com','La empresa','https://drive.google.com/file/d/1-hFiBQTuxdI4XdfWrkcdg9F3LYoq9G83/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(143,'Sofía ','Angarita López ','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de Escuelas de Música ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100 Barrio San Juan, Copacabana ',NULL,'Laura María Morales Estrada ','Directora','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1588nbZ6G2_wPyvAUrjWMfy4b_ItQ8wGV/preview','Ya los resultados de aprendizaje pendientes están aprobados ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(144,'Daniel Jacob','Salgado González','CC','1036665524','daniel-9607@hotmail.con','3218939386','Lectiva','5','Tecnólogo en Gestión Empresarial','Tecnología','2453777','2023-08-01','Juan Camilo Chavarría Grajales','jcchavarria4@misena.edu.co','Ninguno','890929647','Químicos y Plásticos Industriales Sas','Calle 48 C Sur # 43 A - 291',NULL,'Miguel Humberto Rodriguez Cespedes','Jefe de Logística','6044443560','mrodriguez@quimicoplasticos.com',NULL,'https://drive.google.com/file/d/1FzySXuY0a52YTSggcoT4-UmtzBa8_Ae5/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(145,'John Esneider','Moreno Monsalve','CC','1035435953','johnesmoreno14@gmail.com','3158080904','Práctica','3','Decoración de espacios interiores','Tecnología','2183836','2022-04-08','Juan Esteban Arias','jeariasg@sena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1p2cEzgHbLfM4L4iX83w6SYg_SnoXqfLt/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(146,'monica yuliana ','Murillo ossa','CC','1040740657','monikevelyn1708@gmail.com','3244744097','Práctica','1','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2340243','2022-11-30','wilmar munera','wamunera@sena.edu.co','Ninguno','901.048.954-7','montacarga dinastía','car 50 n 37-22 Itagüí Antioquia',NULL,'Wilson mejía Ocampo','gerente administrativo','2778837','montacargasdinasia@hotmail.com','El SENA','https://drive.google.com/file/d/1UlJALe9luAy-boT94k5UVQl9TLsZJZUR/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(147,'Heidy Tatiana ','Londoño Restrepo','CC','1018347766','londonorestrepoheidytatiana@gmail.com','3023446460','Lectiva','5','seguridad y salud en el trabajo','Tecnología','2535777','2023-10-24','Marta Cecilia Henao','martachl@misena.edu.co','Ninguno','900725119','Hidrosanitarias JZZ','CALLE 57 127 111 110',NULL,'JORGE ZAPATA ','GERENTE ','3225853484','jorgezapata@gmail.com','La empresa','https://drive.google.com/file/d/1o3LgEtjFFgot3QbLtxpxc8AW9ayH6WVk/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(148,'Mariana','Rivera Zuleta','CC','1040738620','riveramariana722@gmail.com','3105520105','Práctica','1','Seguridad y salud en ele trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada','restrada3@misena.edu.co','Ninguno','901594893-7','Delicarnes -porcionados SAS','Carrera 89 -47 DD 52 INT 101',NULL,'Jhoana Montoya Mendoza','Gerente General','3008855772','delicarnesporcionados@gmail.com','La empresa','https://drive.google.com/file/d/1AGpCh9biwg8P46EX2QX2S9if6bUmLmJo/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(149,'MARYBEL','GARCIA LOPEZ','CC','1000305330','mgl.2003dreams@gmail.com','3127972018','Práctica','3','DECORACIÓN DE ESPACIOS INTERIORES','Tecnología','2071532','2021-08-18','JUAN DAVID ACEVEDO','jdacevedoa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1ZCa2VknBSoIEeYz4zftC8LKs5HxgxEaA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(150,'Monica Yuliana','Murillo Ossa','CC','1040740657','monikevelyn1708@gmail.com','3244744097','Práctica','1','Sistema de gestion de seguridad y salud en el trabajo','Tecnología','2340243','2022-11-30','Wilmar Munera','alemuve@gmail.com','Ninguno','901.048.954-7','Montacargas Dinastia','cra 50 d #27-32 Yarumito Itagüí',NULL,'Wilson Mejía Ocampo','Gerente administrativo','2778837','montacargasdinastia@hotmail.com','El SENA','https://drive.google.com/file/d/1GrAXuFPLeKtoiGF0xHh5pKSPQKDzrhtB/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(151,'Sofía ','Angarita López ','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de musica ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro educativo Mundo de juegos ','calle 49 #26-100 Barrio San Juan - Copacabana ',NULL,'Laura Maria Morales Estrada','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/12lSRbyJCDuQSX9WnZXWIjUoEeCS-1U_J/preview','Ya están aprobadas las competencias de ingles ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(152,'LAURA','ATEHORTUA MONCADA','CC','1000654281','lau540890@gmail.com','3157647609','Lectiva','5','GESTIÓN EMPRESARIAL','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave ','mrodriguez94@misena.edu.co','Ninguno','800.223.337-6 ','EMPRESA DE DESARROLLO URBANO (EDU)','CARRERA 49 N° 44-94 PARQUE SAN ANTONIO',NULL,'DIANA CRISTINA OROZCO MONTOYA','DIRECTORA DE GESTIÓN PREDIAL','313 7445767','diana.orozco@edu.gov.co',NULL,'https://drive.google.com/file/d/1gDGW_HAUBGQXEchieKjQMxB2-vqFyRFG/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(153,'Ramirez Arroyave','Luisa Maria','CC','1152199937','luisa.ramirez9991@misena.edu.co','3103102535','Práctica','4','técnico en recursos humanos','Técnico','2425407','2022-07-05','Ana Solis Leal','asolis3@misena.edu.co','Ninguno','8999990341','centro mobiliario sena','calle 63 #58b 03',NULL,'Jorge Ivan Quiroz Valencia','tecnico 2','3104220459','jeariasg@sena.edu.co','El SENA','https://drive.google.com/file/d/1n0g77BcCLhYjbwdboyz_DrUtFu54BXb0/preview','realizo la inscripción en un café internet, puesto que desde mi correo no me permitía montar el archivo, mi correo es luisa.ramirez9991@misena.edu.co','Pendiente','2023-09-08 15:53:08','Admin Admin'),(154,'Mariana','Rivera Zuleta','CC','1040738620','riveramariana722@gmail.com','3105520105','Lectiva','1','Seguridad y salud en el trabajo','Tecnología','2453820','2023-07-24','Ricardo Estrada','restrada3@misena.edu.co','Ninguno','901594893-7','Delicarnes-Porcionados SAS','CR 89 - 47 DD 52 INT 101',NULL,'Johana Montoya Mendoza ','Gerente General','3008855772 - 589996','delicarnesporcionados@gmail.com','La empresa','https://drive.google.com/file/d/17xc9otr-v0ToRipjw_9c1CNPbTiffgTK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(155,'Kenier Gonzalo','Alvarez Benitez','CC','1039449741','kenierg.alvarez@gmail.com','3217913492','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2142180','2022-08-02','Cristian David Jamanoy','cjamanoyd@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1dfBe8twVUhzkUX82XQigaVz69bWxR-Yx/preview','Esta propuesta esta conformada con otro integrante de la misma ficha para realizarlo en pareja mil gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(156,'John Alexander ','Morales Cardona','CC','11278453777','jamzari.v@gmail.com','3116889931','Práctica','3','Gestión de la seguridad y salud en el trabajo','Tecnología','2142180','2022-08-02','Cristian David Jamanoy','cjamanoyd@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1c87XYa__gcH6YbkqpMaxAf2I96TaJ9jR/preview','esta propuesta esta diseñada para presentarla en equipo con un compañero de ficha ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(157,'Leydi Tatiana','Sanchez Perez','CC','1040743146','tatisanchez880@gmail.com','3013717708','Práctica','5','Gestion empresarial','Tecnología','2562425','2024-01-17','Maribel Rodriguez','mrodriguez94@misena.edu.co','Ninguno','811043859','C.I Pack Blue','Cra 48 # 75 a 37',NULL,'Sonia Alzate','Contadora ','3743637 ext 125','Contabilidad@colorblue.com.co','La empresa','https://drive.google.com/file/d/1Fz-u-NE6Dfawfclbm2n5Lpe-3u1GicXH/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(158,'miguel johan','romero pitta','CC','13176401','mjromerop7@gmail.com','3105820232','Práctica','3','coordinación de escuelas de musica','Tecnología','2425435','2023-06-04','freddy alberto ochoa giraldo','faochoa@sena.edu.co','Ninguno','no aplica','no aplica','no aplica',NULL,'no aplica','no aplica','no aplica','no aplica','El SENA','https://drive.google.com/file/d/1VdY0zR_IfWicKj3EeR0thNVELNRrZzJA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(159,'Anyelis Maria','Narvaez Cervantes','CC','1005473188','anyeliskenworth@gmail.com','3004339608','Práctica','5','Recursos Humanos','Técnico','2611739','2023-03-27','Sandra Patricia Diaz Franco','sdiazf@sena.edu.co','Ninguno','1040261079','Abastos y legumbres el laguito','Carrera 9# 24f Sincelejo Sucre ',NULL,'Yovani Andres Arias Gonzales ','Recursos humanos','3217287133','Abastosylengunbres@gmail.com','La empresa','https://drive.google.com/file/d/1StsKkdRbbs41YQ6z3MATIVfln0LjZmxz/preview','Cambio de modalidad de practica.','Pendiente','2023-09-08 15:53:08','Admin Admin'),(160,'Arley De Jesus','Alvarez Alvarez','CC','1216716400','arleyde450@gmail.com','3145324827','Práctica','1','Produccion Multimedia','Tecnología','2232449','2022-05-20',' DANIEL FELIPE VARGAS MORENO ','dfvargas07@misena.edu.co','Ninguno','900.382.580-3','ENJOY SPORTS WEAR S.A.S','Diagonal 74 c # 32 EE - 92 ',NULL,'Kevin Garcia ','Director de mercadeo','3012270038','mercadeo@enjoysportswear.com.co','El SENA','https://drive.google.com/file/d/1HfIpaQ4n-H3-pvTGXh6qFo9mw7g2kUla/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(161,'Santiago Antonio','Serna Toro','CC','1088319076','saserna67@misena.edu.co','3184982489','Práctica','1','Tecnología en Producción Multimedia','Tecnología','2281774','2022-09-28','MONICA PATRICIA VASQUEZ CORREA','mpvasquez@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,'Edwin Alberto Quintero Sanchez',NULL,'315 7130873',NULL,'El SENA','https://drive.google.com/file/d/1bc4Yni0Azp1IN2MMDtMbxVgSp7elY04j/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(162,'Valentina','Ramirez Uribe','CC','1193511091','valentinauribe0906@gmail.com','3107429247','Práctica','1','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2142193','2022-12-09','Cristian Jamanoy','cjamanoyd@misena.edu.co','Ninguno','900.391.169-7','PROINTOL S.A.S','calle 26 sur # 19 b 38',NULL,'Orlando Vargas Rodriguez','Representante legal','3178666352','ingenieria@prointol.com','La empresa','https://drive.google.com/file/d/1kvk7ainVkzuF5F0M9BjKMy04NCRD-g-7/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(163,'yolanda','rios cardona','CC','43905369','yolandarios502@gmail.com','3186124765','Práctica','3','SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2280372','2022-09-30','SANDRA IRIS ','siescobar0@misenaedu.co','Ninguno','0','0','0',NULL,'0','0','0','0','El SENA','https://drive.google.com/file/d/1R3HegNwyNd0D4kNFPvn3vxgF7xvTl1TQ/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(164,'yaqueline','bedoya galeano','CC','1017241792','emily.30enero@hotmail.com','3102311773','Práctica','3','seguridad y salud en el trabajo','Tecnología','2280356','2022-10-29','jenny carvajal ','gdcarvajal7@misena.edu.co','Ninguno','0','0','0',NULL,'0','0','0','0','El SENA','https://drive.google.com/file/d/15sYeRC9y1V3iY3Oe_MOLHrrsQLWm6fTa/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(165,'Jessica Alejandra ','Higuera Rodriguez','CC','1000287663','jessialejahr@gmail.com','3193651122','Práctica','5','Producción multimedia','Tecnología','2176100','2024-02-28','Juan David Rios Ramirez','jdrios15@misena.edu.co','Ninguno','901496703','WorkPress SAS','Cra 15 #22 26',NULL,'Juan David Betancurt Zamora','Asistente de producción audiovisual ','3227701097','Betajuanda.200@gmail.com','La empresa','https://drive.google.com/file/d/1o90d8eN2ITnDNEFLI3WmwuFUEYIyjYeE/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(166,'Sofía ','Angarita López','CC','1033486143','sofii.angarita@gmail.com','3103179667','Práctica','1','Coordinación de escuelas de música ','Tecnología','2425435','2023-07-05','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','1 0 2 0 4 5 8 6 3 0','Centro Educativo Mundo de Juegos ','Calle 49 #26-100 Barrio San Juan - Copacabana ',NULL,'Laura María Morales Estrada','Directora ','310 4006749','lauramariamoralesestrada@gmail.com','El SENA','https://drive.google.com/file/d/1CjrYYFFRzqZ5zl8ksvgAv3Y5VOrjmHkG/preview','Ya están arreglados los pendientes de inglés ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(167,'EVER ANDRES','MONSALVE ZAPATA','CC','71277627','eversofy@hotmail.com','3234929142','Lectiva','5','GESTION EMPRESARIAL','Tecnología','2562425','2024-01-17','MARYBEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','860002964','BANCO DE BOGOTA','CR 43 A # 9 SUR 91',NULL,'BEATIRZ ELENA MOLINA','GERENTE ADMINISTRATIVA','6046045700','agalean@bancodebogota.com.co','La empresa','https://drive.google.com/file/d/1RiRTZK2OMgAdqQgwrYN228Fc0ifdrCMK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(168,'CARLOS ALBERTO','SANCHEZ TORO','CC','71374283','saludocupacionalcmj@gmail.com','3106331857','Práctica','4','TECNICO EN CARPINTERIA','Técnico','2611702','2023-05-08','GERMAN DE JESUS VILLEGAS JARAMILLO','gdvillegas4@misena.edu.co','Ninguno','899.999034-1 ','SENA','Cl. 63 #58B-03, Terranova, Itagüi, Antioquia',NULL,'MOISES TOR','INSTRUCTOR','3167974959','moisest1894@hotmail.com','El SENA','https://drive.google.com/file/d/19qTxWtic96p56JU--aXGirTV6RfiG1Ts/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(169,'Andres Jose ','Mandon Cueto','CC','1091665515','ajmandonc@ufpso.edu.co','3185888497','Práctica','3','Coordinación de Escuelas de Música','Tecnología','2425435','2023-06-04','Freddy Alberto Ochoa Giraldo ','faochoa@sena.edu.co','Ninguno','No aplica','No aplica','No aplica ',NULL,'Andres Jose Mandon Cueto','No aplica ','No aplica ','ajmandonc@ufpso.edu.co','El SENA','https://drive.google.com/file/d/18WP_ezvri43f4WQPCwYTTQNzo_BrF4xG/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(170,'Carlos Roberto',' Moya Vélez','CC','71388614','moyacuerdas@gmail.com','3147510554','Práctica','1','Técnico en elaboración de Violín y Viola','Técnico','2425603','2023-01-03','jJosé Ricardo Cárdenas','jrcardenas@sena.edu.co','Ninguno','890.916.911-6','Fundación Incolmotos Yamaha','cl 37 # 45-65 piso 2',NULL,'juan Gonzalo Saldarriaga','Jefe servicio técnico. Vientos','2321316','jgsaldar@incolmotos-yamaha.com.co','El SENA','https://drive.google.com/file/d/1Jdcbwbf5mr53u2iP6jalH2evqzdPNZe-/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(171,'Proyecto Productivo','garcia quintero','CC','1035440841','diegogarcia0910@hotmail.com','3147713429','Práctica','5','gestion de la produccion industrial ','Tecnología','2236486','2022-07-24','John Alejandro Jiménez Sánchez','alejandrojsa@misena.edu.co','Ninguno','900.952.713-2','ONE CONSULTANTS S.A.S','carrera 47f # 80 sur 17',NULL,'maria isabel arango ','jefe de planeacion','310 4981655','maria.arango@vacompanyinc.com',NULL,'https://drive.google.com/file/d/1tzGNKs4-DB0dywty8-Hgi_3nmOWzIG1f/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(172,'juan pablo','uribe perez ','CC','1036600845','juanpablouribeperez6@gmail.com','3502826268','Práctica','3','gestion de la produccion industrial','Tecnología','2340322','2023-01-16','conrrado alcides','casosa5@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1PZk5t4aDuMPyd7ky-P_n-FhPPXWisGTy/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(173,'CARLOS ALBERTO','SANCHEZ TORO','CC','71374283','saludocupacionalcmj@gmail.com','3106331857','Práctica','4','TECNICA EN CARPINTERIA','Técnico','2611702','2023-05-08','GERMAN DE JESUS VILLEGAS','gdvillegas4@misena.edu.co','Jóvenes en Acción','899-999-034-1','SENA','CALLE 63 # 58B-03',NULL,'MOISES TORO','INSTRUCTOR','3167974959','moisest1894@hotmail.com','El SENA','https://drive.google.com/file/d/1XCA7SZ-JsCY56fR4851abNZM5i3oziY9/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(174,'Manuela','Muñoz Sanchez','CC','1002127246','manuelamunozsanchez94@gmail.com','3235926432','Práctica','1','tecnoligia en sistema de gestion de la seguridad y salud en el trabajo ','Tecnología','2380038','2022-12-03','Elsy Puerta ','epuerta63@misena.edu.co','Ninguno','21439038-1','jugos lalo','Bolombolo - Venecia ',NULL,'María Victoria Martínez Garcés ','gerente ','3106358955','mariapecas2013@hotmail.com','El SENA','https://drive.google.com/file/d/1Mgth_WKvV9CnBWZq6DP7rAxuALWgEczk/preview','la empresa no me pagara la ARL','Pendiente','2023-09-08 15:53:08','Admin Admin'),(175,'Angie alejandra ','villarreal patascoy ','CC','1085348097','angiepatascoy@gmail.com','3118872277','Práctica','1','Tecnólogo en Producción Multimedia','Tecnología','2374664','2023-02-02','Mónica patricia Vázquez correa','mpvasquez@misena.edu.co','Ninguno','901600306-1','iglesia centro internacional vida nueva','calle 9 A #18 A- 03 BARRIO ATAHUALPA AV. PANAMERICANA CIUDAD DE PASTO',NULL,'Carlos Mario Gonzales luna ','coordinador de la área de producción ','3186107702','admvidanueva3@gmail.com','El SENA','https://drive.google.com/file/d/1xNHOZ-y_uI1StwHUTG0eews46uWqrleC/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(176,'JENNY PAOLA ','CACERES LONDOÑO','CC','1054548652','caceresjenisita@hotmail.com','3147622477','Práctica','3','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología','2142180','2022-08-02','CRISTIAN JAMANOY','CJAMONAYD@MISENA.EDU.CO','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1gnkptt6GvzvVRe8HWatqS6yVPXVwqaQ8/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(177,'Julieth Natalia ','Agudelo Patiño','CC','1128450601','rodri-nata@hotmail.com','3147676848','Práctica','5','sistema de gestión de seguridad y salud en el trabajo','Tecnología','2535777','2023-10-23','Marta Cecilia Henao','martaceci-henao@hotmail.com','Jóvenes en Acción','91467186-4','QUALITY SST S.A.S','pobado',NULL,'Melisa Tabares','Jefe inmediato','3013356868','qualitysst.sas@gmail.com','La empresa','https://drive.google.com/file/d/1WGLA_Mpl059p3phfnUY1_EEwbKRPagJN/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(178,'Yuliana Andrea','Echavarria Balvin ','CC','1037592075','andrea021983@hotmail.com','3205073028','Lectiva','5','Gestión de la Producción Industrial','Tecnología','2562435','2023-11-28','Conrado alsides Sosa','casosa5@misena.edu.co','Ninguno','890902165-7','Laboratorios Laproff S.A.S','Cra 43 A 61 sur 84 Sabaneta Antioquia',NULL,'Oscar Arcesio','Jefe Inmediato','6043227980','WWw.laproff.com',NULL,'https://drive.google.com/file/d/1IOhqYPCWKd2x9ObYrp3S8W7fYIARY0-O/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(179,'Daniela Isabel ','Gutiérrez torres ','CC','1081212951','danitg614@gmail.com','3054633053','Práctica','1','Gestión de mercados','Tecnología','2281645','2022-10-14','Claudia Janeth Restrepo Restrepo ','cjrestrepo@misena.edu.co','Jóvenes en Acción','900675626','Classic jeans shop s.a.s','Calle 46#52-39',NULL,'Aminta Pacheco ','Administradora ','3013073662','amintapacheco@yahoo.com','La empresa','https://drive.google.com/file/d/1Q_gxAVMCb2G8d1E9oj8cHWWaswF5HJFH/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(180,'Adriana patricia','robledo Chaverra ','CC','1045493448','aparocha21@gmail.com','3219716654','Práctica','5','gestión logística ','Tecnología','1881624','2020-12-15','Yuli milena Acevedo Arroyave','yulimilena@misena.edu.co','Ninguno','1045493448-2 ','autoservicio el caporo','turbo Antioquia ',NULL,'Adriana robledo ','administradora ','3219716654 3106681037','aparocha21@gmail.com ',NULL,'https://drive.google.com/file/d/1nD1H1PfvdRLesPNN890atyUnWvLRvnUl/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(181,'Yeison Arbey','Berrio Pulgarin','CC','1152215606','yaberrio60@misena.edu.co','3147661666','Práctica','5','Tecnología en gestión de la producción industrial','Tecnología','2453890','2023-07-24','Diego Armando Martinez Garcia','da42@misena.edu.co','Ninguno','901550344','TULUM BRANDS INTERNATIONAL S.A.S..','cl 57 43 47 ',NULL,'Alejandro lancheros','Jefe de producción','312 4711810','alejandro.lancheros@tulumfashions.com',NULL,'https://drive.google.com/file/d/1f-nB7A0CbEN9tWdNxrU-JJwAnEHOXmry/preview','Pendiente carta de cambio de las practicas','Pendiente','2023-09-08 15:53:08','Admin Admin'),(182,'JULIO CESAR','ZAPATA CORREA ','CC','1033653694','juliocesar12.jczc@gmail.com','3013723978','Práctica','5','Gestión de la producción industrial','Tecnología','2340322','2023-01-14','Conrado Alcides Sosa Zapata ','cososa@misena.edu.co','Ninguno','890907241','ESE HOSPTAL LA MERCED','CALLE 49 # 36 - 298',NULL,'JUAN FERNANDO BERMUDEZ','JEFE INMEDIATO,FINANCIERO ','3137543079','difinanciera@hlamerced.gov.co','La empresa','https://drive.google.com/file/d/1Mx7ZjIfgfiWVUgPlIiFSnCWSKXbSK56X/preview','BUENOS DIAS ME PERMITO DIRIGIRME POR ESTE MEDIO YA QUE VOY HA CONTINUAR LAS PRACTICAS POR EL MISMO METODO QUE SON PRACTICAS DE VINCULO LABORAL EN LA NUEVA EMPRESA MUCHAS GRACIAS QUEDO ATENTO... ','Pendiente','2023-09-08 15:53:08','Admin Admin'),(183,'Ivan dario','Yepes molina','CC','98713410','Ivanyepesmolina@gmail.com','3011830508','Práctica','5','Gestion de la produccion industrial','Tecnología','2340322','2023-07-18','Gloria patricia arboleda vargas','garboleda@sena.edu.co','Ninguno','890900281-4','Industrias Haceb S.A','Calle 59#55-80',NULL,'Santiago montoya castro','Lider UBN','3115998294','Santiago.montoyac@haceb.com','La empresa','https://drive.google.com/file/d/1ckF_m2M4t4LkQcO8fUvNHk6g0FvlhreK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(184,'David Alejandro','Olaya Osorio','CC','1036644661','olayaosorioalejandro@gmail.com','3132757524','Práctica','5','Tecnólogo en gestión en la seguridad y salud en el trabajo','Tecnología','2183818','2022-09-30','Cristian Jamanoy','cjamanoy@sena.edu.co','Ninguno','900411004-8','Perforaciones Voladuras Y Demoliciones S.A.S','CARRERA 67 # 71 - 79 - BARRIO EL VOLADOR',NULL,'Yurany castrillon','jefe de gestión humana','3128617922','pyv.yuranycastrillon@gmail.com','La empresa','https://drive.google.com/file/d/1BEoV67YlUQHaYJDXsynVuj8yXe0I2bKS/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(185,'Julieth Natalia','Agudelo Patiño','CC','1128450601','rodri-nata@hotmail.com','3147676848','Lectiva','5','sistema de gestion de seguridad y salud en el trabajo','Tecnología','2535777','2023-10-22','Marta Cecilia Henao','martaceci-henao@hotmail.com','Ninguno','901467186-4 ','Quality SST S.A.S','Estación estadio',NULL,'Melisa Tabares','Gerente General','301- 335- 68-68','qualitysst.gestionempresarial.com','La empresa','https://drive.google.com/file/d/1mCuqCK87maoe7z_uGYw9bJomIc6NZU4j/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(186,'LAURA ESTEFANIA','DIAZ QUEVEDO','CC','1019110293','LEDIAZ855@MISENA.EDU.CO','3105516151','Práctica','5','ANALISIS Y DESARROLLO DE SISTEMAS DE INFORMACION','Tecnología','2348202','2023-01-27','SANDRA PATRICIA ACUÑA GIRALDO','apagiraldo@misena.edu.co','Ninguno','901127220','F INICIATIVAS SAS (FI GROUP)','CR 12 NO. 90- 19',NULL,'KATHERINE MANRIQUE','MANAGER BUSINESS PERFORMANCE','6333007','laura.diaz@fi-group.com','La empresa','https://drive.google.com/file/d/1j2efWJsYDJomImxOCflJiNd5FtDIAqcZ/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(187,'PAULO ANDRES','SOLIS AGUDELO','CC','1114834537','aandreessolis@gmail.com','3186189537','Práctica','3','ANALISIS Y DESARROLLO DE SISTEMAS DE INFORMACION','Tecnología','2236489','2022-08-24','JUAN DAVID CARVAJAL','JDCARVAJAL04@MISENA.EDU.CO','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Sr4CFKrb9XXt8vMGSkIanQJR1DXBPqax/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(188,'Diana Carolina','Marulanda Jaramillo','CC','53006932','dicalop7@gmail.com','323 2038102','Práctica','5','Gestión Logística','Tecnología','2348324','2022-12-15',' Yuli Milena Acevedo Arroyave ','yulimilena@misena.edu.co','Ninguno','19406994 9','Zhoe ropa de mujer','carrera 13 #62 25 local 3',NULL,'Ricardo Sanchez Fernandez ','Gerente gerenal','310 8839729','ricardosanchezf@hotmail.com','La empresa','https://drive.google.com/file/d/13vl0f8o0epY_YIZtIRRMlLc6CIbfc0Ij/preview','Quedo atenta, Gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(189,'Camilo Alejandro','Silva Gómez','CC','1072706292','allonyx.ngs@gmail.com','3137392733','Práctica','3','Analisis Y Desarrollo de los SIstemas de Informacion (ADSI)','Tecnología','2068280','2022-10-26','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','No aplica','No aplica','No aplica',NULL,'No aplica','No aplica','3137392733','allonyx.ngs@gmail.com',NULL,'https://drive.google.com/file/d/1AEEl5LxwHEAjPhF2C2TNrXENUvJbM1XY/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(190,'Camilo Alejandro','Silva Gomez','CC','1072706292','casilva29@misenaeduco','3137392733','Práctica','3','Analisis y Desarrollo de los Sistemas de Informacion (ADSI)','Tecnología','2068280','2020-04-12','Edward Alexander Lopera Correa','elopera@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A',NULL,'https://drive.google.com/file/d/10pwIA9Ixpm4lFmnhKPSPONlVGKajkSaU/preview','Se inicio el desarrolo del proyecto formativo con los estudiantes Faiver Retrepo y Luis Carlos Guerrero Castro los cuales desistieron de la formacion y culminacion de proyecto productivo','Pendiente','2023-09-08 15:53:08','Admin Admin'),(191,'Daniel','Mosquera Zapata','CC','1214735856','ielv.9a@gmail.com','3003225368','Lectiva','5','Gestión de la producción industrial','Tecnología','2562435','2023-11-30','Conrado Alcides Sossa','casosaz@sena.edu.co','Ninguno','900981071','SI-3',NULL,NULL,'Isabel Velez','Coordinadora de cotizaciones-data-atención a planta','3117525189',NULL,'La empresa','https://drive.google.com/file/d/11RqdzziOWfcv1ri0UeHK5Q72Y-3pHFlE/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(192,'Ana Cristina','Mejía Mesa','CC','1037640761','anamejiamesa@gmail.com','3507354979','Práctica','3','Coordinación de Escuelas de Música','Tecnología','2425435','2023-07-31','Freddy Ochoa','faochoa54@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1gAbQSy3I9IXki-nPfj6G7aOoxccdq6OW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(193,'LORENA MARCELA','CARDENAS RODAS','CC','1042063259','lmcardenas668@gmail.com','3113456627','Práctica','5','GESTION EMPRESARIAL','Tecnología','2562425','2023-08-15','MARIVEL RODRIGUEZ','mrodriguez94@misena.edu.co','Ninguno','890911898','STOP SAS','CRA 59 A # 14-95',NULL,'ERIKA JULIETH CARMONA CANO','AUXILIAR DE COMPRAS','604-6041431 3015812224','ecarmona@stop.com.co','La empresa','https://drive.google.com/file/d/1wab6hZ9QfPlZZjsVY0aIKumYqGjxnuz7/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(194,'Juan David ','Gil Tiria ','CC','1035871214','juangt9510@gmail.com','3136184294','Práctica','3','Tecnologia en sistema de gestión de seguridad y salud en el trabajo ','Tecnología','2025257-2','2021-07-27','Díana Milena Gómez Mora','dmigomo@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1CHmgjW7QRVXjeJpVL--aM8R63hKJrlcR/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(195,'valeria','salgado benitez ','CC','1,000,653,919','benitezrodriguezyoris@gmail.com','3105124194','Práctica','1','sistema de gestión de la seguridad y salud en el trabajo ','Tecnología','2142180','2022-08-02','wilmar munera','alemuve@gmail.com','Ninguno','92,528,337','calzado la elegancia ','calle 11 número 3-26',NULL,'Édison sierra Orosco ','dueño','3205426991','luiyidiciembre2002@gmail.com','El SENA','https://drive.google.com/file/d/1_acP6hYjKRipzUxpNcZpRO7o74SXVJ57/preview','registro','Pendiente','2023-09-08 15:53:08','Admin Admin'),(196,'Juan Esteban','Diaz Villada','CC','1035970642','juanv123654@gmail.com','3053285078','Práctica','1','Decoracion de espacios interiores ','Tecnología','2453770','2023-07-25','Mauricio Sanchez Muñoz','msanchezm@sena.edu.co','Ninguno','900492390-2','Raul Gonzales Group SAS','Cra 111 A #148 50',NULL,'Raul Gonzales Rubiano ','Gerente General','3133570150','Raulgonzalezgroup2019@gmail.com','El SENA','https://drive.google.com/file/d/1uf0TWjUr-codnpQWyV1SbhjdItiQkyij/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(197,'Catalina ',' torres londoño ','CC','43191931','cata4851@hotmail.com','3016293913','Práctica','5','Seguridad y salud en el trabajo ','Tecnología','2562438','2024-10-17','Sandra iris Escobar Osorio ','siescobar0@misena.edu.co','Ninguno','900285704-4 ','Renting Antioquia ','Calle 60 sur 44 64 ',NULL,'Milena Escobar Morales ','Jefe de seguridad y salud en el trabajo ','3226050368','Jefesst@rentan.com.co',NULL,'https://drive.google.com/file/d/1BVs0W-BR5DntOaim-92tp6I5ouT9WSjN/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(198,'LORAINE','DIAZ HERRERA','CC','1047446347','VIENARUIZ2013@HORTMAIL.COM','3147548041','Práctica','1','NEGOCIACION INTERNACIONAL','Tecnología','2348515','2023-06-27','JORGE MARIO PAYARES','jmpayares@gmail.com','Ninguno','901332611-3','L&L SOLUCION SAS','TV 54 N28-25 EDIFICIO MOVISOL OFICINA 303',NULL,'MILER CANO ARRIETA','3216652467','3216652467','GERENCIA@LYLSOLUCION.COM','La empresa','https://drive.google.com/file/d/1po4g-friM-5iGqsKFsbL_u4PxpUEFqLB/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(199,'Kelly Jhoana','Martínez Suaza','CC','1036648276','martinez_kj1909@hotmail.com','3148175900','Lectiva','5','Tecnología en Gestión Empresarial','Tecnología','2562425','2024-01-17','Maribel Rodríguez Rave','mrodriguez94@misena.edu.co','Ninguno','811008963-6','Multienlace SAS','Cl 8B 65 - 191 Puerto Seco piso 1',NULL,'Yesica Yulier Álvarez Restrepo ','Líder ','3003843476','yesica.alvarez@grupokonecta.co',NULL,'https://drive.google.com/file/d/11Xye3R8CfgCIfFjlO9hwCancE7W1SUr4/preview','Quedo atenta a la respuesta. Muchas gracias','Pendiente','2023-09-08 15:53:08','Admin Admin'),(200,'Adrián De Jesús','Hernández Ospina','CC','71278499','ajho0924@gmail.com','300 458 5101','Lectiva','5','Tecnólogo en Gestión de la Producción Industrial ','Tecnología','2562435','2023-12-17','Conrado Alcides Sosa Zapata','casosa5@misena.edu.co','Ninguno','901265043-2','Pinturas Real Flex','Cra. 55 # 77 Sur 228 Int 106',NULL,'Liana Marcela Rios Henao','Gerente','604- 322 4626','info@realflex.co',NULL,'https://drive.google.com/file/d/1OhuagqOS6xQkmKKiuVXuJlkZ2aUNKjru/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(201,'DICK MIGUEL','NIEVES PUCHE','CC','1067404068','DICKNIEVES08@GMAIL.COM','3022997757','Práctica','5','GESTION DE LA PRODUCCION INDUSTRIAL','Tecnología','2453890','2023-07-24','DIEGO ARMANDO MARTINEZ GARCIA','DA42@MISENA.EDU.CO','Ninguno','800191700-8','CUEROS VELEZ S.A','CALLE 29#52-115',NULL,'SANTIAGO ARAQUE ','COORDINADOR','3046123550','3555100','La empresa','https://drive.google.com/file/d/1w5o3_0dfuCJtAo2pLwPUaFLTYu2magNw/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(202,'Paulo Cesar','Morales Garcia','CC','15339475','pauloc1977@gmail.com','3113813497','Práctica','5','Gestión de la Producción Industrial','Tecnología','2340322','2023-07-18','Gloria Patricia Arboleda Vargas','Gloria Patricia Arboleda Vargas','Ninguno','890906119-6','NUVANT SAS','Calle 61 Sur N 43A -290 Sabaneta',NULL,'Carlos Andres Arias Atehortua','Jefe de Producción','3183929196','carias@nuvantglobal.com',NULL,'https://drive.google.com/file/d/1ZD4s5yntzL-0dh6sW2Z4oSpDPNK2NIbP/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(203,'Brayan Felipe ','Muñoz Alvarez','CC','1214738323','brayanfelipemunozalvarez123@gmail.com','3206165947','Práctica','1','Producción Multimedia ','Tecnología','2232449','2024-02-28','No me se el nombre ','ComiteAprendices@sena.edu.co','Ninguno','901360723-9','D.O HIDROSANITARIA S.A.S','Calle 104 b # 46 a 45',NULL,'Erlinson Daimer Osorio Muñoz ','Gerente ','3059052281','dohidrosanitariasas@gmail.com','El SENA','https://drive.google.com/file/d/1r5PY7OtBfuUrm2kK57JXlyejakryCWJW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(204,'Cristian Manuel','Sanchez Duran','CC','1024552036','manuelcoordi12881@gmail.com','3102315471','Lectiva','5','Coordinación Procesos Logisticos ','Tecnología','2542024','2024-01-24','Carolina Velasquez Ruiz ','caritovelasruiz@misena.edu.co','Ninguno','890.900.943-1','Alkosto S.A ','Av carrera 68 No 72 - 43',NULL,'Omar Mauricio Correa','Director de Logistica','3103179772','Mauricio.correa@alkosto.com.co','La empresa','https://drive.google.com/file/d/1ymRJqtdwMQggyq0iqst5ZDkwLR0vUFkV/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(205,'Paula Andrea','Ramirez Reyes','CC','1036929596','miasofia546@gmail.com','3004076243','Práctica','3','Tecnologia en Seguridad y Salud en el trabajo','Tecnología','2280356','2022-09-30','Geny Carvajal ','gdcarvajal7@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1EnXsuR1RbCDmhAZD59XcjSfMIXbLSfZj/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(206,'STIVEN','GARCIA SANTAMARIA','CC','1001268759','123GARCIASTIVEN123@GMAIL.COM','3104074775','Práctica','3','DISEÑO Y DECORACION DE ESPACIOS INTERIORES ','Tecnología','2071532','2022-02-22','JUAN DAVID ACEVEDO AGUDELO ','jdacevedoa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Gyy5PcE6ha-H4Y16kcXgwDRdv7JbbXzg/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(207,'Cesar Andres','Arce Sanchez','CC','1053772112','cesarandres.arce@gmail.com','3136649171','Lectiva','5','COORDINACION DE PROCESOS LOGISTICOS','Tecnología','2542024','2024-06-23','Carolina Velásquez Ruiz ','cavelasquezr@sena.edu.co','Ninguno','890904713','coordinadora mercantil','estación uribe bod 3 parque industrial normandia ',NULL,'Sebastián Henao ','jefe inmediato ','3017590071','sebastian.henao@coordinadora.com','La empresa','https://drive.google.com/file/d/1QERoJiuvKBzi_N9s947P5pvGNALWTtCr/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(208,'Carolina','Diosa Ochoa ','CC','1000763446','cdiosa6@misena.edu.co','3206590928','Práctica','3','Producción de multimedia','Tecnología','2472670','2024-01-31','Heduan Henry ospina','h2odante@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/17A6shBqe-nwhdWKofiJhxCFkWVc2MagI/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(209,'ELIZABETH ','ATENCIO RAMOS','CC','1038102381','elizabethatencioviajes@gmail.com','3045769806','Práctica','3','GESTIÓN EMPRESARIAL','Tecnología','2236495','2022-07-21','OMAR TUIRAN ','elizabethatencioviajes@gmail.com','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1QRuUG5SQLtzsg6Gr6v11-a_Ju_B_f4aT/preview','Ninguna','Pendiente','2023-09-08 15:53:08','Admin Admin'),(210,'GLORIA STELLA',' MARTINEZ TAMAYO','CC','43037778','gloriartesm@hotmail.com','3163236313','Práctica','3','ELABORACION DE VIOLIN Y VIOLA','Técnico','2425603','2022-07-01','JOSE RICARDO CARDENAS','jrcardenas@misena.edu.co','Ninguno','N/A','N/A','N/A',NULL,'N/A','N/A','N/A','N/A',NULL,'https://drive.google.com/file/d/1zofoNuBP38NKx5YS6pN2b2syWtR6VKQC/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(211,'Alexis','Vanegas Gonzalez','CC','1039449883','avanegas388@misena.edu.co','3103856135','Práctica','3','Gestion Logistica','Tecnología','2236465','2022-07-21','Jhon Alejandro Jimenez','alejandrojsa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1Tm0JGNaF1dG723pSx2m1jEaZP_w-ZdfW/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(212,'Camilo','Gómez Rivera','CC','1036941876','camilogri148@gmail.com','3113701255','Práctica','1','tecnólogo en coordinación de escuelas de música','Tecnología','2141920','2022-08-10','Jorge hugo mesa','jhmesa2@misena.edu.co ','Ninguno','890.907.317-2','MUNICIPIO DE RIONEGRO','Cl. 48 #50-36, Rionegro, Antioquia',NULL,'Melissa Arias Garcia ','subsecretaria de cultura','314748162','mariasq@rionegro.gov.co','El SENA','https://drive.google.com/file/d/1qS3PlW-fe5b7_ncEMRY_MQsBtvnXG0bD/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(213,'Diana maritza','Marín Pérez ','CC','1152690558','Diana.paisa@hotmail.com','3217273106','Práctica','5','Sistema de gestión y de seguridad y salud en el trabajo ','Tecnología','2249919','2022-12-07','Gina briset delgado Rodríguez ','gdelgadory@misena.edu.co','Ninguno','901452226-5','Provideco obras civiles as','Cr 30 # 20 128- Marinilla Antioquia ',NULL,'Victor Alfonso Quintero ','3043448923','3043448923','Victorkintero@gmail.com','La empresa','https://drive.google.com/file/d/1_j_o225F40SjsyHFiZMu5IUD5TJpNUUx/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(214,'ESTEFANIA','AGUDELO ALVAREZ','CC','1018223534','agudelostefania2@gmail.com','3147906011','Práctica','1','Tecnologia en Gestion de la Seguridad y Salud en el trabajo.','Tecnología','2313313','2022-10-28','MARTA CECILIA HENAO LONDOÑO','mchenaol@sena.edu.co','Ninguno','98711722-7','Andres Fernando Tabares Molina (Blau technology)','Cra 50 #38a-185',NULL,'Jenny Alejandra Velez Agudelo','Analista SST','3117718116','alejavelz@hotmail.com','La empresa','https://drive.google.com/file/d/1pTFVysIVEX-bTIbw9jU-G4C6b6lm3TC0/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(215,'Alexis ','Vanegas Gonzalez','CC','1039449883','avanegas388@misena.edu.co','3103856135','Práctica','3','Gestion Logistica','Tecnología','2236465','2022-07-21','Jhon Alejandro Jimenez','alejandrojsa@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1a1vSm7WlgPW0tRXQCnov-1If4hlCroyK/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(216,'MIGUEL ANGEL ','ALZATE VARGAS ','CC','70567911','MIANGELALZATE@GMAIL.COM ','300654 37 21 ','Práctica','3','SG-SST','Tecnología','2236470-1','2022-07-01','RICARDO ESTRADA ','restrada3@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'El SENA','https://drive.google.com/file/d/1DqMb5_MvsS4NMEbgreXoGr9z1QHoI8kq/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(217,'ANA MARIA','VELEZ SALDARRIAGA','CC','1036668372','anamvs100mts@gmail.com','3104025679','Práctica','3','GESTION ADMINISTRATIVA','Tecnología','2339011','2022-12-05','OMAR JOSE TUIRAN SAKER','omar.tuiran@misena.edu.co','Ninguno',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1K7SDRUH9dMyVhD_fdfz7c1JFlX-TMWqS/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(218,'Klinshman Daniel ','Pérez marulanda ','CC','1037610033','kdpm91@gmail.com','3017802434','Práctica','3','Técnico en construcción mantenimiento y reparación de estructuras en guadua y bambú ','Técnico','2684829','2023-08-28','Luis Guillermo Gutiérrez ','Lgutierrezro@sena.edu.co','FIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://drive.google.com/file/d/1_kD8DGrCwydnflPugqwt5og6mc9OyKkA/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(219,'JHONNY ANDRES ','MESA VEGA ','CC','1053442104','jhonnymesaandresvega@gmail.com','3187630590','Práctica','5','Distribución fisica internacional ','Tecnología','2281629','2022-10-14','CLAUDIA JANETH RESTREPO RESTREPO','cjrestrepo@misena.edu.co','Ninguno','830136162','Dico telecomunicaciones s.a','Diagonal 24c #96-72',NULL,'Natalia caipa morales','Gestor de Compras y Contratos','3214278453','natalia.caipa@dicocolombia.com','La empresa','https://drive.google.com/file/d/1iMeOiVrYwdq26bOTgmvZmymYN23mBLqq/preview','quedo pendiente a sus comentarios ','Rechazado','2023-09-08 15:53:08','Admin Admin'),(220,'JEISON KINN','VILORIA MARTINEZ','CC','1020392906','consultor45@outlook.com','3505893712','Práctica','5','GESTION DE LA SEGURIDAD Y SALUD EN EL TRABAJO','Tecnología',' 2142193-3','2022-08-22','LUZ MARY MUÑOZ','lmmunoz662@misena.edu.co','Ninguno','901493391','foraminas empresarial sas','carrera 81 N 43-72 local 1257',NULL,'Juan esteban echavarria castrillon','gerente ','3174241286','foraminaempresarial21@gmail.com','La empresa','https://drive.google.com/file/d/1_aTWCNT9eE32X2E9f8w26OjzwJKGJc-v/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(221,'diana smith','gomez mongua','CC','64577370','dianig14@live.com','3013751961','Práctica','1','tecnologo en negociacion internacional','Tecnología','2374753','2023-02-22','Yuli Milena Acevedo Arroyave','yacevedoa@sena.edu.co','Ninguno','900.817.982-1','G&C INGENIERIA Y CONSTRUCCION','CRA 6J N°32-30',NULL,'JUAN CAMILO MONTES OLMOS','GERENTE','3013716957','contabilidadgruasytransportes@gmail.com','El SENA','https://drive.google.com/file/d/1t1sRwVA1-Eh0Gp6_Dd9nB0k_ff54C05L/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(222,'ANNY CATALINA','URIBE ROLDAN','CC','1037624905','acatalina1300@gmail.com','3135558093','Práctica','5','TECNOLOGIA EN GESTION ADMINISTRATIVA','Tecnología','2065924','2022-10-22','MIGUEL SANTANA','misantavi@misena.edu.co','Ninguno','890900841','CAJA DE COMPENSACIÓN FAMILIAR DE ANTIOQUIA','Cra. 48 #20-34 Ciudad del río',NULL,'Stefania Cano Marin','Responsable de Conexiones Empresariales','300 3843618','stefaniacanom@comfama.com.co','La empresa','https://drive.google.com/file/d/1YaqS88Av1lZ9GedOttDXlVBYanrHGOnv/preview',NULL,'Pendiente','2023-09-08 15:53:08','Admin Admin'),(223,'LUIS CARLOS ','SALAZAR OJEDA','CC','12994454','salazarluthier@gmail.com','3184787775','Práctica','1','ELABORACION DE VIOLIN Y VIOLA','Técnico','2425603','2023-12-01','JOSE RICARDO CARDENAS','jrcardenas@sena.edu.co','Ninguno',NULL,'SALAZAR INSTRUMENTOS','VEREDA DOLORES ',NULL,'LUIS CARLOS SALAZAR OJEDA','PROPIETARIO','3017903801','salazarluthier@gmail.com','La empresa','https://drive.google.com/file/d/13Ya6Y3NvNPyFoqm-op1tAabfbA_9255B/preview','Ofrezco mil disculpas pero no entiendo si es el medio correcto para el processo','Pendiente','2023-09-08 15:53:08','Admin Admin'); /*!40000 ALTER TABLE `inscripciones` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; @@ -788,7 +791,7 @@ CREATE TABLE `jefes` ( `numero_contacto_jefe` varchar(100) DEFAULT NULL, `email_jefe` varchar(300) DEFAULT NULL, PRIMARY KEY (`id_jefe`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -797,7 +800,7 @@ CREATE TABLE `jefes` ( LOCK TABLES `jefes` WRITE; /*!40000 ALTER TABLE `jefes` DISABLE KEYS */; -INSERT INTO `jefes` VALUES (1,'Alejandra Quecam','TAM','302124145','rousy@teleperformance.co'),(3,'Maria Cristina Hoyos Mejia ','Jefe Administrativa ','4489036','asistente@frestolu.com'),(5,'manuela Moncada Velásquez ','jefe de producción','3192127510','manuela.moncada@firplak.com'); +INSERT INTO `jefes` VALUES (1,'Alejandra Quecam','TAM','302124145','rousy@teleperformance.co'),(3,'Maria Cristina Hoyos Mejia ','Jefe Administrativa ','4489036','asistente@frestolu.com'),(5,'manuela Moncada Velásquez ','jefe de producción','3192127510','manuela.moncada@firplak.com'),(6,'RUBEN DARIO RIVERA BETANCURT','REPRESENTANTE LEGAL ','3104122270','rubiorubencho@gmail.com '),(9,'RUBEN DARIO RIVERA BETANCURT','REPRESENTANTE LEGAL ','3104122270','rubiorubencho@gmail.com '),(10,'RUBEN DARIO RIVERA BETANCURT','REPRESENTANTE LEGAL ','3104122270','rubiorubencho@gmail.com '),(11,'Carlos Arcila Alzate ','Coordinador de producción ','604 204 29 00 ext 8143','carlos.arcila@somosgrupo-a.com'); /*!40000 ALTER TABLE `jefes` ENABLE KEYS */; UNLOCK TABLES; @@ -925,4 +928,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-10-04 13:13:22 +-- Dump completed on 2023-10-05 11:02:14 From 661eadcc611f00f94182d3da4f0e9a0a64a3d4de Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Thu, 5 Oct 2023 11:07:22 -0500 Subject: [PATCH 012/128] version 3.20.2 (server) --- server/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/package.json b/server/package.json index d8dbf7da..e19429c5 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "server", - "version": "3.20.1-alpha", + "version": "3.20.2-alpha", "type": "module", "description": "Back-end para el proyecto de practicas en el sena", "main": "./src/index.js", From d898ef9fe6c3bd5c9560dcf1129de4a1268a0edc Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Thu, 5 Oct 2023 12:40:05 -0500 Subject: [PATCH 013/128] fix: unnecesary console.log removed --- .../components/Register-detail/RegisterDetails.jsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/client/src/components/Register-detail/RegisterDetails.jsx b/client/src/components/Register-detail/RegisterDetails.jsx index 5cf75488..a247e1c8 100644 --- a/client/src/components/Register-detail/RegisterDetails.jsx +++ b/client/src/components/Register-detail/RegisterDetails.jsx @@ -328,12 +328,9 @@ const Coordinador = ({ idRol, avalCoordinador }) => { */ const fetchInfo = async () => { try { - console.log(test) - console.log(avalCoordinador) const res = await getAvalById(avalCoordinador) const { data } = res.data const idPayload = data[0].responsable_aval - console.log(idPayload, data) if (idPayload !== null) { getCoordinatorName(idPayload) } @@ -344,14 +341,11 @@ const Coordinador = ({ idRol, avalCoordinador }) => { } const getCoordinatorName = async (payload) => { - console.log(payload) try { const res = await getCoordinatorNameByID(payload) const { nombre_completo } = res.data - console.log('nombre', nombre_completo) setCoordinatorFullName(nombre_completo) } catch (error) { - console.log('elll') toast.error('Error al conseguir los datos del aval') } } @@ -633,15 +627,8 @@ const Coordinador = ({ idRol, avalCoordinador }) => { } } - const [test, setTest] = useState(null) - - useEffect(() => { - console.log(test) - }, [test]) const saveSelectOnChange = async (e) => { try { - console.log(e) - setTest(e) await inscriptionDetailsUpdate(avalCoordinador, { responsable_aval: e }) toast.success('Instructor guardado correctamente', { isLoading: false, autoClose: 3000, hideProgressBar: false, closeOnClick: true, pauseOnHover: false, draggable: false, progress: undefined, theme: 'colored', closeButton: true, className: 'text-base' }) fetchInfo() From 23d79d89511f6cf8ea11ff4d6b498b71447ba7c8 Mon Sep 17 00:00:00 2001 From: ConanGH-S Date: Thu, 5 Oct 2023 13:27:01 -0500 Subject: [PATCH 014/128] style: some layout UI changed --- client/package.json | 2 +- client/src/components/Courses/Courses.jsx | 6 +-- client/src/components/Footer/Footer.jsx | 2 +- client/src/components/Home/Home.jsx | 5 +- .../components/Info-student/InfoStudent.jsx | 7 ++- .../components/Register-list/RegisterList.jsx | 6 +-- .../Student-monitoring/StudentMonitoring.jsx | 50 ++++++++++--------- client/src/components/Teachers/Teachers.jsx | 6 +-- 8 files changed, 45 insertions(+), 39 deletions(-) diff --git a/client/package.json b/client/package.json index 74d232e4..aa1e385a 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.22.1-alpha", + "version": "2.22.2-alpha", "type": "module", "scripts": { "dev": "vite --open", diff --git a/client/src/components/Courses/Courses.jsx b/client/src/components/Courses/Courses.jsx index 2f0fd9b4..735b2f00 100644 --- a/client/src/components/Courses/Courses.jsx +++ b/client/src/components/Courses/Courses.jsx @@ -360,8 +360,8 @@ export const Courses = () => { return (
    -
    -
    +
    +
    • @@ -463,7 +463,7 @@ export const Courses = () => {
    )}
    -
    +
    {searchedCourses.length > 0 && !error ? ( searchedCourses.slice(startIndex, endIndex).map((course, i) => { diff --git a/client/src/components/Footer/Footer.jsx b/client/src/components/Footer/Footer.jsx index 43a6c8cb..b3cf2162 100644 --- a/client/src/components/Footer/Footer.jsx +++ b/client/src/components/Footer/Footer.jsx @@ -1,6 +1,6 @@ const Footer = () => { return ( -
    +
    © SENA - Centro Tecnológico del Mobiliario logoSena diff --git a/client/src/components/Home/Home.jsx b/client/src/components/Home/Home.jsx index d3cf6507..d04a7078 100644 --- a/client/src/components/Home/Home.jsx +++ b/client/src/components/Home/Home.jsx @@ -8,8 +8,8 @@ const Home = () => { return (
    -
    -
    +
    +

    Bienvenido

    @@ -17,7 +17,6 @@ const Home = () => { return })}
    -
    diff --git a/client/src/components/Info-student/InfoStudent.jsx b/client/src/components/Info-student/InfoStudent.jsx index 773d98a2..917dc567 100644 --- a/client/src/components/Info-student/InfoStudent.jsx +++ b/client/src/components/Info-student/InfoStudent.jsx @@ -4,6 +4,7 @@ import { Siderbar } from '../Siderbar/Sidebar' import { useEffect, useState } from 'react' import { GetStudentsDetailById } from '../../api/httpRequest' import { IoReturnDownBack } from 'react-icons/io5' +import { Button } from '../Utils/Button/Button' export const InfoStudent = () => { const { id } = useParams() @@ -30,7 +31,7 @@ export const InfoStudent = () => { return (
    -
    +
    @@ -127,6 +128,10 @@ export const InfoStudent = () => {
    +
    + + +
    diff --git a/client/src/components/Register-list/RegisterList.jsx b/client/src/components/Register-list/RegisterList.jsx index c4c01827..45031ca0 100644 --- a/client/src/components/Register-list/RegisterList.jsx +++ b/client/src/components/Register-list/RegisterList.jsx @@ -469,8 +469,8 @@ export const RegisterList = () => { {isModalOpen && modalOption === modalOptionList.loadingExcelModal && } {isModalOpen && modalOption === modalOptionList.uploadingExcelModal && } -
    -
    +
    +
    • @@ -554,7 +554,7 @@ export const RegisterList = () => {
    )}
    -
    +
    {(searchedInscriptions > 0 || !error || inscriptions > 0) && }
    {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( diff --git a/client/src/components/Student-monitoring/StudentMonitoring.jsx b/client/src/components/Student-monitoring/StudentMonitoring.jsx index b1cd1126..9315eba3 100644 --- a/client/src/components/Student-monitoring/StudentMonitoring.jsx +++ b/client/src/components/Student-monitoring/StudentMonitoring.jsx @@ -272,33 +272,35 @@ export const StudentMonitoring = () => {
    -
    +
    - {searchedApprentices.length > 0 && !error ? ( -
    - {searchedApprentices.slice(startIndex, endIndex).map((apprentice, i) => ( - - ))} +
    + {searchedApprentices.length > 0 && !error ? ( +
    + {searchedApprentices.slice(startIndex, endIndex).map((apprentice, i) => ( + + ))} +
    + ) : ( +
    + {loading ? ( + <> + + + ) : error ? ( +

    {error}

    + ) : ( + apprentices.slice(startIndex, endIndex).map((apprentice, i) => { + return + }) + )} +
    + )} +
    +
    - ) : ( -
    - {loading ? ( - <> - - - ) : error ? ( -

    {error}

    - ) : ( - apprentices.slice(startIndex, endIndex).map((apprentice, i) => { - return - }) - )} -
    - )} -
    - -
    +
    diff --git a/client/src/components/Teachers/Teachers.jsx b/client/src/components/Teachers/Teachers.jsx index f20be847..dbff0f0d 100644 --- a/client/src/components/Teachers/Teachers.jsx +++ b/client/src/components/Teachers/Teachers.jsx @@ -231,11 +231,11 @@ export const Teachers = () => {
    -
    -
    +
    +
    -
    +
    {searchedTeachers.length > 0 && !error ? (
    {allColors.slice(startIndex, endIndex).map((color, index) => From 90dc0587aa6170901b7b1f0b6a6d8d944bf5e0eb Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 18:45:06 -0500 Subject: [PATCH 015/128] fix - style: change ui views, change page counter when doing a search, registerList btn and skeleton studentsMonitoring --- .../components/Register-list/RegisterList.jsx | 47 +++++---- .../Student-monitoring/StudentMonitoring.jsx | 98 +++++-------------- client/src/components/Teachers/Teachers.jsx | 49 ++++++---- 3 files changed, 80 insertions(+), 114 deletions(-) diff --git a/client/src/components/Register-list/RegisterList.jsx b/client/src/components/Register-list/RegisterList.jsx index 45031ca0..2416569d 100644 --- a/client/src/components/Register-list/RegisterList.jsx +++ b/client/src/components/Register-list/RegisterList.jsx @@ -38,6 +38,7 @@ export const RegisterList = () => { const [isModalOpen, setIsModalOpen] = useState(false) const [inscriptions, setInscriptions] = useState([]) const [pageNumber, setPageNumber] = useState(1) + const [searchPageNumber, setSearchPageNumber] = useState(1) const [fileName, setFileName] = useState(null) const [modalOption, setModalOption] = useState(modalOptionList.confirmModal) const [username, setUsername] = useState(null) @@ -100,7 +101,7 @@ export const RegisterList = () => { */ const inscriptionsPerPage = 6 /** - * Número total de páginas para la paginación de inscripciones. + * Número total de páginas para la paginación de inscripciones y las busquedad de inscripciones * * @constant * @name pageCount @@ -110,6 +111,8 @@ export const RegisterList = () => { * const totalPaginas = pageCount; */ const pageCount = Math.ceil(inscriptions.length / inscriptionsPerPage) + const pageCountSearch = Math.ceil(searchedInscriptions.length / inscriptionsPerPage) + /** * Índice de inicio de la página actual. * @@ -121,6 +124,8 @@ export const RegisterList = () => { * const indiceInicio = startIndex; */ const startIndex = (pageNumber - 1) * inscriptionsPerPage + const startIndexSearch = (searchPageNumber - 1) * inscriptionsPerPage + /** * Índice de fin de la página actual. * @@ -132,6 +137,8 @@ export const RegisterList = () => { * const indiceFin = endIndex; */ const endIndex = startIndex + inscriptionsPerPage + const endIndexSearch = startIndexSearch + inscriptionsPerPage + /** * Identificador del rol del usuario almacenado en el almacenamiento local. * @@ -555,22 +562,26 @@ export const RegisterList = () => { )}
    - -
    {(searchedInscriptions > 0 || !error || inscriptions > 0) && }
    - {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( -
    - -
    - - + + +
    +
    {searchedInscriptions.length > 0 && !error ? : }
    + {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( +
    + +
    + + +
    -
    - )} + )} +
    @@ -578,7 +589,7 @@ export const RegisterList = () => { ) } -const TableList = ({ inscriptions, startIndex = 0, endIndex = 6, loadingData, searchedInscriptions, error }) => { +const TableList = ({ inscriptions, startIndex = 0, endIndex = 6, startIndexSearch = 0, endIndexSearch = 6, loadingData, searchedInscriptions, error }) => { const navigate = useNavigate() const handleAvales = (id) => { return navigate(`/registro-detalles/${id}`) @@ -598,7 +609,7 @@ const TableList = ({ inscriptions, startIndex = 0, endIndex = 6, loadingData, se {searchedInscriptions.length > 0 && !error ? ( - searchedInscriptions.slice(startIndex, endIndex).map((x) => ( + searchedInscriptions.slice(startIndexSearch, endIndexSearch).map((x) => ( {`${x.nombre_inscripcion} ${x.apellido_inscripcion}`} {x.nombre_modalidad} diff --git a/client/src/components/Student-monitoring/StudentMonitoring.jsx b/client/src/components/Student-monitoring/StudentMonitoring.jsx index 9315eba3..eb4535e9 100644 --- a/client/src/components/Student-monitoring/StudentMonitoring.jsx +++ b/client/src/components/Student-monitoring/StudentMonitoring.jsx @@ -7,9 +7,9 @@ import { Pagination } from '@nextui-org/pagination' import { Siderbar } from '../Siderbar/Sidebar' import { Search } from '../Search/Search' import { CardStudent } from '../Utils/Card/Card' -import { FilterModal, InfoStudentModal } from '../Utils/Modals/Modals' +import { FilterModal } from '../Utils/Modals/Modals' import { Footer } from '../Footer/Footer' -import { GetUserByName, detailInfoStudents, GetStudentsDetailById } from '../../api/httpRequest' +import { GetUserByName, detailInfoStudents } from '../../api/httpRequest' import { Button } from '../Utils/Button/Button' import { Select } from '../Utils/Select/Select' import { modalities } from '../../import/staticData' @@ -19,11 +19,9 @@ export const StudentMonitoring = () => { const [searchedApprentices, setSearchedApprentices] = useState([]) const [error, setError] = useState(null) const [modalFilter, setModalFilter] = useState(false) - const [infoStudent, setInfoStudent] = useState(false) - const [userInfoById, setInfoUserById] = useState({}) const [loading, setLoading] = useState(true) const [pageNumber, setPageNumber] = useState(1) - const [dates, setDates] = useState({}) + const [currentStudentList, setCurrentStudentList] = useState({}) /** * Función para manejar el clic en el icono. @@ -53,63 +51,6 @@ export const StudentMonitoring = () => { setModalFilter(!modalFilter) } - /** - * Función asincrónica para mostrar el modal del estudiante y obtener sus datos. - * - * @async - * @function - * @name modalStudent - * @param {string} userID - ID del usuario del estudiante. - * @throws {Error} Error en caso de fallo en la solicitud. - * @returns {void} - * - * @example - * modalStudent('12345'); - */ - const modalStudent = async (userID) => { - setInfoStudent(true) - getUser(userID) - } - - /** - * Función para manejar el modal de información del estudiante. - * - * @function - * @name handleModalInfo - * @returns {void} - * - * @example - * handleModalInfo(); - */ - const handleModalInfo = () => { - setInfoStudent(!infoStudent) - } - - /** - * Función asincrónica para obtener los datos del usuario por su ID. - * - * @async - * @function - * @name getUser - * @param {string} userID - ID del usuario. - * @throws {Error} Error en caso de fallo en la solicitud. - * @returns {void} - * - * @example - * getUser('12345'); - */ - const getUser = async (userID) => { - try { - const response = await GetStudentsDetailById(userID) - const res = response.data.data[0] - const { fecha_fin_lectiva, fecha_inicio_practica } = res - setDates({ fin_lectiva: fecha_fin_lectiva.split('T')[0], inicio_practicas: fecha_inicio_practica.split('T')[0] }) - setInfoUserById(res) - } catch (error) { - console.error('Ha ocurrido un error al mostrar los datos del usuario') - } - } - /** * Función asincrónica para buscar aprendices por nombre de usuario. * @@ -174,6 +115,16 @@ export const StudentMonitoring = () => { getApprentices() }, []) + // Cambia el numero de paginas dependiendo de la cantidad de instructores + useEffect(() => { + if (searchedApprentices.length > 0 && !error) { + setCurrentStudentList(searchedApprentices) + setPageNumber(1) + } else { + setCurrentStudentList(apprentices) + } + }, [searchedApprentices, error, apprentices]) + /** * Número de aprendices a mostrar por página. * @@ -196,7 +147,7 @@ export const StudentMonitoring = () => { * @example * const numeroDePaginas = pageCount; */ - const pageCount = Math.ceil(apprentices.length / studentsPerPage) + const pageCount = Math.ceil(currentStudentList.length / studentsPerPage) /** * Índice de inicio de la lista de aprendices a mostrar en la página actual. * @@ -266,24 +217,21 @@ export const StudentMonitoring = () => { )} - {infoStudent && ( - - )}
    -
    -
    +
    +
    {searchedApprentices.length > 0 && !error ? ( -
    +
    {searchedApprentices.slice(startIndex, endIndex).map((apprentice, i) => ( - + ))}
    ) : ( -
    +
    {loading ? ( <> @@ -292,14 +240,12 @@ export const StudentMonitoring = () => {

    {error}

    ) : ( apprentices.slice(startIndex, endIndex).map((apprentice, i) => { - return + return }) )}
    )} -
    - -
    +
    {loading ? <> : }
    @@ -311,6 +257,6 @@ export const StudentMonitoring = () => { const SkeletonLoading = ({ number = 6 }) => [...Array(number)].map((_, i) => (
    - +
    )) diff --git a/client/src/components/Teachers/Teachers.jsx b/client/src/components/Teachers/Teachers.jsx index dbff0f0d..05d34cb1 100644 --- a/client/src/components/Teachers/Teachers.jsx +++ b/client/src/components/Teachers/Teachers.jsx @@ -19,6 +19,7 @@ import { Button } from '../Utils/Button/Button' export const Teachers = () => { const [pageNumber, setPageNumber] = useState(1) + const [searchPageNumber, setSearchPageNumber] = useState(1) const [loading, setLoading] = useState(true) const [teacher, setTeacher] = useState([]) const [searchedTeachers, setSearchedTeachers] = useState([]) @@ -100,6 +101,11 @@ export const Teachers = () => { useEffect(() => { getInstructores() }, []) + useEffect(() => { + if (searchedTeachers.length === 0 || error) { + setSearchPageNumber(1) + } + }, [searchedTeachers, error]) /** * Número de instructores a mostrar por página. @@ -114,7 +120,7 @@ export const Teachers = () => { */ const instructoresPerPage = 8 /** - * Calcula el número de páginas necesarias para la paginación de instructores. + * Calcula el número de páginas necesarias para la paginación de instructores y la busquedad de instructores. * * @constant * @name pageCount @@ -123,7 +129,9 @@ export const Teachers = () => { * @example * const numeroDePaginas = pageCount; */ + const pageCount = Math.ceil(teacher.length / instructoresPerPage) + const pageCountSearch = Math.ceil(searchedTeachers.length / instructoresPerPage) /** * Mapea los colores para las filas impares de la lista de instructores. * @@ -148,6 +156,7 @@ export const Teachers = () => { * const indiceInicio = startIndex; */ const startIndex = (pageNumber - 1) * instructoresPerPage + const startIndexSearch = (searchPageNumber - 1) * instructoresPerPage /** * Índice de fin de la lista de instructores a mostrar en la página actual. * @@ -159,6 +168,7 @@ export const Teachers = () => { * const indiceFin = endIndex; */ const endIndex = startIndex + instructoresPerPage + const endIndexSearch = startIndexSearch + instructoresPerPage const navigate = useNavigate() @@ -237,18 +247,18 @@ export const Teachers = () => {
    {searchedTeachers.length > 0 && !error ? ( -
    - {allColors.slice(startIndex, endIndex).map((color, index) => - searchedTeachers[startIndex + index] ? ( -
    +
    + {allColors.slice(startIndexSearch, endIndexSearch).map((color, index) => + searchedTeachers[startIndexSearch + index] ? ( +
    -
    {`${searchedTeachers[startIndex + index].nombres_usuario} ${searchedTeachers[startIndex + index].apellidos_usuario}`}
    +
    {`${searchedTeachers[startIndexSearch + index].nombres_usuario} ${searchedTeachers[startIndexSearch + index].apellidos_usuario}`}

    -

    {searchedTeachers[startIndex + index].id_rol === 3 && 'Instructor Seguimiento'}

    +

    {searchedTeachers[startIndexSearch + index].id_rol === 3 && 'Instructor Seguimiento'}

    -
    @@ -258,7 +268,7 @@ export const Teachers = () => { )}
    ) : ( -
    +
    {loading ? ( <> @@ -268,7 +278,7 @@ export const Teachers = () => { ) : ( allColors.slice(startIndex, endIndex).map((color, index) => teacher[startIndex + index] ? ( -
    +
    {`${teacher[startIndex + index].nombres_usuario} ${teacher[startIndex + index].apellidos_usuario}`}

    @@ -287,17 +297,16 @@ export const Teachers = () => { )}
    )} - -
    - +
    +
    {searchedTeachers.length > 0 && !error ? : }
    + {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( +
    + +
    + )}
    - {(idRol === Number(keysRoles[0]) || idRol === Number(keysRoles[1])) && ( -
    - -
    - )}
    From 63725bf33d5c7531c538e4ba1dd133eb2e86c036 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 18:45:46 -0500 Subject: [PATCH 016/128] v2.23.0-alpha --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index aa1e385a..3d50c646 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.22.2-alpha", + "version": "2.23.0-alpha", "type": "module", "scripts": { "dev": "vite --open", From ec580f3a090b3a8561b800cc5edd52a28a118947 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 18:48:46 -0500 Subject: [PATCH 017/128] fix: comentarios --- client/src/components/Student-monitoring/StudentMonitoring.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Student-monitoring/StudentMonitoring.jsx b/client/src/components/Student-monitoring/StudentMonitoring.jsx index eb4535e9..13bd3b6a 100644 --- a/client/src/components/Student-monitoring/StudentMonitoring.jsx +++ b/client/src/components/Student-monitoring/StudentMonitoring.jsx @@ -115,7 +115,7 @@ export const StudentMonitoring = () => { getApprentices() }, []) - // Cambia el numero de paginas dependiendo de la cantidad de instructores + // Cambia el numero de paginas dependiendo de la cantidad de estudiantes useEffect(() => { if (searchedApprentices.length > 0 && !error) { setCurrentStudentList(searchedApprentices) From 25f773e00ec17995db22d6c4c79de1fedf5aba82 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 19:26:49 -0500 Subject: [PATCH 018/128] feat: add btn monitoring --- .../components/Info-student/InfoStudent.jsx | 33 ++++++++++++++----- client/tailwind.config.js | 3 +- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/client/src/components/Info-student/InfoStudent.jsx b/client/src/components/Info-student/InfoStudent.jsx index 917dc567..19d0ddc9 100644 --- a/client/src/components/Info-student/InfoStudent.jsx +++ b/client/src/components/Info-student/InfoStudent.jsx @@ -1,9 +1,15 @@ import { Link, useParams } from 'react-router-dom' +import { useEffect, useState } from 'react' + +// Icons +import { IoReturnDownBack } from 'react-icons/io5' +import { LuScroll } from 'react-icons/lu' +import { PiCalendarCheckBold, PiBooksBold } from 'react-icons/pi' + +// Components import { Footer } from '../Footer/Footer' import { Siderbar } from '../Siderbar/Sidebar' -import { useEffect, useState } from 'react' import { GetStudentsDetailById } from '../../api/httpRequest' -import { IoReturnDownBack } from 'react-icons/io5' import { Button } from '../Utils/Button/Button' export const InfoStudent = () => { @@ -31,8 +37,8 @@ export const InfoStudent = () => { return (
    -
    -
    +
    +
    Regresar @@ -40,7 +46,7 @@ export const InfoStudent = () => {

    {nombre_completo}

    -
    +

    Info. Personal

    @@ -127,10 +133,19 @@ export const InfoStudent = () => {
    -
    -
    - - +
    + + + +
    diff --git a/client/tailwind.config.js b/client/tailwind.config.js index 75e28fdf..a3f2df88 100644 --- a/client/tailwind.config.js +++ b/client/tailwind.config.js @@ -57,7 +57,8 @@ export default { '2-50-50': '50% 50%', '2-80-20': '80% 20%', '2-20-80': '20% 80%', - '2-93-6': '93.5% 6.5%' + '2-93-6': '93.5% 6.5%', + '3-rows': '10% 80% 10%' }, borderWidth: { 1: '1.5px' From 9eab3b0d44b81b4b26bcd29a4817cc51f7304fd5 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Thu, 5 Oct 2023 19:27:14 -0500 Subject: [PATCH 019/128] v2.24.0-alpha --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 3d50c646..6fdeab31 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.23.0-alpha", + "version": "2.24.0-alpha", "type": "module", "scripts": { "dev": "vite --open", From 139ef0b48f1319f787e6d420aac0df3367769773 Mon Sep 17 00:00:00 2001 From: Loren Q Date: Fri, 6 Oct 2023 12:43:22 -0500 Subject: [PATCH 020/128] feat: add btn routes --- client/src/components/Info-student/InfoStudent.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/client/src/components/Info-student/InfoStudent.jsx b/client/src/components/Info-student/InfoStudent.jsx index 19d0ddc9..87349e5f 100644 --- a/client/src/components/Info-student/InfoStudent.jsx +++ b/client/src/components/Info-student/InfoStudent.jsx @@ -1,4 +1,4 @@ -import { Link, useParams } from 'react-router-dom' +import { Link, useNavigate, useParams } from 'react-router-dom' import { useEffect, useState } from 'react' // Icons @@ -14,7 +14,7 @@ import { Button } from '../Utils/Button/Button' export const InfoStudent = () => { const { id } = useParams() - + const Navigate = useNavigate() const [{ cargo_jefe, celular_aprendiz, email_aprendiz, email_jefe, etapa_formacion, fecha_fin_lectiva, fecha_inicio_practica, nivel_formacion, nombre_arl, nombre_completo, nombre_empresa, nombre_jefe, nombre_modalidad, nombre_programa_formacion, numero_contacto_jefe, numero_documento_aprendiz, numero_ficha }, setInfoStudent] = useState({}) const getInfoStudent = async () => { @@ -34,6 +34,10 @@ export const InfoStudent = () => { getInfoStudent() }, []) + const handleClick = (item) => { + item === 'Bitácoras' ? Navigate('/bitacoras') : item === 'Cartas' ? Navigate('/') : Navigate('/visitas') + } + return (
    @@ -134,14 +138,14 @@ export const InfoStudent = () => {
    - - - From 6a16e11b95d29004f9795c63f2a6957cbdfef67c Mon Sep 17 00:00:00 2001 From: Loren Q Date: Fri, 6 Oct 2023 13:45:14 -0500 Subject: [PATCH 021/128] style: changed UI --- client/src/App.jsx | 2 +- client/src/components/Bitacoras/Bitacoras.jsx | 240 ++++++++---------- .../components/Info-student/InfoStudent.jsx | 19 +- 3 files changed, 117 insertions(+), 144 deletions(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index 18ba458d..b7f48569 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -48,7 +48,7 @@ const App = () => { }> } /> - } /> + } /> diff --git a/client/src/components/Bitacoras/Bitacoras.jsx b/client/src/components/Bitacoras/Bitacoras.jsx index 6d9e58bc..ee6d7c7d 100644 --- a/client/src/components/Bitacoras/Bitacoras.jsx +++ b/client/src/components/Bitacoras/Bitacoras.jsx @@ -1,154 +1,128 @@ +import { useEffect, useState } from 'react' +import { Link, useParams } from 'react-router-dom' import { Accordion, AccordionItem } from '@nextui-org/accordion' // Icons import { FiChevronDown, FiChevronUp } from 'react-icons/fi' import { LuSave } from 'react-icons/lu' import { HiOutlinePencil } from 'react-icons/hi' +import { IoReturnDownBack } from 'react-icons/io5' // Components import { Siderbar } from '../Siderbar/Sidebar' import { Footer } from '../Footer/Footer' import { Button } from '../Utils/Button/Button' +import { Select } from '../Utils/Select/Select' +import { GetStudentsDetailById } from '../../api/httpRequest' export const Bitacoras = () => { - const form = ( -
    -
    - -

    2473196 - ADSO

    -
    -
    -

    Estudiante No. 1

    -

    CC 000000000

    -
    -