{% extends "base.html" %} {% block title %}프로세스 원가{% endblock %} {% block head_extra %} {% endblock %} {% block content %} {% set detail = process_cost_detail or {} %} {% set overview = detail.overview or {} %} {% set diagnostics = detail.diagnostics or {} %}
{% if process_cost_include_related %} {% endif %}

프로젝트 선택

{% for item in process_cost_projects %}
{{ item.support_dept_code }} {{ "{:,.0f}".format(item.expense_amount|default(0)) }}원
{{ item.support_dept_name }}
{% if item.client_name %}
{{ item.client_name }}
{% endif %}
{% endfor %} {% if not process_cost_projects %}
해당 조건의 프로젝트 데이터가 없습니다.
{% endif %}
계약금액 {{ "{:,.0f}".format(overview.contract_amount|default(0)) }}원
누적 수익 {{ "{:,.0f}".format(overview.revenue_amount|default(0)) }}원
누적 비용 {{ "{:,.0f}".format(overview.expense_amount|default(0)) }}원 목표원가 {{ "{:,.0f}".format(overview.target_cost_amount|default(0)) }}원
예상 영업수지 {{ "{:,.0f}".format(overview.profit_amount|default(0)) }}원 마진율 {{ "{:.1f}".format(overview.profit_rate|default(0)) }}%

설계 프로세스별 원가 현황

{% for row in detail.phase_rows or [] %} {% endfor %} {% if not (detail.phase_rows or []) %} {% endif %}
구분 목표 원가 실제 집행 차이(목표-실제) 집행률
{{ row.phase }} {{ "{:,.0f}".format(row.target_amount|default(0)) }} {{ "{:,.0f}".format(row.actual_amount|default(0)) }} {{ "{:,.0f}".format(row.gap_amount|default(0)) }} {{ "{:.1f}".format(row.progress_rate|default(0)) }}%
표시할 데이터가 없습니다.

계정별 집행 상위 항목

{% for row in detail.account_rows or [] %} {% endfor %} {% if not (detail.account_rows or []) %} {% endif %}
계정 집행금액 비중 전표건수 최근 증빙일
{{ row.account_code }} {{ row.account_name }} {{ "{:,.0f}".format(row.amount|default(0)) }} {{ "{:.1f}".format(row.share_rate|default(0)) }}% {{ "{:,}".format(row.row_count|default(0)) }} {{ row.last_posting_date or '-' }}
표시할 데이터가 없습니다.
{% endblock %} {% block script %} {% endblock %}