{"id":3235,"date":"2022-11-28T07:52:32","date_gmt":"2022-11-28T12:52:32","guid":{"rendered":"https:\/\/wcms.com.co\/?page_id=3235"},"modified":"2023-08-24T09:07:44","modified_gmt":"2023-08-24T14:07:44","slug":"certificados-de-asistencia-2022","status":"publish","type":"page","link":"https:\/\/wcms.com.co\/en\/certificados-de-asistencia-2022\/","title":{"rendered":"Certificados de asistencia 2022"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3235\" class=\"elementor elementor-3235\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-41d4d841 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"41d4d841\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-13ce547\" data-id=\"13ce547\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3672f69 colorTexto elementor-widget elementor-widget-heading\" data-id=\"3672f69\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Descargue su certificado de asistencia WCMS 2022<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e2eaa26 elementor-widget elementor-widget-spacer\" data-id=\"e2eaa26\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ffc0546 elementor-widget elementor-widget-shortcode\" data-id=\"ffc0546\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"form\">\n   <!-- <ul class=\"tab-group\">-->\n      <!--<li class=\"tab active\"><a href=\"#assistants\">Asistentes<\/a><\/li>-->\n     <!-- <li class=\"tab\"><a href=\"#speakers\">Ponentes<\/a><\/li>-->\n    <!--<\/ul>-->\n  <div id=\"assistants\" style=\"text-align:center\">   \n    <!--<h3 class=\"colorTexto\" >Certificados I Congreso Internacional de Simulaci\u00f3n M\u00e9dica<\/h3>-->\n    <form id=\"form-assistants2\">\n      <div class=\"field-wrap\">\n        <label>\n          Digite su c\u00e9dula<span class=\"req\">*<\/span>\n        <\/label>\n        <input id=\"cedula\" type=\"number\"required autocomplete=\"off\" style=\"border:none;\"\/>\n      <\/div>\n      <button id=\"submit\" type=\"submit\" class=\"button button-block\" >Descargar Certificado<\/button>\n    <\/form>\n  <\/div>  \n<\/div> <!-- \/form -->\n\n<script>\n  async function getCSVFByDocId(id, rango, key) {\n  let url = `https:\/\/sheets.googleapis.com\/v4\/spreadsheets\/${id}\/values\/${rango}?key=${key}`;\n  const response = await fetch(url);\n  return response.json();\n}\n\nfunction procesaDatosAJSON(infoJson) {\n  let entries = infoJson.values;\n  let numFilas = entries.length;\n\n  \/\/Procesamos los datos\n  let campos = [];\n  let datos = [];\n\n  for(var f = 0; f < numFilas; f++) {\n      let fila = entries[f];\n      \/\/Recorremos cada fila y por cada columna creamos un nuevo objeto\n      let obj = {};\n\n      for(var c = 0; c < fila.length; c++) {\n          celda = fila[c];\n          if (f == 0){\n              \/\/ Nombres de los campos ubicados en el thead\n              campos.push(celda);\n          } else {\n              \/\/En las dem\u00e1s filas asignamos la propiedad que corresponda seg\u00fan la posici\u00f3n\n              obj[campos[c]] = celda;\n          }\n      }\n  \n      \/\/A\u00f1adimos el nuevo objeto a la colecci\u00f3n de datos (si no es la primera fila)\n      if (f > 0) datos.push(obj);\n  }\n\n  return datos;\n}\n\nfunction datos(datos) {\n  let cedula = jQuery(\"#cedula\");\n\n  for (let item of datos) {  \n    if (cedula.val() == item.cedula) {\n      var name = item.nombre\n      var ide = item.cedula\n      var tipo = item.tipo\n      var ciudad = item.ciudad\n    }\n  }\n\n  if (name) {\n    var xhr = new XMLHttpRequest();\n    \/\/ '?name=' + name + '<br>?cedula=' + ide, true);\n    xhr.open('GET', \"https:\/\/wcms.com.co\/wp-content\/plugins\/wcms_2022\/includes\/pdf.php\" + '?name=' + name + '&cedula=' + ide + '&tipo=' + tipo + '&ciudad=' + ciudad, true);\n    xhr.responseType = 'blob';\n\n    xhr.onload = function(e) {\n      \n      if (this.status == 200) {\n        var blob = new Blob([this.response], {type: 'application\/pdf'});\n        var link = document.createElement('a');\n        link.href = window.URL.createObjectURL(blob);\n        link.download = \"certificado.pdf\"; \n        link.click();\n        cedula.val(\"\");\n        jQuery(\"label\").removeClass('active highlight');   \n      }\n    };\n  \n    xhr.send(); \n  } else {\n    alert(\"Su c\u00e9dula no fue encontrada\");\n    cedula.val(\"\");\n    jQuery(\"label\").removeClass('active highlight'); \n  } \n}\n\njQuery(document).on('submit','#form-assistants2', function(e) {\n  e.preventDefault();\n  \n  getCSVFByDocId('1sYncbtH3iBUYYJKxMP_ZWU74zJ62PgEL23HEsnps5uA', 'A:Z', 'AIzaSyBnk4I7IbLq1GV4wVuIypF6lAXijdVknSw').then(procesaDatosAJSON).then(datos);\n});\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Download your WCMS 2022 certificate of attendance<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","footnotes":""},"class_list":["post-3235","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Certificados de asistencia 2022 - WCMS x CIII<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wcms.com.co\/en\/certificados-de-asistencia-2022\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Certificados de asistencia 2022 - WCMS x CIII\" \/>\n<meta property=\"og:description\" content=\"Descargue su certificado de asistencia WCMS 2022\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wcms.com.co\/en\/certificados-de-asistencia-2022\/\" \/>\n<meta property=\"og:site_name\" content=\"WCMS x CIII\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Fundacionuniveristarianavarra-UniNavarra-1917912191768659\/\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-24T14:07:44+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@uninavarraeduca\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wcms.com.co\\\/certificados-de-asistencia-2022\\\/\",\"url\":\"https:\\\/\\\/wcms.com.co\\\/certificados-de-asistencia-2022\\\/\",\"name\":\"Certificados de asistencia 2022 - WCMS x CIII\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#website\"},\"datePublished\":\"2022-11-28T12:52:32+00:00\",\"dateModified\":\"2023-08-24T14:07:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wcms.com.co\\\/certificados-de-asistencia-2022\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wcms.com.co\\\/certificados-de-asistencia-2022\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wcms.com.co\\\/certificados-de-asistencia-2022\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/wcms.com.co\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Certificados de asistencia 2022\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/\",\"name\":\"WCMS x CIII\",\"description\":\"WCMS x CIII- World Congress of Medical Simulation x CIINA\",\"publisher\":{\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#organization\",\"name\":\"WCMS x CIII\",\"url\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wcms.com.co\\\/wp-content\\\/uploads\\\/2023\\\/09\\\/LOGOS-DE-PAGINA-WCMS-CONTORNO-1.png\",\"contentUrl\":\"https:\\\/\\\/wcms.com.co\\\/wp-content\\\/uploads\\\/2023\\\/09\\\/LOGOS-DE-PAGINA-WCMS-CONTORNO-1.png\",\"width\":1500,\"height\":158,\"caption\":\"WCMS x CIII\"},\"image\":{\"@id\":\"https:\\\/\\\/wcms.com.co\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Fundacionuniveristarianavarra-UniNavarra-1917912191768659\\\/\",\"https:\\\/\\\/x.com\\\/uninavarraeduca\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Certificados de asistencia 2022 - WCMS x CIII","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wcms.com.co\/en\/certificados-de-asistencia-2022\/","og_locale":"en_US","og_type":"article","og_title":"Certificados de asistencia 2022 - WCMS x CIII","og_description":"Descargue su certificado de asistencia WCMS 2022","og_url":"https:\/\/wcms.com.co\/en\/certificados-de-asistencia-2022\/","og_site_name":"WCMS x CIII","article_publisher":"https:\/\/www.facebook.com\/Fundacionuniveristarianavarra-UniNavarra-1917912191768659\/","article_modified_time":"2023-08-24T14:07:44+00:00","twitter_card":"summary_large_image","twitter_site":"@uninavarraeduca","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wcms.com.co\/certificados-de-asistencia-2022\/","url":"https:\/\/wcms.com.co\/certificados-de-asistencia-2022\/","name":"Certificados de asistencia 2022 - WCMS x CIII","isPartOf":{"@id":"https:\/\/wcms.com.co\/en\/#website"},"datePublished":"2022-11-28T12:52:32+00:00","dateModified":"2023-08-24T14:07:44+00:00","breadcrumb":{"@id":"https:\/\/wcms.com.co\/certificados-de-asistencia-2022\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wcms.com.co\/certificados-de-asistencia-2022\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wcms.com.co\/certificados-de-asistencia-2022\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/wcms.com.co\/"},{"@type":"ListItem","position":2,"name":"Certificados de asistencia 2022"}]},{"@type":"WebSite","@id":"https:\/\/wcms.com.co\/en\/#website","url":"https:\/\/wcms.com.co\/en\/","name":"WCMS x CIII","description":"WCMS x CIII- World Congress of Medical Simulation x CIINA","publisher":{"@id":"https:\/\/wcms.com.co\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wcms.com.co\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wcms.com.co\/en\/#organization","name":"WCMS x CIII","url":"https:\/\/wcms.com.co\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wcms.com.co\/en\/#\/schema\/logo\/image\/","url":"https:\/\/wcms.com.co\/wp-content\/uploads\/2023\/09\/LOGOS-DE-PAGINA-WCMS-CONTORNO-1.png","contentUrl":"https:\/\/wcms.com.co\/wp-content\/uploads\/2023\/09\/LOGOS-DE-PAGINA-WCMS-CONTORNO-1.png","width":1500,"height":158,"caption":"WCMS x CIII"},"image":{"@id":"https:\/\/wcms.com.co\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Fundacionuniveristarianavarra-UniNavarra-1917912191768659\/","https:\/\/x.com\/uninavarraeduca"]}]}},"_links":{"self":[{"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/pages\/3235","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/comments?post=3235"}],"version-history":[{"count":0,"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/pages\/3235\/revisions"}],"wp:attachment":[{"href":"https:\/\/wcms.com.co\/en\/wp-json\/wp\/v2\/media?parent=3235"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}