{% extends 'ibs/layouts/base.html' %} {% load static %} {% load humanize %} {% block title %}IBS - 입출금 내역 조회{% endblock %} {% block content %}
| 본사 계좌별 자금현황 ({{ confirm_date }}) 현재 | (단위: 원) | |||||
|---|---|---|---|---|---|---|
| 구분 | 전일잔액 | 금일입금(증가) | 금일출금(감소) | 금일잔액 | ||
| 현금 | {% endif %} {% if forloop.counter == 2 %}보통예금 | {% endif %}{{ ba }} | {{ ba_1day_ago_total.pop|intcomma|default:"-" }} | {# 전일 잔액 #}{{ ba_to_inc.pop|intcomma|default:"-" }} | {# 금일 입금 #}{{ ba_to_out.pop|intcomma|default:"-" }} | {# 금일 출금 #}{{ ba_totay_balance.pop|intcomma|default:"-" }} | {# 금일 잔액 #}
| 현금성 자산 계 | {{ ba_1day_ago_total_sum|intcomma|default:"-" }} | {{ ba_to_inc_sum|intcomma|default:"-" }} | {{ ba_to_out_sum|intcomma|default:"-" }} | {{ ba_totay_balance_sum|intcomma|default:"-" }} | ||
| 프로젝트 당일 입금내역 ({{ confirm_date }}) 기준 | (단위: 원) | |||||
|---|---|---|---|---|---|---|
| 구분 | 계정 | 세부 계정 | 입금 금액 | 거래 계좌 | 거래처 | 적요 |
| {{ inc.get_cash_category1_display }} | {{ inc.get_cash_category2_display }} | {{ inc.account|default:"-" }} | {{ inc.income|intcomma|default:"-" }} | {{ inc.bank_account }} | {{ inc.trader|default:"-" }} | {{ inc.content|default:"-" }} |
| 합계 | {% if day_inc_sum.income__sum == None %}-{% else %} {{ day_inc_sum.income__sum|intcomma|default:"-" }}{% endif %} | |||||
| 프로젝트 당일 출금내역 ({{ confirm_date }}) 기준 | (단위: 원) | |||||
| 구분 | 계정 | 세부 계정 | 출금 금액 | 거래 계좌 | 거래처 | 적요 |
| {{ out.get_cash_category1_display }} | {{ out.get_cash_category2_display }} | {{ out.account|default:"-" }} | {{ out.outlay|intcomma|default:"-" }} | {{ out.bank_account }} | {{ out.trader|default:"-" }} | {{ out.content|default:"-" }} |
| 합계 | {% if day_out_sum.outlay__sum == None %}-{% else %} {{ day_out_sum.outlay__sum|intcomma|default:"-" }}{% endif %} | |||||
...