{{ kgi.name }}
{% if kgi.value %}{{ kgi.value|format_number }}{% else %}-{% endif %}
{{ kgi.unit }}
達成率:
{% if kgi.achievement_rate %}
{{ kgi.achievement_rate|format_percent }}
{% else %}
-
{% endif %}
目標
{% if kgi.target %}{{ kgi.target|format_number }}{% else %}-{% endif %}
ボトルネック
{{ bottleneck_count }}件
{% if executive_summary %}
🤖 AIインサイト
{{ executive_summary.performance_overview|default('') }}
{% if executive_summary.highlights %}
{% for highlight in executive_summary.highlights %}
{{ highlight.content }}
{% endfor %}
{% endif %}
{% endif %}
{% if bottlenecks %}
⚠️ ボトルネック分析
| KPI |
実績 |
目標 |
達成率 |
影響度 |
{% for b in bottlenecks %}
| {{ b.node_name }} |
{{ b.actual|format_number }} |
{{ b.target|format_number }} |
{{ b.achievement_rate|format_percent }}
|
|
{% endfor %}
{% endif %}
{% if bottleneck_insights.quick_wins or bottleneck_insights.strategic_initiatives %}
📋 推奨アクション
{% if bottleneck_insights.quick_wins %}
{% for action in bottleneck_insights.quick_wins %}
{% endfor %}
{% endif %}
{% if bottleneck_insights.strategic_initiatives %}
{% for action in bottleneck_insights.strategic_initiatives %}
{% endfor %}
{% endif %}
{% endif %}
📊 KPI一覧
| KPI |
カテゴリ |
実績 |
目標 |
達成率 |
トレンド |
{% for p in performance %}
| {{ p.node_name }} |
{{ p.category }}
|
{{ p.actual|format_number }} {{ p.unit }} |
{% if p.target %}{{ p.target|format_number }} {{ p.unit }}{% else %}-{% endif %} |
{% if p.achievement_rate %}
{{ p.achievement_rate|format_percent }}
{% else %}
-
{% endif %}
|
{{ p.trend|trend_icon }} |
{% endfor %}
{% if categories %}
📁 カテゴリ別サマリー
{% for cat, data in categories.items() %}
{% if data.avg_achievement %}
{{ data.avg_achievement|format_percent }}
{% else %}
-
{% endif %}
平均達成率
{% if data.bottleneck_count > 0 %}
⚠️ {{ data.bottleneck_count }}件の課題あり
{% endif %}
{% endfor %}
{% endif %}
{% if executive_summary.next_month_focus %}
🎯 来月の重点項目
{% for focus in executive_summary.next_month_focus %}
-
▶
{{ focus }}
{% endfor %}
{% endif %}