공통데이터 관리 수정

This commit is contained in:
yangsh
2025-12-31 15:11:40 +09:00
parent 38444fcb4f
commit 04a06f1781
36 changed files with 1351 additions and 139 deletions

View File

@@ -87,13 +87,13 @@ class Summary extends BaseController
}
}
return view("pages/results/summary/stats_s01", [
'schDateGb' => $this->schDateGb,
'sdate' => $this->sdate,
'edate' => $this->edate,
'st_list' => $res,
'st_agent' => $res2,
'totalAmount' => $totalAmount,
]);
$this->data['schDateGb'] = $this->schDateGb;
$this->data['sdate'] = $this->sdate;
$this->data['edate'] = $this->edate;
$this->data['st_list'] = $res;
$this->data['st_agent'] = $res2;
$this->data['totalAmount'] = $totalAmount;
return view("pages/results/summary/stats_s01", $this->data);
}
}