dbmsv2/app/Services/Customer/AccountService.php
2025-08-19 16:08:55 +09:00

64 lines
1.9 KiB
PHP

<?php
namespace App\Services\Customer;
use App\Entities\Customer\AccountEntity;
use App\Models\Customer\AccountModel;
use App\Entities\Customer\ClientEntity;
class AccountService extends CustomerService
{
public function __construct()
{
parent::__construct(new AccountModel());
$this->addClassName('Account');
}
public function getFormFields(): array
{
return [
"clientinfo_code",
"status",
"alias",
"title",
"amount"
];
}
public function getFilterFields(): array
{
return ["clientinfo_code", 'status'];
}
public function getBatchJobFields(): array
{
return ['status'];
}
//기본 기능부분
//고객예치금처리
private function setBalance(array $formDatas): void
{
//account_balance 체크
$entity = $this->getClientService()->getEntity($formDatas['clientinfo_code']);
if (!$entity) {
throw new \Exception("{$formDatas['clientinfo_code']}에 대한 고객정보를 찾을수 없습니다.");
}
$amount = intval($formDatas['amount']);
// dd($formDatas);
if ($formDatas['status'] === AccountEntity::DEFAULT_STATUS) { //입금, 쿠폰추가
$entity = $this->getClientService()->deposit($entity, 'account_balance', $amount);
} else { // 출금, 쿠폰사용
$entity = $this->getClientService()->withdrawal($entity, 'account_balance', $amount);
}
}
public function create(array $formDatas): AccountEntity
{
$this->setBalance($formDatas);
return parent::create($formDatas);
}
//List 검색용
public function setList_WordFilter(string $word): void
{
$this->getModel()->orLike($this->getModel()->getTable() . '.alias', $word, 'both');
parent::setList_WordFilter($word);
}
}