dbmsv4 init...4

This commit is contained in:
최준흠 2026-01-13 10:42:08 +09:00
parent a470299594
commit c227c4fdb3

View File

@ -17,12 +17,11 @@ class SearchCell extends CommonCell
{
$options = ["" => "고객명 선택"];
foreach ($this->getService()->getEntities() as $entity) {
$options[$entity->getPK()] = $entity->getTitle();
$options[$entity->getPK()] = $entity->getSite() . "/" . $entity->getTitle();
}
$template = array_key_exists('template', $params) ? $params['template'] : __FUNCTION__;
return view('cells/search/' . $template, [
'searchCellDatas' => [
'service' => $this->getService(),
'options' => $options,
'selected' => null,
]