From 91c2bf6bfa84b63f88b09df774812fe61145833b Mon Sep 17 00:00:00 2001 From: Wahyu Ramadhan Date: Wed, 12 Apr 2023 14:16:28 +0700 Subject: [PATCH] Hotfix hirarki ftth --- app/Http/Controllers/HierarchyFtthController.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/HierarchyFtthController.php b/app/Http/Controllers/HierarchyFtthController.php index 1a3ca56..03b42e6 100644 --- a/app/Http/Controllers/HierarchyFtthController.php +++ b/app/Http/Controllers/HierarchyFtthController.php @@ -140,8 +140,21 @@ class HierarchyFtthController extends Controller $data = HierarchyFtth::where('project_id', $project_id)->whereNull('parent_id')->orderByRaw('id ASC')->get(); $finalData = []; foreach($data as $objRow){ - $objRow->children = $this->getChildren($project_id, $objRow->id); $objRow->key = rand(1, 1000); + if (VersionGantt::where('hierarchy_ftth_id', $objRow->id)->exists()) { + $dataGantt = VersionGantt::where('hierarchy_ftth_id', $objRow->id)->get(); + $progress = $this->ganttProgress('hierarchy_ftth_id', $objRow->id); + foreach ($dataGantt as $gantt) { + $gantt->key = $objRow->key; + foreach ($progress as $p) { + if ($p->id == $gantt->id) { + $gantt->progress = $p->persentase_progress; + } + } + } + $objRow->dataGantt = $dataGantt; + } + $objRow->children = $this->getChildren($project_id, $objRow->id); $finalData[] = $objRow; }