dbmsv3 init...1

This commit is contained in:
choi.jh 2025-10-02 14:49:16 +09:00
parent 17b57be180
commit 08494a5385
3 changed files with 2 additions and 6 deletions

View File

@ -49,7 +49,7 @@ class ServiceEntity extends CustomerEntity
//기본기능용 //기본기능용
public function getTitle(): string public function getTitle(): string
{ {
return $this->getServerEntity()->getTitle(); return sprintf("[%s]%s", $this->getCode(), $this->getServerEntity()->getTitle());
} }
final public function getSite(): string final public function getSite(): string
{ {

View File

@ -22,10 +22,6 @@ class ServerHelper extends EquipmentHelper
$form .= form_hidden($field, (string)$value); $form .= form_hidden($field, (string)$value);
} }
break; break;
case 'code':
// $extras['readonly'] = in_array($viewDatas['control']['action'], ['modify_form']) ? ' readonly' : '';
$form = parent::getFieldForm($field, $value, $viewDatas, $extras);
break;
case 'manufactur_at': case 'manufactur_at':
case 'format_at': case 'format_at':
$extras['class'] = array_key_exists('class', $extras) ? $extras['class'] . ' calender' : 'calender'; $extras['class'] = array_key_exists('class', $extras) ? $extras['class'] . ' calender' : 'calender';

View File

@ -22,7 +22,7 @@
<?php foreach ($viewDatas['rows'] as $row): ?> <?php foreach ($viewDatas['rows'] as $row): ?>
<table class="table table-sm table-bordered text-center"> <table class="table table-sm table-bordered text-center">
<tr> <tr>
<th class="p-0">관리자</th> <th class="p-0">고객</th>
<th class="p-0"> 결제 금액</th> <th class="p-0"> 결제 금액</th>
</tr> </tr>
<tr> <tr>