予算管理システム
プロジェクト管理
予算設定
社員設定
作業時間管理
| 社員/年月 | {{ formatMonth(month) }} 確 |
|---|---|
| {{ employee.name || `社員${empIndex+1}` }} |
予定 (h)
実績 (h)
|
集計結果
予算状況
総予算: {{ formatCurrency(currentProject.totalBudget) }}
現在の消費額: {{ formatCurrency(totalActualCost) }} ({{ formatPercentage(actualBudgetUsageRate) }}) {{ getBudgetStatus(actualBudgetUsageRate) }}
予測最終消費額: {{ formatCurrency(totalProjectedCost) }} ({{ formatPercentage(projectedBudgetUsageRate) }}) {{ getBudgetStatus(projectedBudgetUsageRate) }}
{{ formatPercentage(actualBudgetUsageRate) }}
{{ formatPercentage(projectedBudgetUsageRate) }} (予測)
時間状況
予定総時間: {{ currentProject.expectedTotalHours }} 時間
現在の消費時間: {{ totalActualHours }} 時間 ({{ formatPercentage(actualHoursUsageRate) }})
予測最終消費時間: {{ totalProjectedHours }} 時間 ({{ formatPercentage(projectedHoursUsageRate) }})
{{ formatPercentage(actualHoursUsageRate) }}
{{ formatPercentage(projectedHoursUsageRate) }} (予測)
詳細情報
社員別集計
| 社員名 | 確定時間 | 予定時間 | 合計時間 | 費用 |
|---|---|---|---|---|
| {{ employee.name || `社員${index+1}` }} | {{ getEmployeeActualHours(index) }} | {{ getEmployeePlannedHours(index) }} | {{ getEmployeeTotalHours(index) }} | {{ formatCurrency(getEmployeeTotalCost(index)) }} |
| 合計 | {{ getTotalActualHours() }} | {{ getTotalPlannedHours() }} | {{ totalCurrentHours }} | {{ formatCurrency(totalCurrentCost) }} |
月別集計
| 年月 | 状態 | 時間 | 費用 |
|---|---|---|---|
| {{ formatMonth(month) }} | 確定 未確定 | {{ getMonthTotalHours(getOriginalMonthIndex(month)) }} | {{ formatCurrency(getMonthTotalCost(getOriginalMonthIndex(month))) }} |
| 合計 | {{ totalActualHours }} | {{ formatCurrency(totalActualCost) }} | |