132 lines
4.2 KiB
PHP
132 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Part;
|
|
|
|
use App\DTOs\Part\SWITCHDTO;
|
|
use App\Entities\Part\SWITCHEntity;
|
|
use App\Forms\Part\SWITCHForm;
|
|
use App\Helpers\Part\SWITCHHelper;
|
|
use App\Models\Part\SWITCHModel;
|
|
use RuntimeException;
|
|
|
|
class SWITCHService extends PartService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(SWITCHModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('SWITCH');
|
|
}
|
|
protected function getDTOClass(): string
|
|
{
|
|
return SWITCHDTO::class;
|
|
}
|
|
public function createDTO(array $formDatas): SWITCHDTO
|
|
{
|
|
return new SWITCHDTO($formDatas);
|
|
}
|
|
public function getFormService(): SWITCHForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new SWITCHForm();
|
|
$this->_form->setAttributes([
|
|
'pk_field' => $this->model->getPKField(),
|
|
'title_field' => $this->model->getTitleField(),
|
|
'table' => $this->model->getTable(),
|
|
'useAutoIncrement' => $this->model->useAutoIncrement(),
|
|
'class_path' => $this->getClassPaths(false)
|
|
]);
|
|
}
|
|
return $this->_form;
|
|
}
|
|
public function getHelper(): SWITCHHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new SWITCHHelper();
|
|
$this->_helper->setAttributes([
|
|
'pk_field' => $this->model->getPKField(),
|
|
'title_field' => $this->model->getTitleField(),
|
|
'table' => $this->model->getTable(),
|
|
'useAutoIncrement' => $this->model->useAutoIncrement(),
|
|
'class_path' => $this->getClassPaths(false)
|
|
]);
|
|
}
|
|
return $this->_helper;
|
|
}
|
|
public function action_init_process(string $action, array $formDatas = [], ?object $entity = null): void
|
|
{
|
|
$fields = [
|
|
"code",
|
|
"price",
|
|
];
|
|
$filters = [
|
|
'clientinfo_uid',
|
|
'serviceinfo_uid',
|
|
'serverinfo_uid',
|
|
'status'
|
|
];
|
|
$indexFilter = $filters;
|
|
$batchjobFilters = ['status',];
|
|
switch ($action) {
|
|
case 'create':
|
|
case 'create_form':
|
|
case 'modify':
|
|
case 'modify_form':
|
|
$fields = [
|
|
...$fields,
|
|
'status',
|
|
];
|
|
break;
|
|
case 'view':
|
|
$fields = [
|
|
...$fields,
|
|
'clientinfo_uid',
|
|
'serviceinfo_uid',
|
|
'serverinfo_uid',
|
|
'status',
|
|
'created_at'
|
|
];
|
|
break;
|
|
case 'index':
|
|
case 'download':
|
|
$fields = [
|
|
...$fields,
|
|
'clientinfo_uid',
|
|
'serviceinfo_uid',
|
|
'serverinfo_uid',
|
|
'status',
|
|
'created_at'
|
|
];
|
|
break;
|
|
}
|
|
$this->getFormService()->setFormDatas($formDatas);
|
|
$this->getFormService()->setFormFields($fields);
|
|
$this->getFormService()->setFormRules($action, $fields);
|
|
$this->getFormService()->setFormFilters($filters);
|
|
$this->getFormService()->setFormOptions($action, $filters, $entity);
|
|
$this->getFormService()->setIndexFilters($indexFilter);
|
|
$this->getFormService()->setBatchjobFilters($batchjobFilters);
|
|
}
|
|
//기본 기능부분
|
|
protected function getEntity_process(mixed $entity): SWITCHEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): SWITCHEntity
|
|
{
|
|
return new SWITCHEntity($formDatas);
|
|
}
|
|
protected function modify_process($uid, array $formDatas): SWITCHEntity
|
|
{
|
|
$entity = parent::modify_process($uid, $formDatas);
|
|
if (!$entity instanceof SWITCHEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 SWITCHEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
}
|