107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Customer;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Customer\ServiceItemEntity;
|
|
use App\Entities\Customer\PaymentEntity;
|
|
use App\Models\Customer\PaymentModel;
|
|
|
|
class PaymentService extends CustomerService
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new PaymentModel());
|
|
$this->addClassName('Payment');
|
|
}
|
|
public function getModelClass(): PaymentModel
|
|
{
|
|
return new PaymentModel();
|
|
}
|
|
public function getEntityClass(): PaymentEntity
|
|
{
|
|
return new PaymentEntity();
|
|
}
|
|
public function getFormFields(): array
|
|
{
|
|
return [
|
|
'fields' => [
|
|
"clientinfo_uid",
|
|
"serviceinfo_uid",
|
|
"title",
|
|
"amount",
|
|
"billing_method",
|
|
"billing_at",
|
|
"pay_method",
|
|
"status"
|
|
],
|
|
'filters' => [
|
|
'clientinfo_uid',
|
|
'billing_method',
|
|
'pay_method',
|
|
'status',
|
|
'user_uid'
|
|
],
|
|
];
|
|
}
|
|
public function getIndexFields(): array
|
|
{
|
|
return [
|
|
'fields' => [
|
|
'clientinfo_uid',
|
|
'billing_method',
|
|
'title',
|
|
'amount',
|
|
'billing_at',
|
|
'pay_method',
|
|
'status',
|
|
'countdown',
|
|
'user_uid'
|
|
],
|
|
'filters' => [
|
|
'clientinfo_uid',
|
|
'billing_method',
|
|
'pay_method',
|
|
'status',
|
|
'user_uid'
|
|
],
|
|
'batchjob_fields' => ['clientinfo_uid', 'billing_method', 'pay_method', 'status'],
|
|
'batchjob_buttions' => [
|
|
'invoice' => '청구서 발행',
|
|
],
|
|
];
|
|
}
|
|
//기본 기능부분
|
|
//FieldForm관련용
|
|
public function getFormFieldOption(string $field, array $options = []): array
|
|
{
|
|
switch ($field) {
|
|
case 'user_uid':
|
|
$options = $this->getUserService()->getEntities();
|
|
break;
|
|
case 'clientinfo_uid':
|
|
$options = $this->getClientService()->getEntities();
|
|
break;
|
|
case 'serviceinfo_uid':
|
|
$options = $this->getServiceService()->getEntities();
|
|
break;
|
|
default:
|
|
$options = parent::getFormFieldOption($field, $options);
|
|
break;
|
|
}
|
|
return $options;
|
|
}
|
|
//List 검색용
|
|
//OrderBy 처리
|
|
public function setOrderBy(mixed $field = null, mixed $value = null): void
|
|
{
|
|
$this->getModel()->orderBy('billing_at ASC');
|
|
parent::setOrderBy($field, $value);
|
|
}
|
|
//미납서비스 정보
|
|
final public function getUnPaidCount(string $checkDate = 'now', string $idx_field = "serviceinfo_uid"): array
|
|
{
|
|
return $this->getModel()->getUnPaidCount($checkDate, $idx_field);
|
|
}
|
|
}
|