dbms_init...1
This commit is contained in:
parent
66cda3dbea
commit
d54cd661c7
@ -67,6 +67,13 @@ class ServiceController extends CustomerController
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
//Index,FieldForm관련
|
//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
|
protected function modify_process(mixed $entity, array $formDatas): mixed
|
||||||
{
|
{
|
||||||
|
|||||||
@ -81,6 +81,13 @@ class ServicePaymentController extends CustomerController
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
//Index,FieldForm관련
|
//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
|
protected function modify_process(mixed $entity, array $formDatas): mixed
|
||||||
{
|
{
|
||||||
|
|||||||
@ -102,7 +102,9 @@ class ServiceHelper extends CustomerHelper
|
|||||||
$value = implode("", $temps);
|
$value = implode("", $temps);
|
||||||
break;
|
break;
|
||||||
case 'billing_at':
|
case 'billing_at':
|
||||||
$value .= array_key_exists($viewDatas['entity']->getPK(), $viewDatas['unPaids']) ? "<BR>미지급항목: " . $viewDatas['unPaids'][$viewDatas['entity']->getPK()] . "개" : "";
|
if (array_key_exists('unPaids', $viewDatas)) {
|
||||||
|
$value .= array_key_exists($viewDatas['entity']->getPK(), $viewDatas['unPaids']) ? "<BR>미지급항목: " . $viewDatas['unPaids'][$viewDatas['entity']->getPK()] . "개" : "";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user