Servicio de Actividades Deportivas durante el periodo de 5 de abril de 2022 a 4 de abril de 2023, en los Centros Deportivos Municipales de gestión directa del Instituto Municipal de Deportes del Ayuntamiento de Sevilla
Expediente: 2021/001340
ENTIDADES LOCALES>Andalucía>Sevilla>Ayuntamientos>Sevilla>Instituto Municipal de Deportes del Ayuntamiento de Sevilla
Órgano de Contratación | Consejo de Gobierno del Instituto Municipal de Deportes del Ayuntamiento de Sevilla |
Estado de la Licitación | Adjudicada |
Presupuesto base de licitación | 2,612,806.80€ |
Tipo de Contrato | Servicios |
Código CPV | 92600000 Servicios deportivos. |
Lugar de Ejecución | España - Sevilla |
Procedimiento de contratación | Abierto |
Enlace Licitación |
-
Resumen Licitación
Publicación en plataforma | Documento | Ver documentos | DOUE | |
---|---|---|---|---|
Envío | Publicación | |||
12/01/2022 12:49:46 | Rectificación de Anuncio de Licitación | 12/01/2022 | ||
23/12/2021 13:09:09 | Anuncio de Licitación | 21/12/2021 | ||
17/01/2022 11:49:35 | Rectificación de Pliego | Vacío | Vacío | |
23/12/2021 13:25:29 | Pliego | Vacío | Vacío | |
29/04/2022 10:52:31 | Adjudicación | Vacío | Vacío |
-
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=bf%2BbtmA37PiiEJrVRqloyA%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