{% extends "erp_base.html" %} {% block content %}
{% if is_approver %} 승인 대기 {% if pending_count %}{{ pending_count }}{% endif %} 승인완료 {% endif %} 엑셀(내 항목) {% if is_approver %} 엑셀(전체) {% endif %} {% if is_approver %} ⚙ 설정 {% endif %}
총 건수 {{ summary.count }} 건
총 금액 {{ "{:,}".format(summary.total) }} 원
{% for status in statuses %}
{{ status }} {{ summary.by_status.get(status, 0) }}
{% endfor %}

경비 등록

필수 항목 입력 후 등록. 등록 후 항목별로 첨부/제출.

경비 내역

{{ items | length }}건 합계 {{ "{:,}".format(month_total) }} {% if supports_workflow %} {% endif %}
{% for it in items %} {% else %} {% endfor %}
사용일 분류 수단 가맹점 금액 상태
{% if it.status in ('작성중', '반려') and supports_workflow %} {% endif %} {{ it.spent_at }} {{ it.category }} {{ it.method }}
{{ it.merchant }}
{% if it.memo %}
{{ it.memo }}
{% endif %} {% if it.reject_reason %}
반려: {{ it.reject_reason }}
{% endif %}
{{ "{:,}".format(it.amount) }} 원 {% if it.status == '작성중' or it.status == '반려' %} {{ it.status }} {% elif it.status == '제출' %} {{ it.status }} {% elif it.status == '승인' %} {{ it.status }} {% else %} {{ it.status }} {% endif %} {% if it.status in ('작성중', '반려') and supports_workflow %} {% endif %} {% if it.status in ('작성중', '반려') %} {% elif it.status == '제출' and supports_workflow %} {% endif %}
등록된 경비가 없습니다.
{% endblock %} {% block scripts %} {% endblock %}