{% extends 'layout/base.html' %} {% block title %}个人统计 - SmartDSP考勤管理系统{% endblock %} {% block content %}
周次 | 实际工作时长 | 班内工作时长 | 加班时长 | 旷工天数 | 考勤状态 | 操作 |
---|---|---|---|---|---|---|
{{ record.week_start_date.strftime('%Y-%m-%d') }}
至 {{ record.week_end_date.strftime('%Y-%m-%d') }}
|
{{ "%.1f"|format(record.actual_work_hours) }}h | {{ "%.1f"|format(record.class_work_hours) }}h | {% if record.overtime_hours > 0 %} {{ "%.1f"|format(record.overtime_hours) }}h {% else %} 0h {% endif %} | {% if record.absent_days > 0 %} {{ record.absent_days }}天 {% else %} 0天 {% endif %} | {% set performance_score = (record.actual_work_hours / 40 * 100) if record.actual_work_hours else 0 %} {% if performance_score >= 80 %} 优秀 {% elif performance_score >= 60 %} 良好 {% else %} 待改善 {% endif %} | 详情 |
当前筛选条件下没有找到考勤记录