{% 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 ['기타', '경조사', '운동비']) %}
{{ row.account_group }}
{{ row.category }}
{% for year in benefit_report.summary_years %}
{% if is_drill_category and row.year_amounts.get(year, 0) %}
{% else %}
{{ "{:,.0f}".format(row.year_amounts.get(year, 0)) }}
{% endif %}
{% endfor %}
{% 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 %}
{% else %}
조회된 자료가 없습니다.
{% endfor %}
거래처별 요약
구분
분류
거래처
개인/귀속
직급
금액
건수
{% for row in benefit_report.vendor_summary_rows %}
{{ row.account_group }}
{{ row.category }}
{{ row.vendor_name }}
{{ row.hanmac_member_grade or "" }}
{% else %}
조회된 자료가 없습니다.
{% endfor %}
전표 상세
연도
일자
전표번호
계정
거래처
직급
분류
차변금액
대변금액
적요
상대계정
{% for row in benefit_report.detail_rows %}
{{ 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 }}
{% else %}
조회된 자료가 없습니다.
{% endfor %}
화면에는 {{ "{:,}".format(benefit_report.shown_count) }}행이 표시됩니다. 엑셀에는 현재 필터의 전체 {{ "{:,}".format(benefit_report.row_count) }}행이 포함됩니다.