{% extends "base.html" %} {% block title %}退费记录 - 学生课程管理系统{% endblock %} {% block content %}

退费记录

申请退费 {% if current_user.has_permission('refund_export') %} 导出{% endif %}
{% for r in records %} {% endfor %} {% if not records %} {% endif %}
ID时间学员课程退费金额剩余正课扣回赠课已消课时金额材料费原因状态
{{ r.id }} {{ r.created_at.strftime('%Y-%m-%d') }} {{ r.student.name }} {{ r.course.name }} ¥{{ r.refund_amount }} {{ r.remaining_normal_hours }} {{ r.deduct_gifted_hours }} ¥{{ r.consumed_hours_value }} ¥{{ r.material_fee_per_quarter * r.quarters }} {{ r.reason or '-' }} {% if r.status == 1 %}已退{% else %}待审核{% endif %}
暂无退费记录
{% endblock %}