SGEX000/21 Mapas estratégicos de ruido y memoria de planes de acción contra ruido en carreteras de Red del Estado fases 3 y 4. Plan de recuperación transformación y Resiliencia, Next Generation EU
Expediente: 830219028146
ADMINISTRACIÓN GENERAL DEL ESTADO>Ministerio de Transportes, Movilidad y Agenda Urbana>Secretaría de Estado de Transportes, Movilidad y Agenda Urbana>Secretaría General de Infraestructuras>D.G. de Carreteras
Órgano de Contratación | Dirección General de Carreteras |
Estado de la Licitación | Parcialmente Resuelta |
Presupuesto base de licitación | 10,620,086.00€ |
Tipo de Contrato | Servicios |
Código CPV | 71311000 Servicios de consultoría en ingeniería civil. |
Lugar de Ejecución | España - España |
Procedimiento de contratación | Abierto |
Adjudicatario | Ver detalle de la adjudicación |
Importe de Adjudicación | .€ |
Enlace Licitación |
-
Resumen Licitación
Publicación en plataforma | Documento | Ver documentos | Publicación BOE | DOUE | |
---|---|---|---|---|---|
Envío | Publicación | ||||
25/12/2021 09:40:19 | Anuncio de Licitación | 23/12/2021 | |||
27/12/2021 07:10:32 | Pliego | Vacío | Vacío | ||
27/10/2022 09:29:32 | Adjudicación | Vacío | Vacío | ||
28/01/2023 15:35:01 | Formalización | 26/01/2023 | Vacío | ||
14/01/2023 12:35:18 | Formalización | 12/01/2023 | Vacío | ||
15/12/2022 12:46:41 | Formalización | 13/12/2022 | |||
07/12/2022 12:30:40 | Formalización | 05/12/2022 | Vacío | ||
01/12/2022 12:40:11 | Formalización | 29/11/2022 |
-
Otros Documentos
Si desea copiar la URL pulse boton derecho sobre este enlace y seleccione la opción 'Copiar acceso directo'https://contrataciondelestado.es/wps/poc?uri=deeplink:detalle_licitacion&idEvl=Pw2f6%2BTQpxyrz3GQd5r6SQ%3D%3D
Su navegador no permite scripts o están desactivados Su navegador no permite scripts o están desactivados |
*/ /* event.eventPhase 0. NONE 1. CAPTURING_PHASE - The event flow is in capturing phase 2. AT_TARGET - The event flow is in target phase, i.e. it is being evaluated at the event target 3. BUBBLING_PHASE - The event flow is in bubbling phase */ var ctrlsTratados = ""; var forms_list = document.forms; var elements_list = document.getElementsByName("dgpeModKeyBoardEvents"); // Es necesaria la pulsacion de una tecla para activar el var allowEnter = false; console.log("-allowEnter="+allowEnter); /* * keyEventListener * Implementa el comportamiento de onkeydown, onkeypress, onkeyup * Solo estamos tratando el [chr(13)] */ function keyEventListener(evt) { var charCode; if ((typeof evt)=="undefined") return false; charCode = (evt.which) ? evt.which : evt.keyCode; console.log("{"+evt.type+" "+charCode+" "+evt.repeat+" "+evt.currentTarget+" "+evt.target+"}"); if (charCode == "13" evt.type == "keydown"){ console.log("-"+evt.type+"["+charCode+"](return true)"); return true; } else if(charCode == "13" evt.type == "keypress"){ if(allowEnter == true) { allowEnter = false; console.log("-allowEnter="+allowEnter); console.log("-"+evt.type+"["+charCode+"](return true)"); return true; } else { console.log("-"+evt.type+"["+charCode+"](return false)"); return false; } } /*else if(charCode == "13" evt.type == "keyup"){ allowEnter = true; console.log("-allowEnter=true"); }*/ allowEnter = true; console.log("-allowEnter="+allowEnter); console.log("-"+evt.type+"["+charCode+"](return true)"); return true; } // Registramos el tratamiento previo de onkeydown, onkeypress, onkeyup en los elementos tratados function registrarControl(ctrlTratado) { ctrlsTratados += "{[localName: " + ctrlTratado.localName + "]"; ctrlsTratados += "[name: " + ctrlTratado.getAttribute("name") + "]"; ctrlsTratados += "[id: " + ctrlTratado.getAttribute("id") + "]"; ctrlsTratados += "[onkeydown: " + ctrlTratado.getAttribute("onkeydown") + "]"; ctrlsTratados += "[onkeypress: " + ctrlTratado.getAttribute("onkeypress") + "]"; ctrlsTratados += "[onkeyup: " + ctrlTratado.getAttribute("onkeyup") + "]}"; } /* * Cuando applyModKeyBoardEvents es "apply", se modifica el comportamiento por defecto * de los eventos onkeydown, onkeypress y onkeyup en los elementos