{% extends "base.html" %} {% block title %}복리/접대비 분류{% endblock %} {% block content %} {% set filters = benefit_report.filters %}

복리후생비/접대비 분류

{{ filters.start_year }}년부터 {{ filters.end_year }}년까지 WEHAGO 전표 기준

총 금액{{ "{:,.0f}".format(benefit_report.total_amount) }}
전표 행{{ "{:,}".format(benefit_report.row_count) }}
거래처 요약{{ "{:,}".format(benefit_report.vendor_summary_rows|length) }}
직급 확인{{ "{:,}".format(benefit_report.hanmac_grade_match_count) }}
미리보기{{ "{:,}".format(benefit_report.shown_count) }}

분류/연도별 합계

{% for year in benefit_report.summary_years %} {% endfor %} {% for row in benefit_report.category_year_summary_rows %} {% set is_drill_category = (row.account_group == '복리후생비' and row.category in ['임원 개인성 비용', '기타', '경조사']) or (row.account_group == '접대비' and row.category in ['기타', '경조사', '운동비']) %} {% for year in benefit_report.summary_years %} {% endfor %} {% else %} {% endfor %}
구분 분류{{ year }}합계 건수
{{ row.account_group }} {{ row.category }} {% if is_drill_category and row.year_amounts.get(year, 0) %} {% else %} {{ "{:,.0f}".format(row.year_amounts.get(year, 0)) }} {% endif %} {% if is_drill_category and row.total_amount %} {% else %} {{ "{:,.0f}".format(row.total_amount) }} {% endif %} {% if is_drill_category and row.row_count %} {% else %} {{ "{:,}".format(row.row_count) }} {% endif %}
조회된 자료가 없습니다.

거래처별 요약

{% for row in benefit_report.vendor_summary_rows %} {% else %} {% endfor %}
구분 분류 거래처 개인/귀속 직급 금액 건수
{{ row.category }} {{ row.vendor_name }} {{ row.hanmac_member_grade or "" }}
조회된 자료가 없습니다.

전표 상세

{% for row in benefit_report.detail_rows %} {% else %} {% endfor %}
연도 일자 전표번호 계정 거래처 직급 분류 차변금액 대변금액 적요 상대계정
{{ row.year }} {{ row.ledger_date }} {{ row.voucher_no }} {{ row.account_name }} {{ row.vendor_name }} {{ row.hanmac_member_grade or "" }}
{{ "{:,.0f}".format(row.debit) }} {{ "{:,.0f}".format(row.credit) }} {{ row.description }} {{ row.counterpart_details }}
조회된 자료가 없습니다.

화면에는 {{ "{:,}".format(benefit_report.shown_count) }}행이 표시됩니다. 엑셀에는 현재 필터의 전체 {{ "{:,}".format(benefit_report.row_count) }}행이 포함됩니다.

{% endblock %} {% block script %} {% endblock %}