"; aux = aux + ""; } if(codcurso != "0"){ aux = aux + ""; } aux = aux + ""; if(cursoescolhido == true){ aux = aux + "
"; aux = aux + " | "; aux = aux + ""; aux = aux + " | "; aux = aux + " "; aux = aux + "
"; } document.getElementById("cursos").innerHTML = aux; } } }); } function PorNoCarrinho(CodAgendaCurso) { Conexao = sessionStorage.getItem('conexaosisvida'); $.ajax({ type: "POST", url: servidor + "/api/APIAgendas?Conexao=" + Conexao + "&CodAgendaCurso=" + CodAgendaCurso+ "&Flag=P", contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { if (response.Sucesso == false) { alert(response.Mensagem); } else { GetCursos(); } } }); } function RetirarDoCarrinho(CodAgendaCurso) { Conexao = sessionStorage.getItem('conexaosisvida'); $.ajax({ type: "POST", url: servidor + "/api/APIAgendas?Conexao=" + Conexao + "&CodAgendaCurso=" + CodAgendaCurso + "&Flag=D", contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { if (response.Sucesso == false) { alert(response.Mensagem); } else { GetCursos(); } } }); } function FinalizarCompra() { var conexao = sessionStorage.getItem('conexaosisvida'); if(conexao == null) conexao = "0"; window.location.href = servidor + "/WorldPress/FinalizaCompra?CodClienteConexao=" + conexao; }