dbms_init...1

This commit is contained in:
choi.jh 2025-06-09 14:53:24 +09:00
parent c9102af837
commit 598feceb38
4 changed files with 18 additions and 18 deletions

View File

@ -12,7 +12,7 @@ use App\Services\Equipment\Part\CpuService;
use App\Services\Equipment\Part\DefenceService;
use App\Services\Equipment\Part\StorageService;
use App\Services\Equipment\Part\IpService;
use App\Services\Equipment\Part\LINEService;
use App\Services\Equipment\Part\LineService;
use App\Services\Equipment\Part\RamService;
use App\Services\Equipment\Part\SoftwareService;
use App\Services\Equipment\ServerService;

View File

@ -45,20 +45,20 @@ class ServiceController extends CustomerController
}
return $this->_serviceItemService;
}
protected function getResultSuccess(string $message = MESSAGES["SUCCESS"]): RedirectResponse|string
{
switch ($this->getAction()) {
case 'index':
$this->control = $this->getControlDatas();
$this->getHelper()->setViewDatas($this->getViewDatas());
$result = view($this->view_path . 'service' . DIRECTORY_SEPARATOR . $this->getAction(), ['viewDatas' => $this->getViewDatas()]);
break;
default:
$result = parent::getResultSuccess($message);
break;
}
return $result;
}
// protected function getResultSuccess(string $message = MESSAGES["SUCCESS"]): RedirectResponse|string
// {
// switch ($this->getAction()) {
// case 'index':
// $this->control = $this->getControlDatas();
// $this->getHelper()->setViewDatas($this->getViewDatas());
// $result = view($this->view_path . 'service' . DIRECTORY_SEPARATOR . $this->getAction(), ['viewDatas' => $this->getViewDatas()]);
// break;
// default:
// $result = parent::getResultSuccess($message);
// break;
// }
// return $result;
// }
//Index,FieldForm관련
protected function index_process(): array
{

View File

@ -1,4 +1,4 @@
/*!999999\- enable the sandbox mode */
/*!999999- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.5.25-MariaDB, for Win64 (AMD64)
--
-- Host: localhost Database: dbms

View File

@ -43,7 +43,7 @@
<?= $viewDatas['helper']->getListButton('delete', $viewDatas) ?>
</td>
</tr>
<tr>
<tr>
<td colspan="<?= count($viewDatas['control']['index_fields']) + 2 ?>">
<table class="table table-bordered table-hover table-striped">
<tr>
@ -58,7 +58,7 @@
</tr>
</table>
</td>
</tr>
</tr>
<?php $cnt++ ?>
<?php endforeach ?>
</tbody>