{% 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 {} %}
연계 프로젝트
설계 프로세스별 원가 현황
{% for row in detail.phase_rows or [] %}
구분
목표 원가
실제 집행
차이(목표-실제)
집행률
{% endfor %}
{% if not (detail.phase_rows or []) %}
{{ 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)) }}%
{% endif %}
계정별 집행 상위 항목
{% for row in detail.account_rows or [] %}
계정
집행금액
비중
전표건수
최근 증빙일
{% endfor %}
{% if not (detail.account_rows or []) %}
{{ 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 '-' }}
{% endif %}