{% 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 {} %} {% set selected_project = process_cost_selected_project or {} %}
{% if process_cost_include_related %} {% 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 %}