|
|
|
@ -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; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|