feat: restringir envio si existen consolidados pendientes#131
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Este PR busca restringir el envío de un consolidado desde la vista de gestión, realizando una verificación previa contra el backend para evitar envíos cuando ya existen consolidados “pendientes” para el mismo periodo/proyecto.
Changes:
- Convierte
accionEnviaren un métodoasyncpara poder consultar al backend antes de ejecutar elPUT. - Obtiene el estado
ENVdesde el catálogo de estados y consulta consolidado(s) existentes en ese estado para el mismo periodo/proyecto. - Bloquea el envío mostrando un modal informativo si detecta otro consolidado “enviado”.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+351
to
+377
| // Obtener el id del estado 'ENV' | ||
| const estadoEnv = this.estadosConsolidado.opciones.find( | ||
| (estado) => estado.codigo_abreviacion === "ENV" | ||
| ); | ||
| putPlan.estado_consolidado_id = estado._id; | ||
| if (!estadoEnv) { | ||
| this.popUpManager.showErrorAlert( | ||
| this.translate.instant("ptd.fallo_actualizar_consolidado") | ||
| ); | ||
| return; | ||
| } | ||
|
|
||
| // Verificar que no exista otro consolidado en estado 'ENV' para mismo periodo y proyecto | ||
| try { | ||
| const periodoId = consolidado.periodo_id || this.periodos.select?.Id; | ||
| const proyectoId = consolidado.proyecto_academico_id || this.proyectos.select?.Id || 0; | ||
| const query = `consolidado_docente?query=activo:true,periodo_id:${periodoId},proyecto_academico_id:${proyectoId},estado_consolidado_id:${estadoEnv._id}&limit=0`; | ||
| const resp: any = await firstValueFrom(this.planTrabajoDocenteService.get(query)); | ||
| const existentes: any[] = resp?.Data ?? []; | ||
| const otrosEnviados = existentes.filter((c: any) => String(c._id) !== String(consolidado._id)); | ||
| if (otrosEnviados.length > 0) { | ||
| this.popUpManager.showPopUpGeneric( | ||
| "", | ||
| "Ya existe otro consolidado en estado 'Enviado' para este periodo y proyecto. No es posible realizar el envío.", | ||
| MODALS.INFO, | ||
| false | ||
| ); | ||
| return; |
| // Verificar que no exista otro consolidado en estado 'ENV' para mismo periodo y proyecto | ||
| try { | ||
| const periodoId = consolidado.periodo_id || this.periodos.select?.Id; | ||
| const proyectoId = consolidado.proyecto_academico_id || this.proyectos.select?.Id || 0; |
diagutierrezro
approved these changes
May 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
udistrital/sga_documentacion_inversion#268