diff --git a/HerramientaCASA/Components/Pages/Comun/OtrosTrabajos.razor b/HerramientaCASA/Components/Pages/Comun/OtrosTrabajos.razor index 9d1ec3c..83a7914 100644 --- a/HerramientaCASA/Components/Pages/Comun/OtrosTrabajos.razor +++ b/HerramientaCASA/Components/Pages/Comun/OtrosTrabajos.razor @@ -59,11 +59,21 @@
- - @if (!string.IsNullOrEmpty(objetoCASA.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 30).Descripcion)) + @if (_HerramientaCASAPadre != null) { - @UtilidadesCASA.CreateTooltip(objetoCASA.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 30).Descripcion) + @if (!string.IsNullOrEmpty(objetoCASA.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 30).Descripcion)) + { + @UtilidadesCASA.CreateTooltip(objetoCASA.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 30).Descripcion) + } } + else + { + @if (!string.IsNullOrEmpty(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 36).Descripcion)) + { + @UtilidadesCASA.CreateTooltip(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 36).Descripcion) + } + } + Otros trabajos incluidos en el Encargo
diff --git a/HerramientaCASA/Components/Pages/LicitacionesGrids/CostesProLicitaciones.razor b/HerramientaCASA/Components/Pages/LicitacionesGrids/CostesProLicitaciones.razor index 3446bbd..5beac65 100644 --- a/HerramientaCASA/Components/Pages/LicitacionesGrids/CostesProLicitaciones.razor +++ b/HerramientaCASA/Components/Pages/LicitacionesGrids/CostesProLicitaciones.razor @@ -16,7 +16,14 @@ - Plazo de presentación de la documentación: +
+ @if (!string.IsNullOrEmpty(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 34).Descripcion)) + { + @UtilidadesCASA.CreateTooltip(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 34).Descripcion) + } + Plazo de presentación de la documentación: + +
@if (objetoLicitaciones.IncrementoUrgencia > 0) {
@@ -64,8 +71,16 @@ + +
+ @if (!string.IsNullOrEmpty(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 35).Descripcion)) + { + @UtilidadesCASA.CreateTooltip(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 35).Descripcion) + } G.G. + B.I. (40/19 Junta Consultiva de Contratación Pública del Estado) + +
diff --git a/HerramientaCASA/Components/Pages/LicitacionesGrids/FasesTrabajoLicitaciones.razor b/HerramientaCASA/Components/Pages/LicitacionesGrids/FasesTrabajoLicitaciones.razor index bf1306e..14e381f 100644 --- a/HerramientaCASA/Components/Pages/LicitacionesGrids/FasesTrabajoLicitaciones.razor +++ b/HerramientaCASA/Components/Pages/LicitacionesGrids/FasesTrabajoLicitaciones.razor @@ -5,7 +5,12 @@
-
Fases
+
+ @if (!string.IsNullOrEmpty(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 33).Descripcion)) + { + @UtilidadesCASA.CreateTooltip(objetoLicitaciones.Enumerados.PuntosInformacion.First(x => x.idPuntosInformacion == 33).Descripcion) + } + Fases
diff --git a/HerramientaCASA/Components/Pages/LicitacionesGrids/TrabajoProfLicitacionesGrid.razor b/HerramientaCASA/Components/Pages/LicitacionesGrids/TrabajoProfLicitacionesGrid.razor index 7d89b4b..fe9b97c 100644 --- a/HerramientaCASA/Components/Pages/LicitacionesGrids/TrabajoProfLicitacionesGrid.razor +++ b/HerramientaCASA/Components/Pages/LicitacionesGrids/TrabajoProfLicitacionesGrid.razor @@ -22,7 +22,13 @@
- +
- + @foreach (var intervencion in intervencionesAux) { diff --git a/bdHerramientaCACOA/LICITACIONES.cs b/bdHerramientaCACOA/LICITACIONES.cs index c633510..b3155ad 100644 --- a/bdHerramientaCACOA/LICITACIONES.cs +++ b/bdHerramientaCACOA/LICITACIONES.cs @@ -25,6 +25,8 @@ namespace bdHerramientaCACOA public string Descripcion { get; set; } = "Licitación Edificación " + DateTime.Now; public class EnumeradosLICITACIONES { + public List PuntosInformacion { get; set; } = new List(); + public List GruposTipologias { get; set; } = new List(); public List Intervenciones { get; set; } = new List(); public List ListaOtrosTrabajos { get; set; } = new List(); @@ -109,6 +111,10 @@ namespace bdHerramientaCACOA checkListCostIndirectos(listaFases); + + Enumerados.PuntosInformacion = bd.puntosinformacion.Where(x => x.idTipoHerramienta == 32).ToList(); + + //Cargamos la lista de otros costes de trabajo var grupoOtrosTrab = bd.gruposenumeraciones.FirstOrDefault(x => x.Grupo == "OTROSTRAB"); Enumerados.ListaOtrosTrabajos = ListaEnumeracionCASA(Utilidades.devolverListadoOrdenadoEnumeracion(bd, grupoOtrosTrab.idGrupoEnumeracion).ToList());