[Fix] command ActualProgressProject.php #13

Merged
farhantock merged 2 commits from Dev-Fuad into staging 2 months ago
  1. 18
      app/Console/Commands/ActualProgressProject.php

18
app/Console/Commands/ActualProgressProject.php

@ -3,9 +3,11 @@
namespace App\Console\Commands; namespace App\Console\Commands;
use App\Helpers\MasterFunctionsHelper; use App\Helpers\MasterFunctionsHelper;
use App\Models\HierarchyFtth;
use App\Models\Project; use App\Models\Project;
use App\Models\VersionGantt; use App\Models\VersionGantt;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Support\Facades\Log;
class ActualProgressProject extends Command class ActualProgressProject extends Command
{ {
@ -40,7 +42,7 @@ class ActualProgressProject extends Command
*/ */
public function handle() public function handle()
{ {
$projects = Project::join('m_type_proyek', 'm_proyek.type_proyek_id', '=', 'm_type_proyek.id') $projects = Project::leftJoin('m_type_proyek', 'm_proyek.type_proyek_id', '=', 'm_type_proyek.id')
->select('m_proyek.*', 'm_type_proyek.is_multiLocation') ->select('m_proyek.*', 'm_type_proyek.is_multiLocation')
->get(); ->get();
@ -52,9 +54,16 @@ class ActualProgressProject extends Command
->where('m_version_gantt.proyek_id', $project->id) ->where('m_version_gantt.proyek_id', $project->id)
->get(); ->get();
foreach ($versionGantt as $key => $gantt) { foreach ($versionGantt as $key => $gantt) {
$hierarchy = HierarchyFtth::where('id',$gantt->hierarchy_ftth_id)->count();
// Perhitungan jika project memiliki gantt tetapi tidak ada hierarchy (Kasus perpindahan tipe project dari single location ke multi location)
if($hierarchy == 0){
$progress[$key] = 0;
} else {
$progress[$key] = $gantt->progress; $progress[$key] = $gantt->progress;
} }
}
$actualProgress = round(array_sum($progress) / count($versionGantt), 2); $actualProgress = round(array_sum($progress) / count($versionGantt), 2);
$progress = array(); // unset/kosongkan array progress untuk project selanjutnya
} else { } else {
// untuk project single location // untuk project single location
$gantt = MasterFunctionsHelper::getLatestGantt($project->id); $gantt = MasterFunctionsHelper::getLatestGantt($project->id);
@ -65,12 +74,15 @@ class ActualProgressProject extends Command
'gantt_id' => $lastGantt, 'gantt_id' => $lastGantt,
'periode' => 'week' 'periode' => 'week'
]; ];
// kondisi jika tidak ada gantt_id
if (empty($arr['gantt_id'])) {
$actualProgress = 0;
} else {
$project->scurve = MasterFunctionsHelper::getSCurve(collect($arr)); $project->scurve = MasterFunctionsHelper::getSCurve(collect($arr));
$actualArray = $project->scurve[0]['data']['percentageReal']; $actualArray = $project->scurve[0]['data']['percentageReal'];
$actualProgress = !empty($actualArray) ? round(end($actualArray), 2) : 0; $actualProgress = !empty($actualArray) ? round(end($actualArray), 2) : 0;
} }
}
Project::where('id', $project->id)->update(['persentase_progress' => $actualProgress]); Project::where('id', $project->id)->update(['persentase_progress' => $actualProgress]);
} }
} }

Loading…
Cancel
Save