공통데이터 관리 수정

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

@@ -28,14 +28,15 @@ class M412 extends BaseController
$sendJ = $this->model->get_send_yn('J');
$sendO = $this->model->get_send_yn('O');
return view("pages/results/m412/stats", [
'sendH' => $sendH,
'sendD' => $sendD,
'sendT' => $sendT,
'sendN' => $sendN,
'sendJ' => $sendJ,
'sendO' => $sendO,
]);
$this->data['sendH'] = $sendH;
$this->data['sendD'] = $sendD;
$this->data['sendT'] = $sendT;
$this->data['sendN'] = $sendN;
$this->data['sendJ'] = $sendJ;
$this->data['sendO'] = $sendO;
return view("pages/results/m412/stats", $this->data);
}
public function getResultList()