{% extends "base.html" %} {% block title %}日报管理 - 工厂工时效率管理系统{% endblock %} {% block content %}

日报管理

新建日报
{% for report in reports %} {% endfor %}
日期 部门 线别 直接工时 间接工时 总计 操作
投入 产出 效率 投入 产出 效率 总效率 异常率
{{ report.report_date.strftime('%Y-%m-%d') }} {{ report.department }} {{ report.line }} {{ "%.2f"|format(report.direct_input_hours or 0) }} {{ "%.2f"|format(report.direct_output_hours or 0) }} {{ "%.1f"|format(report.direct_efficiency or 0) }}% {{ "%.2f"|format(report.indirect_input_hours or 0) }} {{ "%.2f"|format(report.indirect_output_hours or 0) }} {{ "%.1f"|format(report.indirect_efficiency or 0) }}% {{ "%.1f"|format(report.overall_efficiency or 0) }}% {{ "%.1f"|format(report.abnormal_hours_rate or 0) }}%
{% if reports|length == 0 %}

暂无日报记录

创建第一条日报
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}