feat: 하드웨어 자산 관리 고도화 및 자동 이력 시스템 구축

- 통합 원격 접속 정보 UI 구현 (IP/MAC 및 계정 정보 통합)
- 서버 측 스냅샷 비교 기반 자동 이력(Log) 생성 로직 도입
- 타임라인 UI 개선 (이벤트별 색상 뱃지 및 변동 사항 강조)
- 자산 상세 필드 확장 (서비스 구분, 용도 등)
- 테스트 데이터 생성기 및 이력 계획서 추가
This commit is contained in:
2026-06-10 09:51:03 +09:00
parent 25ebaf4685
commit ce1ed40561
10 changed files with 617 additions and 140 deletions

View File

@@ -55,6 +55,9 @@ export abstract class BaseModal {
this.currentAsset = asset;
this.isEditMode = (mode === 'add' || mode === 'edit');
// 폼 초기화 추가
if (this.formEl) this.formEl.reset();
this.setEditLockMode(mode);
this.fillFormData(asset);