188 lines
6.4 KiB
PHP
188 lines
6.4 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
use App\Entities\PaymentEntity;
|
|
use App\Helpers\PaymentHelper;
|
|
use App\Interfaces\Customer\ServiceInterface;
|
|
use App\Models\PaymentModel;
|
|
use App\Services\CommonService;
|
|
use App\Services\Customer\ClientService;
|
|
use App\Services\Customer\ServiceService;
|
|
use App\Services\Equipment\ServerPartService;
|
|
use App\Services\UserService;
|
|
|
|
class PaymentService extends CommonService implements ServiceInterface
|
|
{
|
|
private ?UserService $_userService = null;
|
|
private ?ClientService $_clientService = null;
|
|
private ?ServiceService $_serviceService = null;
|
|
private ?ServerPartService $_serverPartService = null;
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new PaymentModel(), new PaymentHelper());
|
|
$this->addClassName('Payment');
|
|
}
|
|
final public function getFormFields(): array
|
|
{
|
|
return [
|
|
"serviceinfo_uid",
|
|
"title",
|
|
"amount",
|
|
"billing",
|
|
"billing_at",
|
|
"content"
|
|
];
|
|
}
|
|
final public function getFormFilters(): array
|
|
{
|
|
return [
|
|
'clientinfo_uid',
|
|
"serviceinfo_uid",
|
|
'billing',
|
|
'pay',
|
|
'status',
|
|
'user_uid',
|
|
];
|
|
}
|
|
final public function getIndexFields(): array
|
|
{
|
|
return [
|
|
'clientinfo_uid',
|
|
"serviceinfo_uid",
|
|
'billing',
|
|
'title',
|
|
'amount',
|
|
'billing_at',
|
|
'pay',
|
|
'status',
|
|
'updated_at',
|
|
'countdown',
|
|
'user_uid',
|
|
];
|
|
}
|
|
final public function getBatchjobFields(): array
|
|
{
|
|
return ['pay', 'status'];
|
|
}
|
|
final public function getBatchjobButtons(): array
|
|
{
|
|
return [
|
|
'batchjob' => '일괄 결제 ',
|
|
'invoice' => '청구서 발행',
|
|
];
|
|
}
|
|
final public function getClientService(): ClientService
|
|
{
|
|
if (!$this->_clientService) {
|
|
$this->_clientService = new ClientService();
|
|
}
|
|
return $this->_clientService;
|
|
}
|
|
final public function getUSerService(): UserService
|
|
{
|
|
if (!$this->_userService) {
|
|
$this->_userService = new UserService();
|
|
}
|
|
return $this->_userService;
|
|
}
|
|
final public function getServiceService(): ServiceService
|
|
{
|
|
if ($this->_serviceService === null) {
|
|
$this->_serviceService = new ServiceService();
|
|
}
|
|
return $this->_serviceService;
|
|
}
|
|
final public function getServerPartService(): ServerPartService
|
|
{
|
|
if (!$this->_serverPartService) {
|
|
$this->_serverPartService = new ServerPartService();
|
|
}
|
|
return $this->_serverPartService;
|
|
}
|
|
|
|
//총 미납건수, 금액
|
|
final public function getUnPaids(string $group, array $where = []): array
|
|
{
|
|
$rows = $this->getModel()->groupBy($group)
|
|
->select("{$group},COUNT(uid) as cnt, SUM(amount) as amount")
|
|
->where(['status' => STATUS['UNPAID']])
|
|
->where($where)
|
|
->get()->getResult();
|
|
$unPaids = [];
|
|
foreach ($rows as $row) {
|
|
$unPaids[$row->$group] = ['cnt' => $row->cnt, 'amount' => $row->amount];
|
|
}
|
|
return $unPaids;
|
|
}
|
|
//결제금액설정
|
|
final public function setAmount(PaymentEntity $entity, int $amount): PaymentEntity
|
|
{
|
|
return parent::modify($entity, ['amount' => $amount]);
|
|
}
|
|
//기본 기능부분
|
|
//FieldForm관련용
|
|
final public function getFormOption(string $field, array $options = []): array
|
|
{
|
|
switch ($field) {
|
|
case 'serviceinfo_uid':
|
|
$options = $this->getServiceService()->getEntities();
|
|
break;
|
|
default:
|
|
$options = parent::getFormOption($field, $options);
|
|
break;
|
|
}
|
|
return $options;
|
|
}
|
|
//Action 기능
|
|
public function create(array $formDatas): PaymentEntity
|
|
{
|
|
if (!array_key_exists('serviceinfo_uid', $formDatas)) {
|
|
throw new \Exception("서비스정보가 없습니다.");
|
|
}
|
|
//서비스정보 가져오기
|
|
$serviceEntity = $this->getServiceService()->getEntity($formDatas['serviceinfo_uid']);
|
|
if (!$serviceEntity instanceof ServiceEntity) {
|
|
throw new \Exception(__METHOD__ . "에서 오류발생: 서비스정보[{$formDatas['serviceinfo_uid']}]를 찾을수 없습니다.");
|
|
}
|
|
$formDatas['clientinfo_uid'] = $serviceEntity->getClientInfoUID();
|
|
return parent::create($formDatas);
|
|
}
|
|
//List 검색용
|
|
//OrderBy 처리
|
|
final public function setOrderBy(mixed $field = null, mixed $value = null): void
|
|
{
|
|
$this->getModel()->orderBy('billing_at ASC');
|
|
parent::setOrderBy($field, $value);
|
|
}
|
|
public function changeService(ServiceEntity $oldServiceEntity, ServiceEntity $serviceEntity, array $serviceDatas): ServiceEntity
|
|
{
|
|
//결제정보 가져오기
|
|
$entity = $serviceEntity->getPaymentEntity();
|
|
if (!$entity instanceof PaymentEntity) {
|
|
throw new \Exception(__METHOD__ . "에서 오류발생: 서비스정보[{$serviceEntity->getPK()}]에 해당하는 결제정보를 찾을수 없습니다.");
|
|
}
|
|
//미납상태확인
|
|
if ($entity->getStatus() !== STATUS['UNPAID']) {
|
|
throw new \Exception(__METHOD__ . "에서 오류발생: 완료된 결제는 수정이 불가합니다.");
|
|
}
|
|
$formDatas = [];
|
|
$formDatas['clientinfo_uid'] = $serviceEntity->getClientInfoUID();
|
|
$formDatas['serviceinfo_uid'] = $serviceEntity->getPK();
|
|
$formDatas['serverinfo_uid'] = $serviceEntity->getServerInfoUID();
|
|
$formDatas['title'] = $serviceEntity->getServerEntity()->getTitle();
|
|
$formDatas['amount'] = $serviceEntity->getAmount();
|
|
$formDatas['billing'] = PAYMENT['BILLING']['MONTH'];
|
|
$formDatas['billing_at'] = $serviceEntity->getBillingAt();
|
|
//필수정보처리 후 결제정보수정 후 서비스정보 Entity에 결제정보 설정
|
|
return $serviceEntity->setPaymentEntity($this->getModel()->modify($entity, $formDatas));
|
|
}
|
|
public function unsetService(ServiceEntity $serviceEntity, array $serviceDatas): ServiceEntity
|
|
{
|
|
//아무것도 하지 않는다.
|
|
return $serviceEntity;
|
|
}
|
|
}
|