Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
نموذج تقييم الأداء الوظيفي
(1)
(2)
(3)
(4)
(5)
الدرجة النهائية: 0 / 0
قاعدة بيانات التقييمات
وظيفة: ${rec.job || '-'} | دائرة: ${rec.department || '-'} | تاريخ: ${rec.hireDate || '-'}
تقييم موظف
الاسم: ${rec.name}
الوظيفة: ${rec.job}
الدرجة: ${rec.score}/${rec.max}
مصدّر من نظام التقييم
`; html2pdf().from(el).save(`${rec.name || 'evaluation'}_${rec.id}.pdf`); } /* طباعة الفورم الحالي */ function printForm() { calculateScore(); window.print(); } /* حفظ كامل الاستمارة كـ PDF */ function savePDF() { calculateScore(); const container = document.getElementById("formContainer"); // خيارات (يمكن تعديل اسم الملف) html2pdf().from(container).set({ filename: `evaluation_${Date.now()}.pdf` }).save(); } /* تصدير CSV لكل السجلات */ function exportCSV() { const db = JSON.parse(localStorage.getItem("evaluations") || "[]"); if (db.length === 0) { alert("لا توجد بيانات للتصدير."); return; } const header = ["id","name","job","education","department","division","hireDate","currentStart","score","max"]; const rows = db.map(r => header.map(h => `"${(r[h] !== undefined ? String(r[h]).replace(/"/g,'""') : "")}"`).join(",")); const csv = [header.join(","), ...rows].join("\\n"); const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "evaluations_export.csv"; document.body.appendChild(a); a.click(); a.remove(); URL.revokeObjectURL(url); alert("تم تصدير ملف CSV."); } /* تصدير كإكسل بسيط (تصدير CSV يفتح بالاكسل) */ /* يمكنك لاحقاً تحسين التصدير ليكون XLSX بمعالجة إضافية */ </script>