Browse Source

Merge pull request 'staging upload' (#101) from staging into master

Reviewed-on: ordo/adw-backend#101
pull/3/head
ibnu 1 year ago
parent
commit
8473f7e4f1
  1. 11
      app/Helpers/MasterFunctionsHelper.php

11
app/Helpers/MasterFunctionsHelper.php

@ -111,23 +111,26 @@ class MasterFunctionsHelper {
$dates = iterator_to_array($period);
$count = count($dates);
$avgProgress = $ttlProgress/$count;
$avgPlanning = $ttlPlanning/$count;
$avgProgress = $ttlProgress/$ttlPlanning/$count*100;
$avgPlanning = $ttlPlanning/$ttlPlanning/$count*100;
$progressData = [];
$planningData = [];
$dates = [];
$tempProgress = 0;
$tempPlanning = 0;
foreach($period as $p){
array_push($progressData, $tempProgress);
array_push($planningData, $tempPlanning);
array_push($dates, $p->format("Y-m-d"));
$tempProgress += $avgProgress;
$tempPlanning += $avgPlanning;
}
$dataResponse = array(
"percentagePlan" => $progressData,
"percentageReal" => $planningData,
"percentagePlan" => $planningData,
"percentageReal" => $progressData,
"date" => $dates,
);
$dataFinal[] = array(

Loading…
Cancel
Save