dbmsv4/app/Services/Customer/PointService.php
2025-12-01 09:17:36 +09:00

121 lines
3.7 KiB
PHP

<?php
namespace App\Services\Customer;
use RuntimeException;
use App\Models\Customer\PointModel;
use App\Helpers\Customer\PointHelper;
use App\Forms\Customer\PointForm;
use App\Entities\Customer\PointEntity;
use App\Entities\CommonEntity;
use App\DTOs\Customer\PointDTO;
class PointService extends CustomerService
{
private $_form = null;
private $_helper = null;
public function __construct(PointModel $model)
{
parent::__construct($model);
$this->addClassPaths('Point');
}
protected function getDTOClass(): string
{
return PointDTO::class;
}
public function createDTO(array $formDatas): PointDTO
{
return new PointDTO($formDatas);
}
public function getEntityClass(): string
{
return PointEntity::class;
}
public function getFormService(): PointForm
{
if ($this->_form === null) {
$this->_form = new PointForm();
$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(): PointHelper
{
if ($this->_helper === null) {
$this->_helper = new PointHelper();
$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 = []): void
{
$fields = [
"clientinfo_uid",
"title",
"amount",
"status",
"content",
];
$filters = [
"clientinfo_uid",
"status",
];
$indexFilter = $filters;
$batchjobFilters = ['status'];
switch ($action) {
case 'create':
case 'create_form':
case 'modify':
case 'modify_form':
break;
case 'view':
$fields = [...$fields, 'created_at'];
break;
case 'index':
case 'download':
$fields = [
"clientinfo_uid",
"title",
"amount",
"status",
'created_at'
];
break;
}
$this->getFormService()->setFormFields($fields);
$this->getFormService()->setFormRules($action, $fields);
$this->getFormService()->setFormFilters($filters);
$this->getFormService()->setFormOptions($action, $filters, $formDatas);
$this->getFormService()->setIndexFilters($indexFilter);
$this->getFormService()->setBatchjobFilters($batchjobFilters);
}
//기본 기능부분
protected function getEntity_process(mixed $entity): PointEntity
{
return $entity;
}
protected function create_process(array $formDatas): PointEntity
{
return parent::create_process($formDatas);
}
protected function modify_process($entity, array $formDatas): PointEntity
{
return parent::modify_process($entity, $formDatas);
}
//List 검색용
//FormFilter 조건절 처리
//검색어조건절처리
}