|
|
@ -66,11 +66,11 @@ class DashboardBoDController extends Controller |
|
|
|
|
|
|
|
|
|
|
|
return response()->json([ |
|
|
|
return response()->json([ |
|
|
|
'data' => [ |
|
|
|
'data' => [ |
|
|
|
'total_budget' => (int) ($totalBudgets->total_rencana_biaya ?? 0), |
|
|
|
'total_budget' => $totalBudgets->total_value_proyek ?? 0, |
|
|
|
'total_expenditure' => $totalExpenditure, |
|
|
|
'total_expenditure' => $totalExpenditure, |
|
|
|
'total_invoice' => $totalInvoice, |
|
|
|
'total_invoice' => $totalInvoice, |
|
|
|
'total_paid_invoice' => $totalPaidInvoice, |
|
|
|
'total_paid_invoice' => $totalPaidInvoice, |
|
|
|
'total_value_proyek' => $totalBudgets->total_value_proyek ?? 0, |
|
|
|
'total_value_proyek' => (int) ($totalBudgets->total_rencana_biaya ?? 0), |
|
|
|
'total_income_year' => $totalBudgets->total_income_year ?? 0 |
|
|
|
'total_income_year' => $totalBudgets->total_income_year ?? 0 |
|
|
|
] |
|
|
|
] |
|
|
|
], 200); |
|
|
|
], 200); |
|
|
@ -288,10 +288,7 @@ class DashboardBoDController extends Controller |
|
|
|
->pluck('id'); |
|
|
|
->pluck('id'); |
|
|
|
|
|
|
|
|
|
|
|
// arr overrun |
|
|
|
// arr overrun |
|
|
|
if ($role === 'Super Admin') { |
|
|
|
if ($all_project) { |
|
|
|
$response['data']['overrun'] = Project::where('budget_health', 'overrun') |
|
|
|
|
|
|
|
->count(); |
|
|
|
|
|
|
|
} elseif ($all_project == 'true') { |
|
|
|
|
|
|
|
$response['data']['overrun'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
$response['data']['overrun'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
->where([['budget_health', 'overrun']]) |
|
|
|
->where([['budget_health', 'overrun']]) |
|
|
|
->count(); |
|
|
|
->count(); |
|
|
@ -301,10 +298,7 @@ class DashboardBoDController extends Controller |
|
|
|
->count(); |
|
|
|
->count(); |
|
|
|
} |
|
|
|
} |
|
|
|
// arr warning |
|
|
|
// arr warning |
|
|
|
if ($role === 'Super Admin') { |
|
|
|
if ($all_project) { |
|
|
|
$response['data']['warning'] = Project::where('budget_health', 'warning') |
|
|
|
|
|
|
|
->count(); |
|
|
|
|
|
|
|
} elseif ($all_project == 'true') { |
|
|
|
|
|
|
|
$response['data']['warning'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
$response['data']['warning'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
->where([['budget_health', 'warning']]) |
|
|
|
->where([['budget_health', 'warning']]) |
|
|
|
->count(); |
|
|
|
->count(); |
|
|
@ -314,10 +308,7 @@ class DashboardBoDController extends Controller |
|
|
|
->count(); |
|
|
|
->count(); |
|
|
|
} |
|
|
|
} |
|
|
|
// arr on-budget |
|
|
|
// arr on-budget |
|
|
|
if ($role === 'Super Admin') { |
|
|
|
if ($all_project) { |
|
|
|
$response['data']['on-budget'] = Project::where('budget_health', 'on-budget') |
|
|
|
|
|
|
|
->count(); |
|
|
|
|
|
|
|
} elseif ($all_project == 'true') { |
|
|
|
|
|
|
|
$response['data']['on-budget'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
$response['data']['on-budget'] = Project::whereIn('divisi_id', $divisi) |
|
|
|
->where([['budget_health', 'on-budget']]) |
|
|
|
->where([['budget_health', 'on-budget']]) |
|
|
|
->count(); |
|
|
|
->count(); |
|
|
|