dbms_init...1

This commit is contained in:
choi.jh 2025-06-26 09:01:04 +09:00
parent 66cda3dbea
commit d54cd661c7
3 changed files with 17 additions and 1 deletions

View File

@ -67,6 +67,13 @@ class ServiceController extends CustomerController
return $result;
}
//Index,FieldForm관련
//추가관련
protected function create_process(array $formDatas): mixed
{
//수정자 정보 자동추가용
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
return parent::create_process($formDatas);
}
//수정관련
protected function modify_process(mixed $entity, array $formDatas): mixed
{

View File

@ -81,6 +81,13 @@ class ServicePaymentController extends CustomerController
return $result;
}
//Index,FieldForm관련
//추가관련
protected function create_process(array $formDatas): mixed
{
//수정자 정보 자동추가용
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
return parent::create_process($formDatas);
}
//수정관련
protected function modify_process(mixed $entity, array $formDatas): mixed
{

View File

@ -102,7 +102,9 @@ class ServiceHelper extends CustomerHelper
$value = implode("", $temps);
break;
case 'billing_at':
if (array_key_exists('unPaids', $viewDatas)) {
$value .= array_key_exists($viewDatas['entity']->getPK(), $viewDatas['unPaids']) ? "<BR>미지급항목: " . $viewDatas['unPaids'][$viewDatas['entity']->getPK()] . "" : "";
}
break;
default: