dbms/app/Models/Customer/ServiceModel.php
2025-07-08 16:41:02 +09:00

77 lines
2.1 KiB
PHP

<?php
namespace App\Models\Customer;
use App\Entities\Customer\ServiceEntity;
class ServiceModel extends CustomerModel
{
const TABLE = "serviceinfo";
const PK = "uid";
const TITLE = "code";
protected $table = self::TABLE;
protected $primaryKey = self::PK;
protected $returnType = ServiceEntity::class;
protected $allowedFields = [
"clientinfo_uid",
"ownerinfo_uid",
"user_uid",
"switchinfo_uid",
"codeinfo_uid",
"code",
"type",
"location",
"raid",
"billing_at",
"start_at",
"status",
"updated_at"
];
public function __construct()
{
parent::__construct();
}
public function getFormFieldRule(string $action, string $field): string
{
if (is_array($field)) {
throw new \Exception(__FUNCTION__ . "=> field가 array 입니다.\n" . var_export($field, true));
}
switch ($field) {
case "clientinfo_uid":
case "ownerinfo_uid":
case "user_uid":
case "switchinfo_uid":
case "codeinfo_uid":
$rule = "required|numeric";
break;
case "code":
$rule = "if_exist|trim|string";
break;
case "type":
case "location":
case "status":
$rule = "required|trim|string";
break;
case "billing_at":
case "start_at":
$rule = "required|valid_date";
break;
case "raid":
$rule = "if_exist|trim|string";
break;
default:
$rule = parent::getFormFieldRule($action, $field);
break;
}
return $rule;
}
//Create용
protected function create_process(array $formDatas): ServiceEntity
{
$entity = parent::create_process($formDatas);
//고객코드 Code 자동 생성 후 수정
$code = 'S' . str_pad($entity->getPK(), 8, '0', STR_PAD_LEFT);
return $this->modify($entity, ['code' => $code]);
}
}