You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
7.0 KiB
239 lines
7.0 KiB
<?php |
|
|
|
namespace App\Http\Controllers; |
|
|
|
use App\Models\Project; |
|
use App\Models\Divisi; |
|
use App\Models\ProjectPhase; |
|
use App\Models\AssignMaterial; |
|
use App\Models\ReportActivityMaterial; |
|
use Illuminate\Support\Collection; |
|
use Illuminate\Support\Facades\DB; |
|
|
|
class DashboardBoDController extends Controller |
|
{ |
|
private function interpolateYear($year){ |
|
if($year) |
|
$year = '%'.$year.'%'; |
|
return $year; |
|
} |
|
|
|
// to do |
|
public function getCompanyCashFlow($year = '%') { |
|
$year = $this->interpolateYear($year); |
|
|
|
// we can't use eloquent's sum() method because someone decided to use varchar as datatype in rencana_biaya field |
|
$totalBudgets = Project::select(DB::raw('SUM(CAST("rencana_biaya" AS DOUBLE PRECISION))')) |
|
->where('mulai_proyek', 'like', $year) |
|
->pluck('sum') |
|
->first(); |
|
|
|
/* $projectsWithMaterials = DB::table('m_proyek as p') */ |
|
/* ->join('assign_material_to_activity as ama', 'p.id', '=', 'ama.proyek_id') */ |
|
/* ->join('report_activity_material as ram', 'ama.id', '=', 'ram.assign_material_id') */ |
|
/* ->where('p.mulai_proyek', 'like', $year) */ |
|
/* ->get(); */ |
|
|
|
$totalExpenditure = 0; |
|
$projects = Project::where('mulai_proyek', 'like', $year)->get(); |
|
foreach($projects as $project){ |
|
$project->expenses = 0; |
|
$assignedMaterials = AssignMaterial::where('proyek_id', $project->id)->get(); |
|
foreach($assignedMaterials as $assignedMaterial) { |
|
$reportedMaterials = ReportActivityMaterial::where('assign_material_id', $assignedMaterial->id)->get(); |
|
foreach($reportedMaterials as $reportedMaterial) { |
|
$project->expenses += $reportedMaterial->qty * $assignedMaterial->budget; |
|
} |
|
} |
|
$totalExpenditure += $project->expenses; |
|
} |
|
|
|
return response()->json([ |
|
'data' => [ |
|
'total_budget' => (int) $totalBudgets ?? 0, |
|
'total_expenditure' => $totalExpenditure, |
|
'total_invoice' => 0, |
|
'total_paid_invoice' => 0, |
|
] |
|
], 200); |
|
} |
|
|
|
public function getInvoiceOutstanding($year = '%'){ |
|
return response()->json([ |
|
'data' => [ |
|
0 => [ |
|
'project' => 'Project A', |
|
'invoiced' => rand(0, 9000000000), |
|
'paid' => rand(0, 9000000000), |
|
], |
|
1 => [ |
|
'project' => 'Project B', |
|
'invoiced' => rand(0, 9000000000), |
|
'paid' => rand(0, 9000000000), |
|
], |
|
2 => [ |
|
'project' => 'Project C', |
|
'invoiced' => rand(0, 9000000000), |
|
'paid' => rand(0, 9000000000), |
|
], |
|
] |
|
], 200); |
|
|
|
} |
|
|
|
// to do |
|
public function getTotalProjectPerScheduleHealth($year = '%'){ |
|
$year = $this->interpolateYear($year); |
|
// get data plan (vol) in % |
|
// get data actual in % |
|
return response()->json([ |
|
'data' => [ |
|
'behind-schedule' => rand(0,10), |
|
'warning' => rand(0,10), |
|
'on-schedule' => rand(0,10), |
|
] |
|
], 200); |
|
} |
|
|
|
// todo |
|
public function getTotalProjectScheduleHealthPerDivision($year = '%'){ |
|
$year = $this->interpolateYear($year); |
|
|
|
$divisions = Divisi::whereNull('parent')->get(); |
|
foreach($divisions as $division){ |
|
$scheduleData = new Collection(); |
|
$scheduleData->prepend(rand(0, 10), 'behindSchedule'); |
|
$scheduleData->prepend(rand(0, 10), 'warning'); |
|
$scheduleData->prepend(rand(0, 10), 'onSchedule'); |
|
$division->scheduleData = $scheduleData; |
|
} |
|
return response()->json([ |
|
'data' => [ |
|
$divisions |
|
] |
|
], 200); |
|
} |
|
|
|
public function getTotalProjectPerBudgetHealth($year = '%'){ |
|
$year = $this->interpolateYear($year); |
|
return response()->json([ |
|
'data' => [ |
|
'overrun' => Project::where('mulai_proyek', 'like', $year)->where('budget_health', 'overrun')->count(), |
|
'warning' => Project::where('mulai_proyek', 'like', $year)->where('budget_health', 'warning')->count(), |
|
'on-budget' => Project::where('mulai_proyek', 'like', $year)->where('budget_health', 'on-budget')->count(), |
|
] |
|
], 200); |
|
} |
|
|
|
private function countTotalProjectByBudgetHealthInDivision($divisi, $year, $health){ |
|
return Project::where('divisi_id', $divisi) |
|
->where('mulai_proyek', 'like', $year) |
|
->where('budget_health', $health) |
|
->count(); |
|
} |
|
|
|
|
|
public function getTotalProjectBudgetHealthPerDivision($year = '%'){ |
|
$year = $this->interpolateYear($year); |
|
$divisions = Divisi::select('id','name') |
|
->with('children') |
|
->whereNull('parent') |
|
->get(); |
|
// to do : count in more than 1 level child |
|
foreach($divisions as $division){ |
|
$budgetData = new Collection(); |
|
$budgetData->prepend($this->countTotalProjectByBudgetHealthInDivision($division->id, $year, 'overrun'), 'overrun'); |
|
$budgetData->prepend($this->countTotalProjectByBudgetHealthInDivision($division->id, $year, 'warning'), 'warning'); |
|
$budgetData->prepend($this->countTotalProjectByBudgetHealthInDivision($division->id, $year, 'on-budget'), 'on-budget'); |
|
foreach($division->children as $d){ |
|
$budgetData['overrun'] += $this->countTotalProjectByBudgetHealthInDivision($d->id, $year, 'overrun'); |
|
$budgetData['warning'] += $this->countTotalProjectByBudgetHealthInDivision($d->id, $year, 'warning'); |
|
$budgetData['on-budget'] += $this->countTotalProjectByBudgetHealthInDivision($d->id, $year, 'on-budget'); |
|
} |
|
unset($division->children); |
|
$division->budgetData = $budgetData; |
|
} |
|
foreach($divisions as $division){ |
|
} |
|
return response()->json([ |
|
'data' => [ |
|
$divisions |
|
] |
|
], 200); |
|
} |
|
|
|
public function getTotalProjectPerPhase($year = '%'){ |
|
$year = $this->interpolateYear($year); |
|
$projectPhases = ProjectPhase::orderBy('order')->get(); |
|
foreach($projectPhases as $phase){ |
|
$phase->totalProject = Project::where('phase_id', $phase->id) |
|
->where('mulai_proyek', 'like', $year) |
|
->count(); |
|
} |
|
return response()->json([ |
|
'data' => [ |
|
$projectPhases |
|
] |
|
], 200); |
|
} |
|
|
|
private function countTotalProjectInDivision($id, $year){ |
|
return Project::where('divisi_id', $id) |
|
->where('mulai_proyek', 'like', $year) |
|
->count(); |
|
} |
|
|
|
public function getTotalProjectPerDivision($year = '%') { |
|
$year = $this->interpolateYear($year); |
|
|
|
$divisions = Divisi::select('id','name') |
|
->with('children') |
|
->whereNull('parent') |
|
->get(); |
|
|
|
// to do : count in more than 1 level child |
|
foreach($divisions as $v){ |
|
$v->total = $this->countTotalProjectInDivision($v->id, $year); |
|
foreach($v->children as $d){ |
|
$v->total += $this->countTotalProjectInDivision($d->id, $year); |
|
} |
|
unset($v->children); |
|
} |
|
|
|
return response()->json([ |
|
'data' => $divisions |
|
], 200); |
|
} |
|
|
|
private function countTotalProjectValueInDivision($id, $year){ |
|
return Project::select(DB::raw('SUM(CAST("rencana_biaya" AS DOUBLE PRECISION))')) |
|
->where('mulai_proyek', 'like', $year) |
|
->where('divisi_id', $id) |
|
->pluck('sum') |
|
->first(); |
|
} |
|
|
|
public function getTotalProjectValuePerDivision($year = '%') { |
|
$year = $this->interpolateYear($year); |
|
|
|
$divisions = Divisi::select('id','name') |
|
->with('children') |
|
->whereNull('parent') |
|
->get(); |
|
|
|
// to do : count in more than 1 level child |
|
foreach($divisions as $v){ |
|
$v->total = $this->countTotalProjectValueInDivision($v->id, $year); |
|
foreach($v->children as $d){ |
|
$v->total += $this->countTotalProjectValueInDivision($d->id, $year); |
|
} |
|
unset($v->children); |
|
} |
|
|
|
return response()->json([ |
|
'data' => $divisions |
|
], 200); |
|
} |
|
|
|
} |
|
|
|
|