dbmsv4/app/Services/Customer/Wallet/CouponService.php
2025-12-16 15:25:23 +09:00

161 lines
6.1 KiB
PHP

<?php
namespace App\Services\Customer\Wallet;
use App\DTOs\Customer\Wallet\CouponDTO;
use App\Entities\CommonEntity;
use App\Entities\Customer\ClientEntity;
use App\Entities\Customer\Wallet\CouponEntity;
use App\Forms\Customer\Wallet\CouponForm;
use App\Helpers\Customer\Wallet\CouponHelper;
use App\Models\Customer\Wallet\CouponModel;
use RuntimeException;
class CouponService extends WalletService
{
const CLIENTINFO_BALANCE_FIELD = 'coupon_balance';
private $_form = null;
private $_helper = null;
public function __construct(CouponModel $model)
{
parent::__construct($model);
$this->addClassPaths('Coupon');
}
public 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->getPKField(),
'title_field' => $this->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->getPKField(),
'title_field' => $this->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;
$actionButtons = ['view' => ICONS['SEARCH']];
$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()->setActionButtons($actionButtons);
$this->getFormService()->setBatchjobFilters($batchjobFilters);
}
//기본 기능부분
protected function getEntity_process(mixed $entity): CouponEntity
{
return $entity;
}
protected function modify_process($entity, array $formDatas): CommonEntity
{
throw new RuntimeException("쿠폰정보는 수정이 불가합니다.");
}
//List 검색용
//FormFilter 조건절 처리
//검색어조건절처리
//입금,쿠폰 충전 처리
protected function deposit_process(ClientEntity $clientEntity, array $formDatas): array
{
if (!array_key_exists('amount', $formDatas)) {
throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 오류발생: 쿠폰수가 정의되지 않았습니다.");
}
//최종처리
$formDatas['balance'] = $clientEntity->getCouponBalance() + $formDatas['amount'];
if ($formDatas['balance'] < 0) {
throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 오류발생: 쿠폰수가 0보다 작은 값이 정의 되었습니다.");
}
//고객 잔액 갱신
service('customer_clientservice')->modify_process($clientEntity, [self::CLIENTINFO_BALANCE_FIELD => $formDatas['balance']]);
return parent::deposit_process($clientEntity, $formDatas);
}
//결제 관련 쿠폰 사용 처리
protected function withdrawal_process(ClientEntity $clientEntity, array $formDatas): array
{
if (!array_key_exists('amount', $formDatas)) {
throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 오류발생: 출금액이 정의되지 않았습니다.");
}
if ($clientEntity->getCouponBalance() < $formDatas['amount']) {
throw new RuntimeException(sprintf(
"%s 에서 오류발생: 사용쿠폰 수량(%s) , %s 잔여쿠폰 수량(%s)이 부족합니다.",
static::class . '->' . __FUNCTION__,
number_format($formDatas['amount']),
$clientEntity->getTitle(),
number_format($clientEntity->getCouponBalance())
));
}
//최종처리
$formDatas['balance'] = $clientEntity->getCouponBalance() - $formDatas['amount'];
if ($formDatas['balance'] < 0) {
throw new RuntimeException(static::class . '->' . __FUNCTION__ . "에서 오류발생: 잔여쿠폰수량({$formDatas['balance']})이 0보다 작은 값이 정의되었습니다.");
}
//고객 잔여쿠폰 갱신
service('customer_clientservice')->modify_process($clientEntity, [self::CLIENTINFO_BALANCE_FIELD => $formDatas['balance']]);
return parent::withdrawal_process($clientEntity, $formDatas);
}
}