130 lines
4.3 KiB
PHP
130 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Customer\Wallet;
|
|
|
|
use App\DTOs\Customer\Wallet\CouponDTO;
|
|
use App\Entities\Customer\Wallet\CouponEntity;
|
|
use App\Entities\PaymentEntity;
|
|
use App\Forms\Customer\Wallet\CouponForm;
|
|
use App\Helpers\Customer\Wallet\CouponHelper;
|
|
use App\Models\Customer\Wallet\CouponModel;
|
|
use RuntimeException;
|
|
|
|
class CouponService extends WalletService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(CouponModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('Coupon');
|
|
}
|
|
protected function getDTOClass(): string
|
|
{
|
|
return CouponDTO::class;
|
|
}
|
|
public function createDTO(array $formDatas): CouponDTO
|
|
{
|
|
return new CouponDTO($formDatas);
|
|
}
|
|
public function getEntityClass(): string
|
|
{
|
|
return CouponEntity::class;
|
|
}
|
|
public function getFormService(): CouponForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new CouponForm();
|
|
$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(): CouponHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new CouponHelper();
|
|
$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",
|
|
"cnt",
|
|
"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",
|
|
"cnt",
|
|
"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): CouponEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): CouponEntity
|
|
{
|
|
$entity = parent::create_process($formDatas);
|
|
service('customer_clientservice')->updateBalance($entity->getClientInfoUID(), "쿠폰", PAYMENT['PAY']['COUPON'], $entity->getCnt(), $entity->getStatus());
|
|
return $entity;
|
|
}
|
|
protected function modify_process($entity, array $formDatas): CouponEntity
|
|
{
|
|
throw new RuntimeException("쿠폰정보는 수정이 불가합니다.");
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
|
|
//결제처리 관련
|
|
protected function createByPayment_process(PaymentEntity $paymentEntity, array $formDatas = []): array
|
|
{
|
|
$formDatas['cnt'] = $paymentEntity->getAmount();
|
|
return parent::createByPayment_process($paymentEntity, $formDatas);
|
|
}
|
|
}
|