dbmsv2 init...1
This commit is contained in:
parent
a2d73523a4
commit
993d64627a
@ -385,7 +385,7 @@ CREATE TABLE `serverinfo` (
|
|||||||
KEY `FK_clientinfo_TO_serverinfo` (`clientinfo_uid`),
|
KEY `FK_clientinfo_TO_serverinfo` (`clientinfo_uid`),
|
||||||
CONSTRAINT `FK_clientinfo_TO_serverinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`),
|
CONSTRAINT `FK_clientinfo_TO_serverinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`),
|
||||||
CONSTRAINT `FK_serviceinfo_TO_serverinfo` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
CONSTRAINT `FK_serviceinfo_TO_serverinfo` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='서버정보';
|
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='서버정보';
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -394,7 +394,7 @@ CREATE TABLE `serverinfo` (
|
|||||||
|
|
||||||
LOCK TABLES `serverinfo` WRITE;
|
LOCK TABLES `serverinfo` WRITE;
|
||||||
/*!40000 ALTER TABLE `serverinfo` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `serverinfo` DISABLE KEYS */;
|
||||||
INSERT INTO `serverinfo` VALUES (3,564,2,'250904-M1','hp','HP DL360 Gen6',400000,300000,'2025-08-31 15:00:00','2025-09-29 15:00:00','occupied','2025-09-05 01:27:05','2025-09-04 08:09:50',NULL),(4,NULL,NULL,'250905-M4','hp','Hitach HA3000',400000,200000,'2025-09-02 15:00:00','2025-09-28 15:00:00','available',NULL,'2025-09-05 00:04:09',NULL),(5,NULL,NULL,'250905-M5','del','HP DL360 Gen9',100000,100000,'2025-09-03 15:00:00','2025-09-26 15:00:00','available',NULL,'2025-09-05 00:05:26',NULL);
|
INSERT INTO `serverinfo` VALUES (3,564,2,'250904-M1','hp','HP DL360 Gen6',400000,300000,'2025-08-31 15:00:00','2025-09-29 15:00:00','occupied','2025-09-05 01:27:05','2025-09-04 08:09:50',NULL),(4,NULL,NULL,'250905-M4','hp','Hitach HA3000',400000,200000,'2025-09-02 15:00:00','2025-09-28 15:00:00','available',NULL,'2025-09-05 00:04:09',NULL),(5,NULL,NULL,'250905-M5','del','HP DL360 Gen9',100000,100000,'2025-09-03 15:00:00','2025-09-26 15:00:00','available',NULL,'2025-09-05 00:05:26',NULL),(6,NULL,NULL,'250905-M6','etc','HP DL360 Gen10',400000,300000,'2025-09-03 15:00:00','2025-09-27 15:00:00','available',NULL,'2025-09-05 07:36:21',NULL);
|
||||||
/*!40000 ALTER TABLE `serverinfo` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `serverinfo` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
@ -407,6 +407,7 @@ DROP TABLE IF EXISTS `serverpartinfo`;
|
|||||||
/*!40101 SET character_set_client = utf8 */;
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
CREATE TABLE `serverpartinfo` (
|
CREATE TABLE `serverpartinfo` (
|
||||||
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`clientinfo_uid` int(11) DEFAULT NULL COMMENT '고객정보',
|
||||||
`part_uid` int(11) NOT NULL COMMENT 'PART_UID',
|
`part_uid` int(11) NOT NULL COMMENT 'PART_UID',
|
||||||
`serverinfo_uid` int(11) NOT NULL COMMENT '서버정보',
|
`serverinfo_uid` int(11) NOT NULL COMMENT '서버정보',
|
||||||
`serviceinfo_uid` int(11) DEFAULT NULL COMMENT '서비스정보',
|
`serviceinfo_uid` int(11) DEFAULT NULL COMMENT '서비스정보',
|
||||||
@ -422,7 +423,7 @@ CREATE TABLE `serverpartinfo` (
|
|||||||
KEY `FK_serviceinfo_TO_serverpartinfo` (`serviceinfo_uid`),
|
KEY `FK_serviceinfo_TO_serverpartinfo` (`serviceinfo_uid`),
|
||||||
CONSTRAINT `FK_serverinfo_TO_serverpartinfo` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`),
|
CONSTRAINT `FK_serverinfo_TO_serverpartinfo` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`),
|
||||||
CONSTRAINT `FK_serviceinfo_TO_serverpartinfo` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
CONSTRAINT `FK_serviceinfo_TO_serverpartinfo` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='서버파트정보';
|
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='서버파트정보';
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -431,7 +432,7 @@ CREATE TABLE `serverpartinfo` (
|
|||||||
|
|
||||||
LOCK TABLES `serverpartinfo` WRITE;
|
LOCK TABLES `serverpartinfo` WRITE;
|
||||||
/*!40000 ALTER TABLE `serverpartinfo` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `serverpartinfo` DISABLE KEYS */;
|
||||||
INSERT INTO `serverpartinfo` VALUES (1,1,3,2,'CPU','',0,2,NULL,'2025-09-05 01:27:05','2025-09-04 08:09:50'),(2,7,3,2,'RAM','',0,2,NULL,'2025-09-05 01:27:05','2025-09-04 08:09:50'),(3,14,3,2,'DISK','',0,2,'RAID1','2025-09-05 01:27:05','2025-09-04 08:09:50'),(4,6,4,NULL,'CPU','',0,4,NULL,NULL,'2025-09-05 00:04:09'),(5,10,4,NULL,'RAM','',0,4,NULL,NULL,'2025-09-05 00:04:09'),(6,22,4,NULL,'DISK','',0,2,NULL,NULL,'2025-09-05 00:04:09'),(7,3,5,NULL,'CPU','',0,3,NULL,NULL,'2025-09-05 00:05:26'),(8,9,5,NULL,'RAM','',0,3,NULL,NULL,'2025-09-05 00:05:26'),(9,14,5,NULL,'DISK','',0,3,'RAID5',NULL,'2025-09-05 00:05:26');
|
INSERT INTO `serverpartinfo` VALUES (1,NULL,1,3,2,'CPU','',0,2,NULL,'2025-09-05 01:27:05','2025-09-04 08:09:50'),(2,NULL,7,3,2,'RAM','',0,2,NULL,'2025-09-05 01:27:05','2025-09-04 08:09:50'),(3,NULL,14,3,2,'DISK','',0,2,'RAID1','2025-09-05 01:27:05','2025-09-04 08:09:50'),(4,NULL,6,4,NULL,'CPU','',0,4,NULL,NULL,'2025-09-05 00:04:09'),(5,NULL,10,4,NULL,'RAM','',0,4,NULL,NULL,'2025-09-05 00:04:09'),(6,NULL,22,4,NULL,'DISK','',0,2,NULL,NULL,'2025-09-05 00:04:09'),(7,NULL,3,5,NULL,'CPU','',0,3,NULL,NULL,'2025-09-05 00:05:26'),(8,NULL,9,5,NULL,'RAM','',0,3,NULL,NULL,'2025-09-05 00:05:26'),(9,NULL,14,5,NULL,'DISK','',0,3,'RAID5',NULL,'2025-09-05 00:05:26'),(10,NULL,29,3,NULL,'OS','onetime',0,1,NULL,NULL,'2025-09-05 03:38:30'),(11,NULL,8,3,NULL,'RAM','onetime',100000,1,'','2025-09-05 03:39:36','2025-09-05 03:39:09'),(13,NULL,5,6,NULL,'CPU','',0,10,NULL,'2025-09-05 07:37:42','2025-09-05 07:36:21'),(14,NULL,9,6,NULL,'RAM','',0,10,NULL,NULL,'2025-09-05 07:36:21'),(15,NULL,26,6,NULL,'DISK','',0,10,'RAID10',NULL,'2025-09-05 07:36:21'),(16,NULL,10,6,NULL,'RAM','onetime',100000,2,NULL,NULL,'2025-09-05 07:38:22'),(17,NULL,14,6,NULL,'DISK','month',10000,2,'RAID1',NULL,'2025-09-05 07:39:26');
|
||||||
/*!40000 ALTER TABLE `serverpartinfo` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `serverpartinfo` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
@ -591,4 +592,4 @@ UNLOCK TABLES;
|
|||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||||
|
|
||||||
-- Dump completed on 2025-09-05 12:38:01
|
-- Dump completed on 2025-09-05 16:39:52
|
||||||
|
|||||||
@ -10,9 +10,20 @@ abstract class CustomerEntity extends CommonEntity
|
|||||||
{
|
{
|
||||||
parent::__construct($data);
|
parent::__construct($data);
|
||||||
}
|
}
|
||||||
//고객정보객체
|
final public function getUserUID(): int|null
|
||||||
final public function getClientUID(): int|null
|
{
|
||||||
|
return $this->attributes['user_uid'];
|
||||||
|
}
|
||||||
|
final public function getClientInfoUID(): int|null
|
||||||
{
|
{
|
||||||
return $this->attributes['clientinfo_uid'] ?? null;
|
return $this->attributes['clientinfo_uid'] ?? null;
|
||||||
}
|
}
|
||||||
|
final public function getServiceInfoUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['serviceinfo_uid'] ?? null;
|
||||||
|
}
|
||||||
|
final public function getServerInfoUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['serverinfo_uid'] ?? null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -26,14 +26,6 @@ class ServiceEntity extends CustomerEntity
|
|||||||
{
|
{
|
||||||
return $this->attributes['code'];
|
return $this->attributes['code'];
|
||||||
}
|
}
|
||||||
final public function getUserUID(): int|null
|
|
||||||
{
|
|
||||||
return $this->attributes['user_uid'];
|
|
||||||
}
|
|
||||||
final public function getClientInfoUID(): int|null
|
|
||||||
{
|
|
||||||
return $this->attributes['clientinfo_uid'];
|
|
||||||
}
|
|
||||||
public function getType(): string
|
public function getType(): string
|
||||||
{
|
{
|
||||||
return $this->attributes['type'];
|
return $this->attributes['type'];
|
||||||
|
|||||||
@ -10,4 +10,20 @@ abstract class EquipmentEntity extends CommonEntity
|
|||||||
{
|
{
|
||||||
parent::__construct($data);
|
parent::__construct($data);
|
||||||
}
|
}
|
||||||
|
final public function getUserUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['user_uid'];
|
||||||
|
}
|
||||||
|
final public function getClientInfoUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['clientinfo_uid'] ?? null;
|
||||||
|
}
|
||||||
|
final public function getServiceInfoUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['serviceinfo_uid'] ?? null;
|
||||||
|
}
|
||||||
|
final public function getServerInfoUID(): int|null
|
||||||
|
{
|
||||||
|
return $this->attributes['serverinfo_uid'] ?? null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -46,12 +46,4 @@ class ServerEntity extends EquipmentEntity
|
|||||||
{
|
{
|
||||||
return sprintf("%s[%s]", parent::getTitle(), $this->getCode());
|
return sprintf("%s[%s]", parent::getTitle(), $this->getCode());
|
||||||
}
|
}
|
||||||
public function getClientInfoUID(): int|null
|
|
||||||
{
|
|
||||||
return $this->attributes['clientinfo_uid'] ?? null;
|
|
||||||
}
|
|
||||||
public function getServiceInfoUID(): int|null
|
|
||||||
{
|
|
||||||
return $this->attributes['serviceinfo_uid'] ?? null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -35,14 +35,6 @@ class ServerPartEntity extends EquipmentEntity
|
|||||||
{
|
{
|
||||||
return $this->attributes['part_uid'];
|
return $this->attributes['part_uid'];
|
||||||
}
|
}
|
||||||
public function getServerInfoUID(): int
|
|
||||||
{
|
|
||||||
return $this->attributes['serverinfo_uid'];
|
|
||||||
}
|
|
||||||
public function getServiceInfoUID(): int|null
|
|
||||||
{
|
|
||||||
return $this->attributes['serviceinfo_uid'];
|
|
||||||
}
|
|
||||||
public function getType(): string
|
public function getType(): string
|
||||||
{
|
{
|
||||||
return $this->attributes['type'];
|
return $this->attributes['type'];
|
||||||
|
|||||||
@ -44,15 +44,15 @@ class ServiceHelper extends CustomerHelper
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'SWITCH':
|
|
||||||
case 'IP':
|
|
||||||
case 'CS':
|
|
||||||
case 'CPU':
|
case 'CPU':
|
||||||
case 'RAM':
|
case 'RAM':
|
||||||
case 'DISK':
|
case 'DISK':
|
||||||
case 'OS':
|
case 'OS':
|
||||||
case 'DB':
|
case 'DB':
|
||||||
case 'SOFTWARE':
|
case 'SOFTWARE':
|
||||||
|
case 'SWITCH':
|
||||||
|
case 'IP':
|
||||||
|
case 'CS':
|
||||||
$viewDatas['serverEntity'] = $viewDatas['entity']->getServerEntity();
|
$viewDatas['serverEntity'] = $viewDatas['entity']->getServerEntity();
|
||||||
$value = $this->getServerHelper()->getFieldView($field, $value, $viewDatas, $extras);
|
$value = $this->getServerHelper()->getFieldView($field, $value, $viewDatas, $extras);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -51,15 +51,15 @@ class ServerHelper extends EquipmentHelper
|
|||||||
case 'format_at':
|
case 'format_at':
|
||||||
$value = $value ? date("Y-m-d", strtotime($value)) : "";
|
$value = $value ? date("Y-m-d", strtotime($value)) : "";
|
||||||
break;
|
break;
|
||||||
case 'SWITCH':
|
|
||||||
case 'IP':
|
|
||||||
case 'CS':
|
|
||||||
case 'CPU':
|
case 'CPU':
|
||||||
case 'RAM':
|
case 'RAM':
|
||||||
case 'DISK':
|
case 'DISK':
|
||||||
case 'OS':
|
case 'OS':
|
||||||
case 'DB':
|
case 'DB':
|
||||||
case 'SOFTWARE':
|
case 'SOFTWARE':
|
||||||
|
case 'SWITCH':
|
||||||
|
case 'IP':
|
||||||
|
case 'CS':
|
||||||
$serverEntity = array_key_exists('serverEntity', $viewDatas) ? $viewDatas['serverEntity'] : $viewDatas['entity'];
|
$serverEntity = array_key_exists('serverEntity', $viewDatas) ? $viewDatas['serverEntity'] : $viewDatas['entity'];
|
||||||
$viewDatas['serverPartEntities'] = $serverEntity->getServerPartEntities($field);
|
$viewDatas['serverPartEntities'] = $serverEntity->getServerPartEntities($field);
|
||||||
$value = $this->getServerPartHelper()->getFieldView($field, $value, $viewDatas, $extras);
|
$value = $this->getServerPartHelper()->getFieldView($field, $value, $viewDatas, $extras);
|
||||||
|
|||||||
@ -72,15 +72,15 @@ class ServerPartHelper extends EquipmentHelper
|
|||||||
public function getFieldView(string $field, mixed $value, array $viewDatas, array $extras = []): string|null
|
public function getFieldView(string $field, mixed $value, array $viewDatas, array $extras = []): string|null
|
||||||
{
|
{
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'SWITCH':
|
|
||||||
case 'IP':
|
|
||||||
case 'CS':
|
|
||||||
case 'CPU':
|
case 'CPU':
|
||||||
case 'RAM':
|
case 'RAM':
|
||||||
case 'DISK':
|
case 'DISK':
|
||||||
case 'OS':
|
case 'OS':
|
||||||
case 'DB':
|
case 'DB':
|
||||||
case 'SOFTWARE':
|
case 'SOFTWARE':
|
||||||
|
case 'SWITCH':
|
||||||
|
case 'IP':
|
||||||
|
case 'CS':
|
||||||
$temps = [];
|
$temps = [];
|
||||||
foreach ($viewDatas['serverPartEntities'] as $partEntity) {
|
foreach ($viewDatas['serverPartEntities'] as $partEntity) {
|
||||||
$modal = form_label(
|
$modal = form_label(
|
||||||
@ -95,10 +95,10 @@ class ServerPartHelper extends EquipmentHelper
|
|||||||
]
|
]
|
||||||
);
|
);
|
||||||
$temps[] = sprintf(
|
$temps[] = sprintf(
|
||||||
"%s%s%s %s",
|
"%s%s*%s개 %s",
|
||||||
$modal,
|
$modal,
|
||||||
$partEntity->getTitle(),
|
$partEntity->getTitle(),
|
||||||
$partEntity->getCnt() >= 1 ? "*" . $partEntity->getCnt() . "개" : "",
|
$partEntity->getCnt(),
|
||||||
$partEntity->getExtra() ?? ""
|
$partEntity->getExtra() ?? ""
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,17 +4,13 @@ namespace App\Services\Customer;
|
|||||||
|
|
||||||
use App\Entities\Customer\ServiceEntity;
|
use App\Entities\Customer\ServiceEntity;
|
||||||
use App\Models\Customer\ServiceModel;
|
use App\Models\Customer\ServiceModel;
|
||||||
use App\Services\Equipment\CSService;
|
use App\Services\Equipment\ServerService;
|
||||||
use App\Services\Equipment\IPService;
|
|
||||||
use App\Services\Equipment\ServerPartService;
|
|
||||||
use App\Traits\IPTrait;
|
use App\Traits\IPTrait;
|
||||||
|
|
||||||
class ServiceService extends CustomerService
|
class ServiceService extends CustomerService
|
||||||
{
|
{
|
||||||
use IPTrait;
|
use IPTrait;
|
||||||
private ?ServerPartService $_serverPartService = null;
|
private ?ServerService $_serverService = null;
|
||||||
private ?IPService $_ipService = null;
|
|
||||||
private ?CSService $_csService = null;
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct(new ServiceModel());
|
parent::__construct(new ServiceModel());
|
||||||
@ -102,41 +98,20 @@ class ServiceService extends CustomerService
|
|||||||
}
|
}
|
||||||
return $entity;
|
return $entity;
|
||||||
}
|
}
|
||||||
final public function getServerPartService(): ServerPartService
|
|
||||||
{
|
|
||||||
if (!$this->_serverPartService) {
|
|
||||||
$this->_serverPartService = new ServerPartService();
|
|
||||||
}
|
|
||||||
return $this->_serverPartService;
|
|
||||||
}
|
|
||||||
final public function getIPService(): IPService
|
|
||||||
{
|
|
||||||
if (!$this->_ipService) {
|
|
||||||
$this->_ipService = new IPService();
|
|
||||||
}
|
|
||||||
return $this->_ipService;
|
|
||||||
}
|
|
||||||
final public function getCSService(): CSService
|
|
||||||
{
|
|
||||||
if (!$this->_csService) {
|
|
||||||
$this->_csService = new CSService();
|
|
||||||
}
|
|
||||||
return $this->_csService;
|
|
||||||
}
|
|
||||||
//기본 기능부분
|
//기본 기능부분
|
||||||
public function getFormOption(string $field, array $options = []): array
|
public function getFormOption(string $field, array $options = []): array
|
||||||
{
|
{
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'SWITCH':
|
|
||||||
case 'IP':
|
|
||||||
case 'CS':
|
|
||||||
case 'CPU':
|
case 'CPU':
|
||||||
case 'RAM':
|
case 'RAM':
|
||||||
case 'DISK':
|
case 'DISK':
|
||||||
case 'OS':
|
case 'OS':
|
||||||
case 'DB':
|
case 'DB':
|
||||||
case 'SOFTWARE':
|
case 'SOFTWARE':
|
||||||
$options = $this->getServerPartService()->getFormOption($field, $options);
|
case 'SWITCH':
|
||||||
|
case 'IP':
|
||||||
|
case 'CS':
|
||||||
|
$options = $this->getServerService()->getFormOption($field, $options);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$options = parent::getFormOption($field, $options);
|
$options = parent::getFormOption($field, $options);
|
||||||
|
|||||||
@ -76,7 +76,21 @@ class ServerPartService extends EquipmentService
|
|||||||
//partEntity 정보 추가
|
//partEntity 정보 추가
|
||||||
protected function getEntity_process(mixed $entity): ServerPartEntity
|
protected function getEntity_process(mixed $entity): ServerPartEntity
|
||||||
{
|
{
|
||||||
$partEntity = $this->getPartService()->getEntity($entity->getPartUID());
|
switch ($entity->getType()) {
|
||||||
|
case 'SWITCH':
|
||||||
|
$partService = $this->getSwitchService();
|
||||||
|
break;
|
||||||
|
case 'IP':
|
||||||
|
$partService = $this->getIPService();
|
||||||
|
break;
|
||||||
|
case 'CS':
|
||||||
|
$partService = $this->getCSService();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$partService = $this->getPartService();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$partEntity = $partService->getEntity($entity->getPartUID());
|
||||||
if ($entity) {
|
if ($entity) {
|
||||||
$entity->setPartEntity($partEntity);
|
$entity->setPartEntity($partEntity);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace App\Services\Equipment;
|
namespace App\Services\Equipment;
|
||||||
|
|
||||||
use App\Entities\Customer\ServiceEntity;
|
|
||||||
use App\Entities\Equipment\ServerEntity;
|
use App\Entities\Equipment\ServerEntity;
|
||||||
use App\Models\Equipment\ServerModel;
|
use App\Models\Equipment\ServerModel;
|
||||||
use App\Services\Equipment\EquipmentService;
|
use App\Services\Equipment\EquipmentService;
|
||||||
@ -94,15 +93,15 @@ class ServerService extends EquipmentService
|
|||||||
public function getFormOption(string $field, array $options = []): array
|
public function getFormOption(string $field, array $options = []): array
|
||||||
{
|
{
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'SWITCH':
|
|
||||||
case 'IP':
|
|
||||||
case 'CS':
|
|
||||||
case 'CPU':
|
case 'CPU':
|
||||||
case 'RAM':
|
case 'RAM':
|
||||||
case 'DISK':
|
case 'DISK':
|
||||||
case 'OS':
|
case 'OS':
|
||||||
case 'DB':
|
case 'DB':
|
||||||
case 'SOFTWARE':
|
case 'SOFTWARE':
|
||||||
|
case 'SWITCH':
|
||||||
|
case 'IP':
|
||||||
|
case 'CS':
|
||||||
$options = $this->getServerPartService()->getFormOption($field, $options);
|
$options = $this->getServerPartService()->getFormOption($field, $options);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -193,7 +192,7 @@ class ServerService extends EquipmentService
|
|||||||
{
|
{
|
||||||
//기존 ServerPart정보 삭제
|
//기존 ServerPart정보 삭제
|
||||||
foreach ($this->getServerPartService()->getEntities(['serverinfo_uid' => $entity->getPK()]) as $serverPartEntity) {
|
foreach ($this->getServerPartService()->getEntities(['serverinfo_uid' => $entity->getPK()]) as $serverPartEntity) {
|
||||||
$this->getServerPartService()->deleteByServer($serverPartEntity);
|
$this->getServerPartService()->delete($serverPartEntity);
|
||||||
}
|
}
|
||||||
return parent::delete($entity);
|
return parent::delete($entity);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user