An toàn cho bệnh nhân

Thang đo nguy cơ té ngã Morse

Đánh giá và phân loại nguy cơ té ngã của bệnh nhân trong môi trường chăm sóc sức khỏe. Công cụ thiết yếu để thiết lập ngay các biện pháp phòng ngừa.

Đánh giá theo Thang điểm Morse phân tích 6 biến số lâm sàng nghiêm ngặt và đóng vai trò quan trọng trong kế hoạch chăm sóc NANDA.
0-24 điểm: Nguy cơ thấp 25-44 điểm: Nguy cơ trung bình ≥ 45 điểm: Nguy cơ cao

Tiêu chí đánh giá

Điểm số từ 0 đến 125
`; } async function gerarPDF() { if (!window.html2pdf) { try { await new Promise((resolve, reject) => { const s = document.createElement("script"); s.src = "https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"; s.crossOrigin = "anonymous"; s.async = true; s.onload = resolve; s.onerror = () => reject(new Error("Không tải được html2pdf")); document.head.appendChild(s); }); } catch (e) { alert("Không thể tải tài nguyên để tạo PDF. Vui lòng thử lại sau."); return; } } const htmlStr = getHTMLRelatorio(false); const tempDiv = document.createElement("div"); tempDiv.innerHTML = htmlStr; tempDiv.style.display = "none"; document.body.appendChild(tempDiv); const nomeClean = document.getElementById("nome").value ? document.getElementById("nome").value.replace(/\s+/g, "_").toLowerCase() : "paciente"; const nomeArquivo = `laudo-morse-${nomeClean}`; const opt = { margin: [10, 10, 10, 10], filename: `${nomeArquivo}.pdf`, image: { type: "jpeg", quality: 0.98 }, html2canvas: { scale: 2, useCORS: true, logging: false }, jsPDF: { unit: "mm", format: "a4", orientation: "portrait" }, }; html2pdf() .set(opt) .from(tempDiv) .save() .then(() => { document.body.removeChild(tempDiv); }) .catch(() => { document.body.removeChild(tempDiv); alert("Lỗi khi tạo PDF."); }); } function imprimirLaudo() { const htmlStr = getHTMLRelatorio(true); const janela = window.open("", "_blank"); janela.document.write(htmlStr); janela.document.close(); } // Eventos document.getElementById("btnCalcular").addEventListener("click", calcular); document.getElementById("btnLimpar").addEventListener("click", limpar); document.getElementById("btnGerarPDF").addEventListener("click", gerarPDF); document.getElementById("btnImprimir").addEventListener("click", imprimirLaudo); // Inicia a aplicação renderizarItens(); })();