12 Commits

Author SHA1 Message Date
fdc29b23c1 feat: 자산 관리 가이드 추가 및 테이블 스타일 개선 2026-04-22 16:32:57 +09:00
fca9f5caf8 Merge branch 'main' of https://gitea.hmac.kr/Taehoon/ITAM 2026-04-21 11:40:59 +09:00
34baea9143 fix: 빌드 에러 및 포트 동기화 수정 2026-04-21 11:40:54 +09:00
d983ad469f feat: SW 통합 모달 구현 및 대시보드 자산 추가 기능 고도화
- SW 모달(구독, 영구, 클라우드) 통합 및 레이아웃 최적화
- 모든 자산 상세 모달에 '조회/수정 모드' 전환 로직(Edit Lock) 적용
- 하드웨어/소프트웨어 대시보드에서 '자산 추가' 버튼 연동 및 기본값 설정
- 클라우드 자산 리스트의 데이터 소스를 DB 직결(cloud_assets) 방식으로 변경
- 클라우드 자산 저장 API 연동 및 불필요한 구형 모달(CloudModal) 제거
- 리스트 뷰에서 상세 보기 시 '조회 모드'로 열리도록 호출 로직 수정
2026-04-21 11:37:13 +09:00
153e422180 feat: 자산 관리 시스템 고도화 및 데이터 구조 최적화
- 모바일 자산(Mobile) 카테고리 추가 및 엑셀 업로드/다운로드 지원
- 클라우드 자산(Cloud) 및 변경 이력(Logs) 테이블 및 API 구현
- 데이터베이스 초기화 로직 개선 및 테이블 자동 생성 기능 추가
- 하드웨어 저장 로직 통합 및 카테고리 판별 자동화
- SW 대시보드 사용량 산출 방식 개선 (sw_id 기반 맵핑)
- 수동 모달(Storage)을 통합 하드웨어 모달(HWModal)로 통합 및 정리
2026-04-21 10:30:05 +09:00
213bbe4734 merge: integrate collaborator features and synchronize with shared DB infrastructure 2026-04-21 10:00:57 +09:00
d8824ca0e1 Merge branch 'main' of https://gitea.hmac.kr/Taehoon/ITAM 2026-04-21 09:12:43 +09:00
1ace678c09 feat: 대시보드 및 모달 컴포넌트 최적화, 클라우드 자산 뷰 추가 2026-04-21 09:11:56 +09:00
5248b494e9 refactor: standardize modal system, unify hardware DB schemas, and implement automatic asset reclassification 2026-04-20 17:56:19 +09:00
5372cda59f feat: 자산별 전용 테이블 분리 및 상세 필드 엑셀 통합 관리 구현 (6개 테이블 개편 및 UI/API 연동) 2026-04-17 18:02:05 +09:00
415727a866 feat: 자산 카테고리별 6개 전용 테이블 분리 및 백엔드 API, 프론트엔드 상태 관리 전면 개편 (개인PC, 서버, 스토리지, 전산비품, 구독SW, 영구SW) 2026-04-17 17:25:52 +09:00
6904925146 feat: 엑셀 내보내기/불러오기 시 상세 페이지의 모든 필드(비고, 사양, 조직 등) 포함 기능 구현 2026-04-17 15:50:21 +09:00
40 changed files with 7805 additions and 1826 deletions

3889
backup_atam_data.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -10,95 +10,145 @@ async function initDB() {
host: DB_HOST, host: DB_HOST,
user: DB_USER, user: DB_USER,
password: DB_PASS, password: DB_PASS,
port: parseInt(DB_PORT || '3306') database: DB_NAME,
port: parseInt(DB_PORT || '3306'),
multipleStatements: true
}); });
console.log('🚀 DB 초기화 시작...'); console.log('🔄 DB 초기화 시작 (표준화 스키마 적용)...');
// 1. 데이터베이스 생성 // 기존 테이블 삭제
await connection.query(`CREATE DATABASE IF NOT EXISTS ${DB_NAME};`); const tablesToDrop = [
await connection.query(`USE ${DB_NAME};`); 'pc_assets', 'server_assets', 'storage_assets', 'equip_assets', 'mobile_assets',
console.log(`✅ 데이터베이스 생성 완료: ${DB_NAME}`); 'sw_sub_assets', 'sw_perm_assets', 'cloud_assets', 'sw_users', 'asset_logs'
];
for (const table of tablesToDrop) {
await connection.query(`DROP TABLE IF EXISTS ${table}`);
}
// 2. 하드웨어 자산 테이블 // 공통 하드웨어 테이블 생성 함수
const createHwTable = ` const createHardwareTable = (tableName, comment) => `
CREATE TABLE IF NOT EXISTS hw_assets ( CREATE TABLE ${tableName} (
id VARCHAR(50) PRIMARY KEY, id VARCHAR(50) PRIMARY KEY,
type VARCHAR(50) NOT NULL COMMENT '개인PC, 서버, 스토리지, 전산비품',
corp VARCHAR(100) COMMENT '구매법인', corp VARCHAR(100) COMMENT '구매법인',
asset_code VARCHAR(100) COMMENT '자산번호/코드', asset_code VARCHAR(100) COMMENT '자산번호',
asset_name VARCHAR(255) COMMENT '명칭/용도', purchase_date VARCHAR(50) COMMENT '구매일자',
location VARCHAR(255) COMMENT '설치위치', type VARCHAR(50) COMMENT '유형',
detail_purpose VARCHAR(50) COMMENT '상세용도',
purpose VARCHAR(255) COMMENT '용도',
details TEXT COMMENT '상세내용',
current_org VARCHAR(255) COMMENT '현 사용조직', current_org VARCHAR(255) COMMENT '현 사용조직',
prev_org VARCHAR(255) COMMENT '이전 사용조직', prev_org VARCHAR(255) COMMENT '이전 사용조직',
location VARCHAR(255) COMMENT '설치위치',
manager_main VARCHAR(100) COMMENT '담당자(정)', manager_main VARCHAR(100) COMMENT '담당자(정)',
manager_sub VARCHAR(100) COMMENT '담당자(부)', manager_sub VARCHAR(100) COMMENT '담당자(부)',
ip_address VARCHAR(100) COMMENT 'IP 주소 1', ip_address VARCHAR(100) COMMENT 'IP 주소 1',
ip_address2 VARCHAR(100) COMMENT 'IP 주소 2',
mac_address VARCHAR(100) COMMENT 'MAC 주소',
os VARCHAR(100),
cpu VARCHAR(255),
ram VARCHAR(100),
storage1 VARCHAR(255),
storage2 VARCHAR(255),
model_name VARCHAR(255),
purchase_date VARCHAR(50),
price VARCHAR(100),
vendor VARCHAR(255) COMMENT '납품업체',
doc_name VARCHAR(255) COMMENT '품의서명',
remote_tool VARCHAR(100) COMMENT '원격도구', remote_tool VARCHAR(100) COMMENT '원격도구',
server_id VARCHAR(100), server_id VARCHAR(100),
server_pw VARCHAR(100), server_pw VARCHAR(100),
model_name VARCHAR(255),
os VARCHAR(100),
cpu VARCHAR(255),
ram VARCHAR(100),
gpu VARCHAR(100),
storage1 VARCHAR(255),
storage2 VARCHAR(255),
storage3 VARCHAR(255),
monitoring VARCHAR(100), monitoring VARCHAR(100),
price VARCHAR(100) COMMENT '금액',
remarks TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='${comment}';
`;
await connection.query(createHardwareTable('pc_assets', '개인PC 자산'));
await connection.query(createHardwareTable('server_assets', '서버 자산'));
await connection.query(createHardwareTable('storage_assets', '스토리지 자산'));
await connection.query(createHardwareTable('equip_assets', '전산비품 자산'));
await connection.query(createHardwareTable('mobile_assets', '모바일기기 자산'));
// 소프트웨어 구독 테이블
await connection.query(`
CREATE TABLE sw_sub_assets (
id VARCHAR(50) PRIMARY KEY,
corp VARCHAR(100) COMMENT '구매법인',
asset_code VARCHAR(100) COMMENT '자산번호',
product_name VARCHAR(255) COMMENT '제품명',
license_type VARCHAR(100) COMMENT '라이선스 유형',
quantity INT COMMENT '수량',
price VARCHAR(100) COMMENT '금액',
purchase_date VARCHAR(50) COMMENT '구매일',
expiry_date VARCHAR(50) COMMENT '만료일',
vendor VARCHAR(255) COMMENT '납품업체',
remarks TEXT COMMENT '비고', remarks TEXT COMMENT '비고',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
`; `);
// 3. 소프트웨어 자산 테이블 // 소프트웨어 영구 테이블
const createSwTable = ` await connection.query(`
CREATE TABLE IF NOT EXISTS sw_assets ( CREATE TABLE sw_perm_assets (
id VARCHAR(50) PRIMARY KEY, id VARCHAR(50) PRIMARY KEY,
type VARCHAR(50) NOT NULL COMMENT '구독SW, 영구SW',
category VARCHAR(100) COMMENT '분야',
corp VARCHAR(100) COMMENT '구매법인', corp VARCHAR(100) COMMENT '구매법인',
dept VARCHAR(100) COMMENT '부서', asset_code VARCHAR(100) COMMENT '자산번호',
product_name VARCHAR(255) NOT NULL, product_name VARCHAR(255) COMMENT '제품명',
purchase_date VARCHAR(50), license_key VARCHAR(255) COMMENT '라이선스 키',
subscription_date VARCHAR(50), quantity INT COMMENT '수량',
maintenance_status TINYINT(1) DEFAULT 0, price VARCHAR(100) COMMENT '금액',
price VARCHAR(100), purchase_date VARCHAR(50) COMMENT '구매일',
quantity INT DEFAULT 1, vendor VARCHAR(255) COMMENT '납품업체',
account_id VARCHAR(255) COMMENT '계정명', remarks TEXT COMMENT '비고',
vendor VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
`);
// 클라우드 자산 테이블
await connection.query(`
CREATE TABLE cloud_assets (
id VARCHAR(50) PRIMARY KEY,
platform_name VARCHAR(100),
corp VARCHAR(100),
dept VARCHAR(100),
product_name VARCHAR(255),
account_name VARCHAR(255),
pay_method VARCHAR(100),
pay_day VARCHAR(50),
card_num VARCHAR(100),
monthly_fee VARCHAR(100),
remarks TEXT, remarks TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
`; `);
// 4. 소프트웨어 사용자 매핑 테이블 // 소프트웨어 사용자 매핑 테이블
const createSwUsersTable = ` await connection.query(`
CREATE TABLE IF NOT EXISTS sw_users ( CREATE TABLE sw_users (
id VARCHAR(50) PRIMARY KEY, id INT AUTO_INCREMENT PRIMARY KEY,
sw_id VARCHAR(50), sw_id VARCHAR(50) COMMENT 'SW 자산 ID',
corp VARCHAR(100), corp VARCHAR(100) COMMENT '법인',
dept VARCHAR(100), dept VARCHAR(100) COMMENT '부서',
team VARCHAR(100), position VARCHAR(50) COMMENT '직위',
position VARCHAR(50), user_name VARCHAR(100) COMMENT '이름',
name VARCHAR(100), usage_period VARCHAR(100) COMMENT '사용기간',
usage_period VARCHAR(100), doc_name VARCHAR(255) COMMENT '신청서명',
doc_name VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
FOREIGN KEY (sw_id) REFERENCES sw_assets(id) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
`; `);
await connection.query(createHwTable); // 변경 이력 테이블
await connection.query(createSwTable); await connection.query(`
await connection.query(createSwUsersTable); CREATE TABLE asset_logs (
id VARCHAR(50) PRIMARY KEY,
asset_id VARCHAR(50),
log_date VARCHAR(50),
log_user VARCHAR(100),
details TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
`);
console.log('✅ 테이블 생성 완료!'); console.log('✅ 모든 테이블이 표준화된 스키마로 재생성되었습니다.');
await connection.end(); await connection.end();
console.log('🏁 DB 초기화 프로세스 종료.');
} }
initDB().catch(err => { initDB().catch(err => {

View File

@@ -0,0 +1,45 @@
# [Issue] 소프트웨어 자산 관리 체계 개편 및 클라우드(Cloud) 서비스 관리 신설
## 1. 개요
기존의 단일 소프트웨어(SW) 분류 체계를 비즈니스 모델에 맞춰 **구독형, 영구형, 클라우드형**으로 삼원화하고, 특히 비용 변동이 잦은 클라우드 서비스를 독립적으로 관리할 수 있는 전용 시스템을 신설함.
---
## 2. 주요 작업 내용
### 📂 소프트웨어 관리 프레임워크 재구조화
- **분류 체계 개편**: 소프트웨어를 아래 세 가지 유형으로 재정의하여 관리 효율성을 높임.
1. **구독형 (Subscription)**: 연/월 정액제로 운영되는 SW
2. **영구형 (Perpetual)**: 구매 후 영구 소유하는 SW (유지보수 중심 관리)
3. **클라우드형 (Cloud)**: 플랫폼 기반 종량제(AWS, Azure 등) 서비스
- **내비게이션 통합**: 상단 탭을 유형별로 분리하여 각 자산 특성에 맞는 리스트 뷰를 제공함.
### ☁️ 클라우드(Cloud) 서비스 관리 페이지 신설
- **전용 리스트 뷰 (`CloudListView.ts`)**:
- 플랫폼명, 담당 부서, 프로젝트(사용용도), 결제 수단, 결제일 등 클라우드 특화 항목 중심의 테이블 구성함.
- **결제수단별 필터링 기능** (법인카드, 인보이스) 및 통합 검색 기능을 추가함.
- **클라우드 전문 모달 (`CloudModal.ts`)**:
- 클라우드 요금 및 결제 정보 입력을 위한 2분할 레이아웃 배치함.
- **업데이트 이력(History Logs)** 시스템을 도입하여 매월 변동되는 비용을 히스토리 형식으로 기록/추적 가능하게 함.
### 📊 대시보드(Dashboard) 리팩토링 및 고도화
- **카드 레이아웃 최적화**: 사용율, 만료 예정, 클라우드 현황(전월/당월 비교) 정보를 2열 그리드로 정돈함.
- **데이터 시각화**:
- **클라우드 결제 규모 추이**: 최근 4개월간의 비용 변동을 꺾은선 그래프로 구현함.
- **실시간 데이터 연동**: 자산 업데이트 이력(Logs)에 기록된 비용이 대시보드 차트에 실시간 합산 반영되도록 로그 분석 엔진을 구축함.
- **상세 팝업 연동**: 대시보드 요약 카드를 클릭하면 해당하는 자산의 상세 목록이 뜨는 모달 연동 기능을 추가함.
### 🪟 UX 및 데이터 정합성 강화
- **수정 저장 워크플로우 (Edit-to-Save)**: 실수로 인한 데이터 변경을 막기 위해 모든 상세 모달에 '조회 모드'를 기본으로 하고, [수정] 버튼 클릭 시에만 입력이 활성화되도록 제어함.
- **금액 자동 포맷팅**: 콤마 표시 오류를 해결하고 천 단위 포맷팅을 표준화함.
- **결제 임박 알림**: 각 서비스의 결제일을 계산하여 14일 이내 결제가 필요한 항목을 대시보드에서 즉시 파악할 수 있게 함.
---
## 3. 향후 과제
- 클라우드 플랫폼 간 비용 비교 통계 기능 확장 검토
- 결제 수단(법인카드) 만료일에 기초한 알림 서비스 추가 검토
---
**작업자**: Antigravity (AI Assistant)
**상태**: 완료 (2026-04-17)

View File

@@ -10,6 +10,7 @@
<link rel="stylesheet" href="/src/styles/modal.css" /> <link rel="stylesheet" href="/src/styles/modal.css" />
<link rel="stylesheet" href="/src/styles/dashboard.css" /> <link rel="stylesheet" href="/src/styles/dashboard.css" />
<link rel="stylesheet" href="/src/styles/table.css" /> <link rel="stylesheet" href="/src/styles/table.css" />
<link rel="stylesheet" href="/src/styles/guide.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script> <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script>
</head> </head>
@@ -19,7 +20,7 @@
<header class="main-header"> <header class="main-header">
<div class="header-container" id="nav-container"> <div class="header-container" id="nav-container">
<div class="brand"> <div class="brand">
<h1>HM <span>ITAM</span></h1> <h1>HM <span>IT 자산관리 시스템</span></h1>
</div> </div>
<!-- Navigation (GNB + LNB in same row) --> <!-- Navigation (GNB + LNB in same row) -->
@@ -28,6 +29,9 @@
</nav> </nav>
<div class="header-actions"> <div class="header-actions">
<button id="btn-open-guide-header" class="btn btn-outline" title="사용 가이드 열기">
<i data-lucide="book-open"></i> 가이드
</button>
<button id="btn-download-template" class="btn btn-outline" title="통합 양식 다운로드"> <button id="btn-download-template" class="btn btn-outline" title="통합 양식 다운로드">
<i data-lucide="download"></i> 양식 <i data-lucide="download"></i> 양식
</button> </button>

485
server.js
View File

@@ -11,7 +11,6 @@ const PORT = process.env.PORT || 3000;
app.use(cors()); app.use(cors());
app.use(express.json({ limit: '50mb' })); app.use(express.json({ limit: '50mb' }));
// DB 연결 풀 생성
const pool = mysql.createPool({ const pool = mysql.createPool({
host: process.env.DB_HOST, host: process.env.DB_HOST,
user: process.env.DB_USER, user: process.env.DB_USER,
@@ -23,202 +22,366 @@ const pool = mysql.createPool({
queueLimit: 0 queueLimit: 0
}); });
// --- API Routes --- // 테이블 존재 여부 확인 및 자동 생성
async function ensureTables() {
// 1. 하드웨어 자산 조회
app.get('/api/hw', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM hw_assets');
// DB 컬럼명을 프론트엔드 인터페이스(한글)에 맞게 매핑
const mapped = rows.map(r => ({
id: r.id,
type: r.type,
법인: r.corp,
자산코드: r.asset_code,
명칭: r.asset_name,
위치: r.location,
현사용조직: r.current_org,
이전사용조직: r.prev_org,
담당자_정: r.manager_main,
관리자: r.manager_main,
담당자_부: r.manager_sub,
IP주소: r.ip_address,
IP2: r.ip_address2,
MACaddress: r.mac_address,
OS: r.os,
CPU: r.cpu,
RAM: r.ram,
SSD1: r.storage1,
SSD2: r.storage2,
모델명: r.model_name,
구매일: r.purchase_date,
금액: r.price,
납품업체: r.vendor,
품의서명: r.doc_name,
용도: r.asset_name, // 서버의 경우 명칭을 용도로 사용
상세: r.remarks,
원격접속: r.remote_tool,
서버ID: r.server_id,
서버PW: r.server_pw,
모니터링: r.monitoring,
비고: r.remarks
}));
res.json(mapped);
} catch (err) {
res.status(500).json({ error: err.message });
}
});
// 2. 하드웨어 자산 일괄 저장 (항상 덮어쓰기)
app.post('/api/hw/batch', async (req, res) => {
const assets = req.body;
const connection = await pool.getConnection(); const connection = await pool.getConnection();
try { try {
await connection.beginTransaction(); await connection.query(`
CREATE TABLE IF NOT EXISTS cloud_assets (
await connection.query('DELETE FROM hw_assets'); id VARCHAR(50) PRIMARY KEY,
platform_name VARCHAR(100),
if (assets.length > 0) { corp VARCHAR(100),
const sql = ` dept VARCHAR(100),
INSERT INTO hw_assets ( product_name VARCHAR(255),
id, type, corp, asset_code, asset_name, location, current_org, prev_org, account_name VARCHAR(255),
manager_main, manager_sub, ip_address, ip_address2, mac_address, os, pay_method VARCHAR(100),
cpu, ram, storage1, storage2, model_name, purchase_date, price, pay_day VARCHAR(50),
vendor, doc_name, remote_tool, server_id, server_pw, monitoring, remarks card_num VARCHAR(100),
) VALUES ? monthly_fee VARCHAR(100),
`; remarks TEXT,
const values = assets.map(a => [ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
a.id, a.type, a.법인, a.자산코드, a.명칭 || a.용도, a.위치, a.현사용조직, a.이전사용조직, ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
a.담당자_정 || a.관리자, a.담당자_부, a.IP주소, a.IP2, a.MACaddress, a.OS, `);
a.CPU, a.RAM, a.SSD1, a.SSD2, a.모델명, a.구매일, a.금액, await connection.query(`
a.납품업체, a.품의서명, a.원격접속, a.서버ID, a.서버PW, a.모니터링, a.비고 || a.상세 CREATE TABLE IF NOT EXISTS asset_logs (
]); id VARCHAR(50) PRIMARY KEY,
await connection.query(sql, [values]); asset_id VARCHAR(50),
log_date VARCHAR(50),
log_user VARCHAR(100),
details TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`);
await connection.query(`
CREATE TABLE IF NOT EXISTS pc_assets (
id VARCHAR(50) PRIMARY KEY, corp VARCHAR(100), asset_code VARCHAR(100), purchase_date VARCHAR(50),
type VARCHAR(50), detail_purpose VARCHAR(100), purpose VARCHAR(255), details TEXT,
current_org VARCHAR(100), prev_org VARCHAR(100), location VARCHAR(255),
manager_main VARCHAR(100), manager_sub VARCHAR(100), ip_address VARCHAR(50),
remote_tool VARCHAR(100), server_id VARCHAR(100), server_pw VARCHAR(100),
model_name VARCHAR(255), os VARCHAR(100), cpu VARCHAR(100), ram VARCHAR(100), gpu VARCHAR(100),
storage1 VARCHAR(100), storage2 VARCHAR(100), storage3 VARCHAR(100), monitoring VARCHAR(100), price VARCHAR(100), remarks TEXT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`);
// 다른 하드웨어 테이블들도 동일한 스키마로 생성 (서버, 스토리지, 비품, 모바일)
for (const table of ['server_assets', 'storage_assets', 'equip_assets', 'mobile_assets']) {
await connection.query(`CREATE TABLE IF NOT EXISTS ${table} LIKE pc_assets`);
} }
await connection.commit(); await connection.query(`
res.json({ success: true, count: assets.length, mode: 'overwrite' }); CREATE TABLE IF NOT EXISTS sw_sub_assets (
} catch (err) { id VARCHAR(50) PRIMARY KEY, corp VARCHAR(100), asset_code VARCHAR(100), product_name VARCHAR(255),
await connection.rollback(); license_type VARCHAR(100), quantity INT, price VARCHAR(100), purchase_date VARCHAR(50),
res.status(500).json({ error: err.message }); expiry_date VARCHAR(50), vendor VARCHAR(100), remarks TEXT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`);
await connection.query(`
CREATE TABLE IF NOT EXISTS sw_perm_assets (
id VARCHAR(50) PRIMARY KEY, corp VARCHAR(100), asset_code VARCHAR(100), product_name VARCHAR(255),
license_key VARCHAR(255), quantity INT, price VARCHAR(100), purchase_date VARCHAR(50),
vendor VARCHAR(100), remarks TEXT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`);
await connection.query(`
CREATE TABLE IF NOT EXISTS sw_users (
id INT AUTO_INCREMENT PRIMARY KEY, sw_id VARCHAR(50), corp VARCHAR(100), dept VARCHAR(100),
position VARCHAR(100), user_name VARCHAR(100), usage_period VARCHAR(255), doc_name VARCHAR(255)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`);
console.log('✅ All ITAM tables ensured.');
} finally { } finally {
connection.release(); connection.release();
} }
}); }
// 3. 소프트웨어 자산 조회 // 공통 배치 저장 로직
app.get('/api/sw', async (req, res) => { async function batchSave(tableName, assets, getQuery) {
try {
const [rows] = await pool.query('SELECT * FROM sw_assets');
const mapped = rows.map(r => ({
id: r.id,
type: r.type,
분야: r.category,
법인: r.corp,
부서: r.dept,
제품명: r.product_name,
구매일: r.purchase_date,
구독일: r.subscription_date,
유지보수여부: !!r.maintenance_status,
금액: r.price,
수량: r.quantity,
계정명: r.account_id,
납품업체: r.vendor,
비고: r.remarks
}));
res.json(mapped);
} catch (err) {
res.status(500).json({ error: err.message });
}
});
// 4. 소프트웨어 자산 일괄 저장 (항상 덮어쓰기)
app.post('/api/sw/batch', async (req, res) => {
const assets = req.body;
const connection = await pool.getConnection(); const connection = await pool.getConnection();
try { try {
await connection.beginTransaction(); await connection.beginTransaction();
await connection.query(`DELETE FROM ${tableName}`);
await connection.query('DELETE FROM sw_assets');
if (assets.length > 0) { if (assets.length > 0) {
const sql = ` const { sql, values } = getQuery(assets);
INSERT INTO sw_assets (
id, type, category, corp, dept, product_name, purchase_date,
subscription_date, maintenance_status, price, quantity,
account_id, vendor, remarks
) VALUES ?
`;
const values = assets.map(a => [
a.id, a.type, a.분야, a.법인, a.부서, a.제품명, a.구매일,
a.구독일, a.유지보수여부 ? 1 : 0, a.금액, a.수량,
a.계정명, a.납품업체, a.비고
]);
await connection.query(sql, [values]); await connection.query(sql, [values]);
} }
await connection.commit(); await connection.commit();
res.json({ success: true, count: assets.length, mode: 'overwrite' }); return { success: true, count: assets.length };
} catch (err) { } catch (err) {
await connection.rollback(); await connection.rollback();
res.status(500).json({ error: err.message }); throw err;
} finally { } finally {
connection.release(); connection.release();
} }
}
// 하드웨어 쿼리 헬퍼
const hardwareInsertSQL = (table) => `
INSERT INTO ${table} (
id, corp, asset_code, purchase_date, type, detail_purpose, purpose, details,
current_org, prev_org, location, manager_main, manager_sub, ip_address,
remote_tool, server_id, server_pw, model_name, os, cpu, ram, gpu,
storage1, storage2, storage3, monitoring, price, remarks
) VALUES ?
`;
const getHardwareValues = (a) => [
a.id, a.법인||'', a.자산코드||'', a.구매일||'', a.type||'', a.상세용도||'', a.용도||'', a.상세||'',
a.현사용조직||'', a.이전사용조직||'', a.위치||'', a.담당자_정||'', a.담당자_부||'', a.IP주소||'',
a.원격접속||'', a.서버ID||'', a.서버PW||'', a.모델명||'', a.OS||'', a.CPU||'', a.RAM||'', a.GPU||'',
a.SSD1||'', a.SSD2||'', a.HDD1||'', a.모니터링||'', a.금액||'', a.비고||''
];
const mapHardware = (r, defaultType) => ({
id: r.id, 법인: r.corp, 자산코드: r.asset_code, 구매일: r.purchase_date, type: r.type || defaultType,
상세용도: r.detail_purpose, 용도: r.purpose, 상세: r.details, 현사용조직: r.current_org,
이전사용조직: r.prev_org, 위치: r.location, 담당자_정: r.manager_main, 담당자_부: r.manager_sub,
IP주소: r.ip_address, 원격접속: r.remote_tool, 서버ID: r.server_id, 서버PW: r.server_pw,
모델명: r.model_name, OS: r.os, CPU: r.cpu, RAM: r.ram, GPU: r.gpu, SSD1: r.storage1,
SSD2: r.storage2, HDD1: r.storage3, 모니터링: r.monitoring, 금액: r.price, 비고: r.remarks
}); });
// 5. SW 사용자 매핑 조회 // --- API 라우트 정의 ---
// PC API
app.get('/api/pc', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM pc_assets');
res.json(rows.map(r => mapHardware(r, '개인PC')));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/pc/batch', async (req, res) => {
try {
const result = await batchSave('pc_assets', req.body, (assets) => ({
sql: hardwareInsertSQL('pc_assets'),
values: assets.map(getHardwareValues)
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 서버 API
app.get('/api/server', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM server_assets');
res.json(rows.map(r => mapHardware(r, '서버')));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/server/batch', async (req, res) => {
try {
const result = await batchSave('server_assets', req.body, (assets) => ({
sql: hardwareInsertSQL('server_assets'),
values: assets.map(getHardwareValues)
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 스토리지 API
app.get('/api/storage', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM storage_assets');
res.json(rows.map(r => mapHardware(r, '스토리지')));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/storage/batch', async (req, res) => {
try {
const result = await batchSave('storage_assets', req.body, (assets) => ({
sql: hardwareInsertSQL('storage_assets'),
values: assets.map(getHardwareValues)
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 전산비품 API
app.get('/api/equip', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM equip_assets');
res.json(rows.map(r => mapHardware(r, '전산비품')));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/equip/batch', async (req, res) => {
try {
const result = await batchSave('equip_assets', req.body, (assets) => ({
sql: hardwareInsertSQL('equip_assets'),
values: assets.map(getHardwareValues)
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 모바일 API
app.get('/api/mobile', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM mobile_assets');
res.json(rows.map(r => mapHardware(r, '모바일기기')));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/mobile/batch', async (req, res) => {
try {
const result = await batchSave('mobile_assets', req.body, (assets) => ({
sql: hardwareInsertSQL('mobile_assets'),
values: assets.map(getHardwareValues)
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 구독 SW API
app.get('/api/sw/sub', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM sw_sub_assets');
res.json(rows.map(r => ({
id: r.id, type: '구독SW', 법인: r.corp, 자산번호: r.asset_code, 제품명: r.product_name,
라이선스유형: r.license_type, 수량: r.quantity, 금액: r.price, 구매일: r.purchase_date,
만료일: r.expiry_date, 납품업체: r.vendor, 비고: r.remarks
})));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/sw/sub/batch', async (req, res) => {
try {
const result = await batchSave('sw_sub_assets', req.body, (assets) => ({
sql: `INSERT INTO sw_sub_assets (id, corp, asset_code, product_name, license_type, quantity, price, purchase_date, expiry_date, vendor, remarks) VALUES ?`,
values: assets.map(a => [a.id, a.법인||'', a.자산번호||'', a.제품명||'', a.라이선스유형||'', a.수량||0, a.금액||'', a.구매일||'', a.만료일||'', a.납품업체||'', a.비고||''])
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 영구 SW API
app.get('/api/sw/perm', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM sw_perm_assets');
res.json(rows.map(r => ({
id: r.id, type: '영구SW', 법인: r.corp, 자산번호: r.asset_code, 제품명: r.product_name,
라이선스키: r.license_key, 수량: r.quantity, 금액: r.price, 구매일: r.purchase_date,
납품업체: r.vendor, 비고: r.remarks
})));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/sw/perm/batch', async (req, res) => {
try {
const result = await batchSave('sw_perm_assets', req.body, (assets) => ({
sql: `INSERT INTO sw_perm_assets (id, corp, asset_code, product_name, license_key, quantity, price, purchase_date, vendor, remarks) VALUES ?`,
values: assets.map(a => [a.id, a.법인||'', a.자산번호||'', a.제품명||'', a.라이선스키||'', a.수량||0, a.금액||'', a.구매일||'', a.납품업체||'', a.비고||''])
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 클라우드 API
app.get('/api/cloud', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM cloud_assets');
res.json(rows.map(r => ({
id: r.id, type: '클라우드', 플랫폼명: r.platform_name, 법인: r.corp, 부서: r.dept,
제품명: r.product_name, 계정명: r.account_name, 결제수단: r.pay_method,
결제일: r.pay_day, 연결카드번호: r.card_num, 당월청구액: r.monthly_fee, 비고: r.remarks
})));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/cloud/batch', async (req, res) => {
try {
const result = await batchSave('cloud_assets', req.body, (assets) => ({
sql: `INSERT INTO cloud_assets (id, platform_name, corp, dept, product_name, account_name, pay_method, pay_day, card_num, monthly_fee, remarks) VALUES ?`,
values: assets.map(a => [a.id, a.플랫폼명||'', a.법인||'', a.부서||'', a.제품명||'', a.계정명||'', a.결제수단||'', a.결제일||'', a.연결카드번호||'', a.당월청구액||'', a.비고||''])
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 로그 API
app.get('/api/logs', async (req, res) => {
try {
const [rows] = await pool.query('SELECT * FROM asset_logs ORDER BY log_date DESC');
res.json(rows.map(r => ({
id: r.id, assetId: r.asset_id, date: r.log_date, user: r.log_user, details: r.details
})));
} catch (err) { res.status(500).json({ error: err.message }); }
});
app.post('/api/logs/batch', async (req, res) => {
try {
const result = await batchSave('asset_logs', req.body, (assets) => ({
sql: `INSERT INTO asset_logs (id, asset_id, log_date, log_user, details) VALUES ?`,
values: assets.map(a => [a.id, a.assetId||'', a.date||'', a.user||'', a.details||''])
}));
res.json(result);
} catch (err) { res.status(500).json({ error: err.message }); }
});
// SW 사용자 API
app.get('/api/sw-users', async (req, res) => { app.get('/api/sw-users', async (req, res) => {
try { try {
const [rows] = await pool.query('SELECT * FROM sw_users'); const [rows] = await pool.query('SELECT * FROM sw_users');
const mapped = rows.map(r => ({ const grouped = rows.reduce((acc, u) => {
id: r.id, if (!acc[u.sw_id]) acc[u.sw_id] = [];
swId: r.sw_id, acc[u.sw_id].push([u.corp, u.dept, u.position, u.user_name, u.usage_period, u.doc_name]);
법인: r.corp, return acc;
부서: r.dept, }, {});
: r.team, res.json(Object.keys(grouped).map(sw_id => ({ sw_id, userData: grouped[sw_id] })));
직위: r.position, } catch (err) { res.status(500).json({ error: err.message }); }
이름: r.name,
사용기간: r.usage_period,
신청서명: r.doc_name
}));
res.json(mapped);
} catch (err) {
res.status(500).json({ error: err.message });
}
}); });
// 6. SW 사용자 일괄 저장 (항상 덮어쓰기)
app.post('/api/sw-users/batch', async (req, res) => { app.post('/api/sw-users/batch', async (req, res) => {
const users = req.body;
const connection = await pool.getConnection();
try { try {
const connection = await pool.getConnection();
await connection.beginTransaction(); await connection.beginTransaction();
await connection.query('DELETE FROM sw_users'); await connection.query('DELETE FROM sw_users');
const allUsers = req.body;
if (allUsers.length > 0) {
const values = allUsers.flatMap(item =>
(item.userData || []).map(u => [item.sw_id, u[0], u[1], u[2], u[3], u[4], u[5]])
);
if (values.length > 0) {
await connection.query('INSERT INTO sw_users (sw_id, corp, dept, position, user_name, usage_period, doc_name) VALUES ?', [values]);
}
}
await connection.commit();
connection.release();
res.json({ success: true });
} catch (err) { res.status(500).json({ error: err.message }); }
});
// 자산코드 생성 API
app.get('/api/generate-asset-code', async (req, res) => {
const { prefix } = req.query;
if (!prefix) return res.status(400).json({ error: 'Prefix is required' });
try {
const tables = ['pc_assets', 'server_assets', 'storage_assets', 'equip_assets', 'mobile_assets', 'sw_sub_assets', 'sw_perm_assets'];
let maxNum = 0;
if (users.length > 0) { for (const table of tables) {
const sql = ` const [rows] = await pool.query(`SELECT asset_code FROM ${table} WHERE asset_code LIKE ?`, [`${prefix}%`]);
INSERT INTO sw_users ( rows.forEach(r => {
id, sw_id, corp, dept, team, position, name, usage_period, doc_name const numPart = r.asset_code.replace(prefix, '');
) VALUES ? const num = parseInt(numPart);
`; if (!isNaN(num) && num > maxNum) maxNum = num;
const values = users.map(u => [ });
u.id, u.swId, u.법인, u.부서, u., u.직위, u.이름, u.사용기간, u.신청서명
]);
await connection.query(sql, [values]);
} }
await connection.commit(); const nextCode = `${prefix}${(maxNum + 1).toString().padStart(3, '0')}`;
res.json({ success: true, count: users.length, mode: 'overwrite' }); res.json({ nextCode });
} catch (err) { } catch (err) {
await connection.rollback();
res.status(500).json({ error: err.message }); res.status(500).json({ error: err.message });
} finally {
connection.release();
} }
}); });
app.listen(PORT, () => { // 초기화 및 서버 기동
console.log(`📡 ITAM API Server running on http://localhost:${PORT}`); ensureTables().then(() => {
app.listen(PORT, () => {
console.log(`📡 ITAM Dedicated API Server running on http://localhost:${PORT}`);
});
}).catch(err => {
console.error('❌ Failed to start server:', err);
}); });

624
src/components/Guide.ts Normal file
View File

@@ -0,0 +1,624 @@
import { createIcons, BookOpen, X, ChevronDown, ChevronRight, RefreshCw } from 'lucide';
// ─── 자산별 가이드 콘텐츠 정의 ───
interface GuideTabConfig {
id: string;
label: string;
content: string;
}
const GUIDE_TABS: GuideTabConfig[] = [
{
id: 'overview',
label: '📋 개요',
content: `
<section class="guide-section">
<h3>IT 자산관리 시스템 개요</h3>
<p class="guide-text">
HM IT 자산관리 시스템(ITAM)은 기업의 IT 자산을 <strong>도입부터 폐기까지</strong> 전 과정에서 효율적으로 관리하기 위한 통합 플랫폼입니다.<br>
하드웨어(PC, 서버, 스토리지, 전산비품, 모바일기기)와 소프트웨어(구독SW, 영구SW, 클라우드)를 체계적으로 추적하고 유지보수합니다.
</p>
</section>
<section class="guide-section">
<h3>전체 자산관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">도입/구매</span><p class="step-desc">자산 구매 요청 → 승인 → 발주</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">등록/배정</span><p class="step-desc">자산번호 부여 → 시스템 등록 → 사용자 할당</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">운영/유지</span><p class="step-desc">현황 모니터링 → 점검/수리 → 이력 관리</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">4</span>
<div><span class="step-label">반납/폐기</span><p class="step-desc">자산 회수 → 데이터 소거 → 폐기 처리</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>시스템 기본 사용법</h3>
<table class="guide-info-table">
<thead><tr><th>기능</th><th>방법</th></tr></thead>
<tbody>
<tr><td><strong>자산 조회</strong></td><td>상단 네비게이션에서 카테고리(하드웨어/소프트웨어) 선택 → 하위 탭에서 자산유형 선택</td></tr>
<tr><td><strong>자산 등록</strong></td><td>[자산추가] 버튼 클릭 → 양식 입력 → 저장</td></tr>
<tr><td><strong>자산 수정</strong></td><td>테이블에서 행 클릭 → 모달에서 [수정] → 내용 변경 → 저장</td></tr>
<tr><td><strong>엑셀 업로드</strong></td><td>[업로드] 버튼 → 양식에 맞는 .xlsx 파일 선택 → 자동 일괄 등록</td></tr>
<tr><td><strong>엑셀 다운로드</strong></td><td>[엑셀저장] 버튼 → 전체 자산 데이터 Excel 파일로 저장</td></tr>
<tr><td><strong>양식 다운로드</strong></td><td>[양식] 버튼 → 엑셀 업로드용 빈 양식 다운로드</td></tr>
</tbody>
</table>
</section>
`
},
{
id: 'pc',
label: '💻 개인PC',
content: `
<section class="guide-section">
<h3>개인PC 관리 가이드</h3>
<p class="guide-text">
개인PC는 임직원에게 지급되는 데스크톱 및 노트북을 관리합니다. 자산의 지급, 교체, 반납까지의 전체 생애주기를 시스템에서 추적합니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">구매 및 입고</span><p class="step-desc">구매 요청 → 발주 → 입고 검수</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">자산 등록</span><p class="step-desc">자산코드 부여, 사양(CPU/RAM/Storage) 등록</p></div>
</div>
</div>
<i data-lucide="chevron-down" class="flow-arrow"></i>
<div class="flow-row">
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">사용자 지급</span><p class="step-desc">사용자·사용조직 지정, 설치위치 기록</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">4</span>
<div><span class="step-label">운영 관리</span><p class="step-desc">OS 업데이트, 보안 점검, 품의서 관리</p></div>
</div>
</div>
<i data-lucide="chevron-down" class="flow-arrow"></i>
<div class="flow-row">
<div class="flow-step">
<span class="step-number">5</span>
<div><span class="step-label">교체/반납</span><p class="step-desc">노후 장비 회수, 데이터 소거, 신규 장비 지급</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">6</span>
<div><span class="step-label">폐기 처리</span><p class="step-desc">폐기 대장 등록, 물리적 파기 또는 매각</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th><th>관리 주기</th></tr></thead>
<tbody>
<tr><td>구매법인</td><td>자산을 구매한 법인</td><td>등록 시 1회</td></tr>
<tr><td>현 사용조직</td><td>현재 자산을 사용하는 조직/부서</td><td>인사 변동 시</td></tr>
<tr><td>자산코드</td><td>사내 고유 자산 식별 번호</td><td>등록 시 1회</td></tr>
<tr><td>사용자</td><td>자산을 실제 사용하는 직원명</td><td>인사 변동 시</td></tr>
<tr><td>위치</td><td>자산이 실제 설치된 건물/층/좌석</td><td>이동 시 즉시</td></tr>
<tr><td>CPU / RAM / Storage</td><td>하드웨어 사양 정보</td><td>등록/증설 시</td></tr>
<tr><td>구매일</td><td>장비 구매 일자</td><td>등록 시 1회</td></tr>
<tr><td>금액</td><td>구매 비용</td><td>등록 시 1회</td></tr>
<tr><td>품의서</td><td>구매 증빙 첨부 파일</td><td>등록 시 1회</td></tr>
</tbody>
</table>
</section>
<div class="guide-tip">
<strong>💡 팁:</strong> PC 교체 시 기존 장비의 상태를 '반납'으로 변경하고, 신규 장비를 새로 등록하여 이력을 분리 관리하세요.
</div>
`
},
{
id: 'server',
label: '🖥️ 서버',
content: `
<section class="guide-section">
<h3>서버 관리 가이드</h3>
<p class="guide-text">
물리 서버와 가상 서버를 포함한 서버급 자산을 관리합니다. 안정적인 서비스 운영을 위해 체계적인 관리가 필요합니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">도입 계획</span><p class="step-desc">용도 정의, 사양 산정, 구매 승인</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">설치 및 등록</span><p class="step-desc">랙 배치, 네트워크 설정, 자산 등록</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">운영 관리</span><p class="step-desc">모니터링, 패치 적용, 장애 대응</p></div>
</div>
</div>
<i data-lucide="chevron-down" class="flow-arrow"></i>
<div class="flow-row">
<div class="flow-step">
<span class="step-number">4</span>
<div><span class="step-label">정기 점검</span><p class="step-desc">보안 취약점 점검, 성능 확인, 백업 검증</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">5</span>
<div><span class="step-label">폐기/교체</span><p class="step-desc">데이터 마이그레이션 후 장비 교체 또는 폐기</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th><th>관리 주기</th></tr></thead>
<tbody>
<tr><td>구매법인 / 현 사용조직</td><td>법인 및 조직 정보</td><td>등록 / 변동 시</td></tr>
<tr><td>자산번호</td><td>서버 식별 번호</td><td>등록 시 1회</td></tr>
<tr><td>용도 / 상세</td><td>서버의 역할과 상세 설명</td><td>변경 시</td></tr>
<tr><td>설치위치</td><td>데이터센터, 랙 번호, 유닛 위치</td><td>이전 시</td></tr>
<tr><td>담당자 (정/부)</td><td>관리 담당자 정보</td><td>변동 시</td></tr>
<tr><td>IP주소</td><td>서버 네트워크 주소 (최대 2개)</td><td>변경 시</td></tr>
<tr><td>모델명</td><td>서버 하드웨어 모델</td><td>등록 시</td></tr>
<tr><td>OS</td><td>운영체제 종류 및 버전</td><td>업데이트 시</td></tr>
<tr><td>CPU / RAM / Storage</td><td>서버 사양 정보</td><td>증설 시</td></tr>
</tbody>
</table>
</section>
<div class="guide-warn">
<strong>⚠️ 주의:</strong> 서버 폐기 전에는 반드시 데이터 마이그레이션과 백업 검증을 완료하고, 관련 서비스의 DNS/IP 변경 여부를 확인하세요.
</div>
`
},
{
id: 'storage',
label: '💾 스토리지',
content: `
<section class="guide-section">
<h3>스토리지 관리 가이드</h3>
<p class="guide-text">
NAS, SAN, DAS 등 스토리지 장비에 대한 자산 관리입니다. 저장 용량의 효율적 운용과 데이터 안전성 확보가 핵심입니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">용량 산정</span><p class="step-desc">현재 사용량 분석 및 증설 필요 여부 판단</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">도입/설치</span><p class="step-desc">스토리지 구매 → 설치 → 네트워크 연결</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">운영 관리</span><p class="step-desc">용량 모니터링, RAID 상태 점검, 백업 스케줄</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th></tr></thead>
<tbody>
<tr><td>구매법인 / 현 사용조직</td><td>법인 및 조직 정보</td></tr>
<tr><td>자산번호</td><td>스토리지 식별 번호</td></tr>
<tr><td>용도 / 상세</td><td>스토리지 사용 목적과 세부 설명</td></tr>
<tr><td>설치위치</td><td>데이터센터 내 물리적 위치</td></tr>
<tr><td>담당자 (정/부)</td><td>관리 담당자 정보</td></tr>
<tr><td>모델명</td><td>스토리지 하드웨어 모델</td></tr>
<tr><td>Storage</td><td>총 용량 및 디스크 구성 정보</td></tr>
</tbody>
</table>
</section>
<div class="guide-tip">
<strong>💡 팁:</strong> 스토리지 용량이 80%를 초과하면 증설을 검토하세요. 비고란에 용량 변경 이력을 기록하면 추적에 유용합니다.
</div>
`
},
{
id: 'equip',
label: '🔌 전산비품',
content: `
<section class="guide-section">
<h3>전산비품 관리 가이드</h3>
<p class="guide-text">
모니터, 프린터, 네트워크 장비(스위치, AP), UPS, CPU, GPU, RAM, HDD 등 IT 관련 부속장비를 관리합니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">구매/입고</span><p class="step-desc">소모품 및 장비 구매 → 입고 확인</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">등록/배치</span><p class="step-desc">자산코드 부여 → 유형 지정 → 관리자 배정</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">유지보수</span><p class="step-desc">고장 수리, 소모품 교체, 상태 점검</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">4</span>
<div><span class="step-label">폐기</span><p class="step-desc">노후화 시 폐기 처리 및 대장 기록</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th></tr></thead>
<tbody>
<tr><td>구매법인 / 현 사용조직</td><td>법인 및 조직 정보</td></tr>
<tr><td>유형</td><td>비품 분류 (CPU, GPU, RAM, HDD, 태블릿 등)</td></tr>
<tr><td>자산번호</td><td>비품 고유 식별 번호</td></tr>
<tr><td>모델명</td><td>비품 하드웨어 모델</td></tr>
<tr><td>관리자</td><td>비품 관리 담당자</td></tr>
<tr><td>구매일</td><td>비품 구매 일자</td></tr>
<tr><td>금액</td><td>구매 비용</td></tr>
</tbody>
</table>
</section>
`
},
{
id: 'mobile',
label: '📱 모바일기기',
content: `
<section class="guide-section">
<h3>모바일기기 관리 가이드</h3>
<p class="guide-text">
업무용 스마트폰, 태블릿 등 모바일 기기의 지급 및 회수를 관리합니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">기기 구매</span><p class="step-desc">통신사 계약, 기기 선정, 구매</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">등록/지급</span><p class="step-desc">자산번호 부여, 관리자 지정, 사용자 지급</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">운영</span><p class="step-desc">OS 업데이트, 앱 관리</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">4</span>
<div><span class="step-label">회수/교체</span><p class="step-desc">퇴직/교체 시 기기 회수, 초기화</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th></tr></thead>
<tbody>
<tr><td>구매법인 / 현 사용조직</td><td>법인 및 조직 정보</td></tr>
<tr><td>유형</td><td>기기 분류 (모바일, 태블릿 등)</td></tr>
<tr><td>자산번호</td><td>기기 고유 식별 번호</td></tr>
<tr><td>모델명</td><td>기기 모델 (예: Galaxy S24, iPad Pro)</td></tr>
<tr><td>관리자</td><td>기기를 관리하는 담당자</td></tr>
<tr><td>구매일</td><td>기기 구매 일자</td></tr>
<tr><td>금액</td><td>구매 비용</td></tr>
</tbody>
</table>
</section>
<div class="guide-warn">
<strong>⚠️ 주의:</strong> 모바일기기 회수 시 반드시 공장초기화를 수행하세요.
</div>
`
},
{
id: 'sub-sw',
label: '🔄 구독SW',
content: `
<section class="guide-section">
<h3>구독형 소프트웨어 관리 가이드</h3>
<p class="guide-text">
월간/연간 구독 방식의 소프트웨어(SaaS)를 관리합니다. <strong>만료일 관리</strong>와 <strong>라이선스 최적화</strong>가 핵심입니다.
</p>
</section>
<section class="guide-section">
<h3>갱신 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<div class="step-number" style="background-color: #ff9800;">!</div>
<div><span class="step-label">만료 알림 확인</span><p class="step-desc">대시보드에서 만료 예정 자산 목록 확인</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">A</span>
<div><span class="step-label">수요조사</span><p class="step-desc">실제 사용자 파악, 불필요 라이선스 정리</p></div>
</div>
</div>
<i data-lucide="chevron-down" class="flow-arrow"></i>
<div class="flow-row">
<div class="flow-step">
<span class="step-number">B</span>
<div><span class="step-label">계약 연장</span><p class="step-desc">공급사에 갱신 요청, 수량/금액 확정, 결제</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<div class="step-number" style="background-color: var(--guide-accent);">✓</div>
<div><span class="step-label">시스템 업데이트</span><p class="step-desc">시작일/만료일 갱신, 갱신 이력 자동 기록</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th><th>관리 주기</th></tr></thead>
<tbody>
<tr><td>상태</td><td>사용중 / 만료 (만료일 기준 자동 판별)</td><td>자동</td></tr>
<tr><td>분야</td><td>업무공통, 개발S/W, 디자인, 설계S/W 등</td><td>등록 시</td></tr>
<tr><td>법인 / 부서</td><td>구매 법인 및 사용 부서</td><td>등록 시</td></tr>
<tr><td>제품명</td><td>소프트웨어 제품명</td><td>등록 시</td></tr>
<tr><td>구매일</td><td>최초 구매 일자</td><td>등록 시</td></tr>
<tr><td>시작일 / 만료일</td><td>구독 계약 기간</td><td>갱신 시 업데이트</td></tr>
<tr><td>금액</td><td>연간/월간 구독 비용</td><td>갱신 시</td></tr>
<tr><td>수량 / 사용가능</td><td>구매 수량 대비 배정 후 잔여 수량</td><td>배정 시</td></tr>
</tbody>
</table>
</section>
<div class="guide-tip">
<strong>💡 팁:</strong> 대시보드의 만료 예정 위젯을 정기적으로 확인하세요. 기간 변경 시 갱신 이력이 자동으로 기록됩니다.
</div>
`
},
{
id: 'perm-sw',
label: '🔑 영구SW',
content: `
<section class="guide-section">
<h3>영구 라이선스 소프트웨어 관리 가이드</h3>
<p class="guide-text">
1회 구매로 영구적으로 사용 가능한 소프트웨어입니다. 라이선스 키 관리 및 설치 현황 추적이 중요합니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">구매/도입</span><p class="step-desc">라이선스 구매 → 키 수령 → 시스템 등록</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">배포/설치</span><p class="step-desc">대상 PC에 설치 → 사용자 관리에서 매핑</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">현황 관리</span><p class="step-desc">잔여 수량 확인, 사용가능 수량 추적</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th></tr></thead>
<tbody>
<tr><td>상태</td><td>유지보수 유효 / 없음</td></tr>
<tr><td>분야</td><td>업무공통, 개발S/W, 디자인, 설계S/W 등</td></tr>
<tr><td>법인 / 부서</td><td>구매 법인 및 사용 부서</td></tr>
<tr><td>제품명</td><td>소프트웨어 제품명</td></tr>
<tr><td>구매일</td><td>최초 구매 일자</td></tr>
<tr><td>시작일 / 만료일</td><td>유지보수 계약 기간 (해당 시)</td></tr>
<tr><td>금액</td><td>라이선스 구매 비용</td></tr>
<tr><td>수량 / 사용가능</td><td>보유 라이선스 대비 잔여 수량</td></tr>
</tbody>
</table>
</section>
<div class="guide-warn">
<strong>⚠️ 주의:</strong> 영구 라이선스도 보유 수량을 초과하여 설치하면 저작권 위반이 됩니다. [사용자 관리] 버튼을 통해 실제 배정 현황을 파악하세요.
</div>
`
},
{
id: 'cloud',
label: '☁️ 클라우드',
content: `
<section class="guide-section">
<h3>클라우드 서비스 관리 가이드</h3>
<p class="guide-text">
AWS, Azure, GCP 등 클라우드 인프라 서비스와 Notion, Slack 등 SaaS 서비스를 관리합니다. 비용 최적화와 계정 관리가 핵심입니다.
</p>
</section>
<section class="guide-section">
<h3>관리 프로세스</h3>
<div class="flow-container">
<div class="flow-row">
<div class="flow-step">
<span class="step-number">1</span>
<div><span class="step-label">서비스 도입</span><p class="step-desc">서비스 선정, 비용 산정, 계정 생성</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">2</span>
<div><span class="step-label">등록/설정</span><p class="step-desc">시스템 등록, 결제수단 설정, 관리자 배정</p></div>
</div>
<span class="flow-arrow-right"><i data-lucide="chevron-right"></i></span>
<div class="flow-step">
<span class="step-number">3</span>
<div><span class="step-label">운영/비용관리</span><p class="step-desc">월별 청구액 추적, 계정 관리, 갱신</p></div>
</div>
</div>
</div>
</section>
<section class="guide-section">
<h3>주요 관리 항목 (테이블 컬럼)</h3>
<table class="guide-info-table">
<thead><tr><th>항목</th><th>설명</th></tr></thead>
<tbody>
<tr><td>플랫폼명</td><td>클라우드 플랫폼 이름 (예: AWS, Azure)</td></tr>
<tr><td>법인 / 담당부서</td><td>서비스 소속 법인 및 관리 부서</td></tr>
<tr><td>진행 프로젝트 (사용용도)</td><td>서비스 사용 목적</td></tr>
<tr><td>계정명 (관리자)</td><td>관리자 계정 또는 루트 계정 정보</td></tr>
<tr><td>결제수단</td><td>법인카드 또는 인보이스(월별송금)</td></tr>
<tr><td>결제일</td><td>월 결제일</td></tr>
<tr><td>당월 청구액</td><td>이번 달 결제 금액</td></tr>
<tr><td>비고</td><td>추가 메모 및 변경 이력</td></tr>
</tbody>
</table>
</section>
<div class="guide-tip">
<strong>💡 팁:</strong> 클라우드 비용은 매월 변동될 수 있으므로, 비고란을 활용하여 비용 변경 이력을 메모해 두면 예산 관리에 도움이 됩니다.
</div>
`
}
];
// ─── 가이드 모달 초기화 ───
export function initGuide() {
const body = document.body;
// 오버레이
const overlay = document.createElement('div');
overlay.className = 'guide-overlay';
overlay.id = 'guide-overlay';
// 모달
const modal = document.createElement('div');
modal.className = 'guide-modal';
modal.id = 'guide-modal';
// 탭 바 생성
const tabsHtml = GUIDE_TABS.map((tab, i) =>
`<div class="guide-tab ${i === 0 ? 'active' : ''}" data-guide-tab="${tab.id}">${tab.label}</div>`
).join('');
// 탭 패널 생성
const panelsHtml = GUIDE_TABS.map((tab, i) =>
`<div class="guide-tab-panel ${i === 0 ? 'active' : ''}" data-guide-panel="${tab.id}">${tab.content}</div>`
).join('');
modal.innerHTML = `
<div class="guide-header">
<h2><i data-lucide="book-open"></i> IT 자산관리 프로세스 가이드</h2>
<button class="btn-close-guide" id="btn-close-guide">
<i data-lucide="x"></i>
</button>
</div>
<div class="guide-tabs">${tabsHtml}</div>
<div class="guide-body">${panelsHtml}</div>
`;
overlay.appendChild(modal);
body.appendChild(overlay);
// ─── 이벤트 바인딩 ───
const openGuide = () => overlay.classList.add('active');
const closeGuide = () => overlay.classList.remove('active');
// 헤더 버튼
document.getElementById('btn-open-guide-header')?.addEventListener('click', openGuide);
// 오버레이 배경 클릭
overlay.addEventListener('click', (e) => {
if (e.target === overlay) closeGuide();
});
// 닫기 버튼
document.getElementById('btn-close-guide')?.addEventListener('click', closeGuide);
// 탭 전환
const tabs = modal.querySelectorAll('.guide-tab');
const panels = modal.querySelectorAll('.guide-tab-panel');
tabs.forEach(tab => {
tab.addEventListener('click', () => {
const targetId = tab.getAttribute('data-guide-tab');
tabs.forEach(t => t.classList.remove('active'));
panels.forEach(p => p.classList.remove('active'));
tab.classList.add('active');
modal.querySelector(`.guide-tab-panel[data-guide-panel="${targetId}"]`)?.classList.add('active');
});
});
// 아이콘 렌더링
createIcons({
icons: { BookOpen, X, ChevronDown, ChevronRight, RefreshCw }
});
}

View File

@@ -1,26 +1,26 @@
/** /**
* 모든 모달의 공통 기능 (닫기, ESC 처리, 배경 클릭 등)을 관리하는 베이스 모듈입니다. * 모든 모달의 공통 기능 (닫기, ESC 처리, 배경 클릭 등)을 관리하는 베이스 모듈입니다.
*/ */
export function initBaseModal() { export function closeModals() {
const closeAllModals = () => { const modals = document.querySelectorAll('.modal-overlay');
const modals = document.querySelectorAll('.modal-overlay'); modals.forEach(modal => modal.classList.add('hidden'));
modals.forEach(modal => modal.classList.add('hidden')); }
};
export function initBaseModal() {
// ESC 키로 닫기 // ESC 키로 닫기
window.addEventListener('keydown', (e) => { window.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeAllModals(); if (e.key === 'Escape') closeModals();
}); });
// 배경(Overlay) 클릭 시 닫기 (동적 생성된 모달 대응을 위해 이벤트 위임 고려 가능하나 일단 단순 구현) // 배경(Overlay) 클릭 시 닫기
document.addEventListener('click', (e) => { document.addEventListener('click', (e) => {
const target = e.target as HTMLElement; const target = e.target as HTMLElement;
if (target.classList.contains('modal-overlay')) { if (target.classList.contains('modal-overlay')) {
closeAllModals(); closeModals();
} }
}); });
return { closeAllModals }; return { closeAllModals: closeModals };
} }
/** /**

View File

@@ -0,0 +1,317 @@
import { state } from '../../core/state';
import { SoftwareAsset } from '../../core/excelHandler';
import { openModal } from './BaseModal';
import { createIcons, Save, X, Edit2, RotateCcw, History, Plus } from 'lucide';
const CLOUD_MODAL_HTML = `
<div id="cloud-asset-modal" class="modal-overlay hidden">
<div class="modal-content wide">
<div class="modal-header">
<h2 id="cloud-modal-title">클라우드 서비스 상세</h2>
<button id="btn-close-cloud-modal" class="btn-icon" aria-label="닫기"><i data-lucide="x"></i></button>
</div>
<div class="modal-body">
<div class="modal-body-split">
<div class="modal-form-area">
<form id="cloud-asset-form" class="grid-form">
<input type="hidden" id="cloud-asset-id" />
<div class="form-group"><label>플랫폼명</label><input type="text" id="cloud-플랫폼명" placeholder="예: AWS, Cafe24" required /></div>
<div class="form-group">
<label>담당법인</label>
<select id="cloud-법인" required>
<option value="한맥">한맥</option><option value="삼안">삼안</option><option value="바론">바론</option>
</select>
</div>
<div class="form-group" style="grid-column: span 2;"><label>사용용도(프로젝트/제품명)</label><input type="text" id="cloud-제품명" required /></div>
<div class="form-group"><label>담당부서</label><input type="text" id="cloud-부서" /></div>
<div class="form-group"><label>계정명(이메일)</label><input type="text" id="cloud-계정명" /></div>
<div class="form-group"><label>결제수단</label>
<select id="cloud-결제수단">
<option value="">선택안함</option>
<option value="법인카드">법인카드</option>
<option value="인보이스">인보이스</option>
</select>
</div>
<div class="form-group"><label>연결카드번호(뒷4자리)</label><input type="text" id="cloud-연결카드번호" placeholder="1234" /></div>
<div class="form-group"><label>결제일(기준일)</label><input type="number" min="1" max="31" id="cloud-결제일" placeholder="15" /></div>
<div class="form-group"><label>당월 청구액(원)</label><input type="text" id="cloud-당월청구액" placeholder="0" oninput="this.value = this.value.replace(/[^0-9]/g, '') ? Number(this.value.replace(/[^0-9]/g, '')).toLocaleString() : ''" /></div>
<div class="form-group" style="grid-column: span 2;"><label>비고</label><input type="text" id="cloud-비고" /></div>
</form>
</div>
<div class="modal-history-area">
<div class="history-header" style="display:flex; justify-content:space-between; align-items:center;">
<h3><i data-lucide="history" style="width:16px; height:16px;"></i> 업데이트 내역</h3>
<button type="button" id="btn-open-cloud-update" class="btn btn-outline btn-sm"><i data-lucide="plus" style="width:14px;height:14px;"></i> 내역 추가</button>
</div>
<div id="cloud-history-list" class="history-timeline">
<div class="empty-history">내역이 없습니다.</div>
</div>
</div>
</div>
</div>
<div class="modal-footer" style="justify-content: space-between;">
<button id="btn-delete-cloud-asset" class="btn btn-outline btn-danger">삭제</button>
<div class="footer-actions">
<button id="btn-revert-cloud-edit" class="btn btn-outline hidden">취소</button>
<button id="btn-close-cloud-footer" class="btn btn-outline">닫기</button>
<button id="btn-save-cloud-asset" class="btn btn-primary">수정</button>
</div>
</div>
</div>
</div>
<div id="cloud-update-modal" class="modal-overlay hidden" style="z-index: 1100;">
<div class="modal-content" style="max-width: 400px;">
<div class="modal-header">
<h2>클라우드 결제/이력 업데이트</h2>
<button id="btn-close-cloud-update" class="btn-icon"><i data-lucide="x"></i></button>
</div>
<div class="modal-body">
<div class="grid-form" style="grid-template-columns: 1fr;">
<div class="form-group">
<label>업데이트 일자</label>
<input type="date" id="cloud-update-date" />
</div>
<div class="form-group">
<label>청구 금액(원)</label>
<input type="text" id="cloud-update-cost" oninput="this.value = this.value.replace(/[^0-9]/g, '') ? Number(this.value.replace(/[^0-9]/g, '')).toLocaleString() : ''" placeholder="ex) 150,000" />
</div>
<div class="form-group">
<label>상세 내용 (메모)</label>
<input type="text" id="cloud-update-note" placeholder="예: 트래픽 초과로 인한 요금 증가" />
</div>
</div>
</div>
<div class="modal-footer">
<div></div>
<div class="footer-actions">
<button id="btn-cancel-cloud-update" class="btn btn-outline">취소</button>
<button id="btn-save-cloud-update" class="btn btn-primary">반영하기</button>
</div>
</div>
</div>
</div>
`;
export let currentCloudAsset: SoftwareAsset | null = null;
export let isCloudEditMode = false;
export function setCloudEditMode(edit: boolean) {
isCloudEditMode = edit;
const form = document.getElementById('cloud-asset-form') as HTMLFormElement;
const btnSave = document.getElementById('btn-save-cloud-asset') as HTMLButtonElement;
const btnRevert = document.getElementById('btn-revert-cloud-edit') as HTMLButtonElement;
const btnClose = document.getElementById('btn-close-cloud-footer') as HTMLButtonElement;
if (edit) {
form.classList.add('is-edit-mode');
form.classList.remove('is-view-mode');
btnSave.textContent = '저장';
btnRevert.classList.remove('hidden');
btnClose.classList.add('hidden');
Array.from(form.elements).forEach((el: any) => el.disabled = false);
} else {
form.classList.add('is-view-mode');
form.classList.remove('is-edit-mode');
btnSave.textContent = '수정';
btnRevert.classList.add('hidden');
btnClose.classList.remove('hidden');
Array.from(form.elements).forEach((el: any) => el.disabled = true);
if (currentCloudAsset) fillCloudFormData(currentCloudAsset);
}
}
export function fillCloudFormData(asset: SoftwareAsset) {
(document.getElementById('cloud-asset-id') as HTMLInputElement).value = asset.id;
(document.getElementById('cloud-플랫폼명') as HTMLInputElement).value = asset. || '';
(document.getElementById('cloud-법인') as HTMLSelectElement).value = asset. || '한맥';
(document.getElementById('cloud-제품명') as HTMLInputElement).value = asset. || '';
(document.getElementById('cloud-부서') as HTMLInputElement).value = asset. || '';
(document.getElementById('cloud-계정명') as HTMLInputElement).value = asset. || '';
(document.getElementById('cloud-결제수단') as HTMLSelectElement).value = asset. || '';
(document.getElementById('cloud-연결카드번호') as HTMLInputElement).value = asset. || '';
(document.getElementById('cloud-결제일') as HTMLInputElement).value = asset. || '';
const billing = asset. ? asset..replace(/[^0-9]/g, '') : '';
(document.getElementById('cloud-당월청구액') as HTMLInputElement).value = billing ? Number(billing).toLocaleString() : '';
(document.getElementById('cloud-비고') as HTMLInputElement).value = asset. || '';
document.getElementById('btn-open-cloud-update')!.style.display = 'flex';
renderCloudHistory(asset.id);
}
function renderCloudHistory(assetId: string) {
const historyList = document.getElementById('cloud-history-list');
if (!historyList) return;
if (!state.masterData.logs) state.masterData.logs = [];
const logs = state.masterData.logs
.filter(l => l.assetId === assetId)
.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
if (logs.length === 0) {
historyList.innerHTML = '<div class="empty-history">업데이트 내역이 없습니다.</div>';
return;
}
historyList.innerHTML = logs.map(log => `
<div class="history-item">
<div class="history-date">${log.date}</div>
<div class="history-user">작업자: ${log.user}</div>
<div class="history-details">${log.details.replace(/\n/g, '<br>')}</div>
</div>
`).join('');
createIcons({ icons: { X, History, Plus } });
}
export function initCloudModal(renderContent: () => void, closeModals: () => void) {
if (!document.getElementById('cloud-asset-modal')) {
document.body.insertAdjacentHTML('beforeend', CLOUD_MODAL_HTML);
}
const form = document.getElementById('cloud-asset-form') as HTMLFormElement;
const btnRevert = document.getElementById('btn-revert-cloud-edit');
const btnSave = document.getElementById('btn-save-cloud-asset');
const btnDelete = document.getElementById('btn-delete-cloud-asset');
document.getElementById('btn-close-cloud-modal')?.addEventListener('click', closeModals);
document.getElementById('btn-close-cloud-footer')?.addEventListener('click', closeModals);
btnRevert?.addEventListener('click', (e) => {
e.preventDefault();
setCloudEditMode(false);
});
btnSave?.addEventListener('click', (e) => {
e.preventDefault();
if (!isCloudEditMode) {
setCloudEditMode(true);
return;
}
if (!form.checkValidity()) { form.reportValidity(); return; }
const id = (document.getElementById('cloud-asset-id') as HTMLInputElement).value;
const billingRaw = (document.getElementById('cloud-당월청구액') as HTMLInputElement).value.replace(/[^0-9]/g, '');
const newAsset: SoftwareAsset = {
id: id || Math.random().toString(36).substring(2, 9),
type: '클라우드',
: (document.getElementById('cloud-플랫폼명') as HTMLInputElement).value,
: (document.getElementById('cloud-법인') as HTMLSelectElement).value,
: (document.getElementById('cloud-제품명') as HTMLInputElement).value,
: (document.getElementById('cloud-부서') as HTMLInputElement).value,
: (document.getElementById('cloud-계정명') as HTMLInputElement).value,
: (document.getElementById('cloud-결제수단') as HTMLSelectElement).value,
: (document.getElementById('cloud-연결카드번호') as HTMLInputElement).value,
: (document.getElementById('cloud-결제일') as HTMLInputElement).value,
당월청구액: billingRaw,
: (document.getElementById('cloud-비고') as HTMLInputElement).value,
: '', : '', 수량: 1, : ''
};
if (id) {
const idx = state.masterData.sw.findIndex(a => a.id === id);
if (idx !== -1) state.masterData.sw[idx] = newAsset;
} else {
state.masterData.sw.push(newAsset);
const now = new Date();
state.masterData.logs = state.masterData.logs || [];
state.masterData.logs.push({
id: Math.random().toString(36).substring(2, 9),
assetId: newAsset.id,
date: `${now.getFullYear()}-${String(now.getMonth()+1).padStart(2,'0')}-${String(now.getDate()).padStart(2,'0')}`,
user: '관리자',
details: '신규 등록'
});
}
closeModals();
renderContent();
});
btnDelete?.addEventListener('click', (e) => {
e.preventDefault();
const id = (document.getElementById('cloud-asset-id') as HTMLInputElement).value;
if (confirm('클라우드 자산을 삭제하시겠습니까?')) {
state.masterData.sw = state.masterData.sw.filter(a => a.id !== id);
closeModals();
renderContent();
}
});
// 클라우드 업데이트 (이력) 모달 로직
const updateModal = document.getElementById('cloud-update-modal')!;
document.getElementById('btn-open-cloud-update')?.addEventListener('click', () => {
updateModal.classList.remove('hidden');
(document.getElementById('cloud-update-date') as HTMLInputElement).value = new Date().toISOString().split('T')[0];
(document.getElementById('cloud-update-cost') as HTMLInputElement).value = '';
(document.getElementById('cloud-update-note') as HTMLInputElement).value = '';
});
const closeUpdateModal = () => updateModal.classList.add('hidden');
document.getElementById('btn-close-cloud-update')?.addEventListener('click', closeUpdateModal);
document.getElementById('btn-cancel-cloud-update')?.addEventListener('click', closeUpdateModal);
document.getElementById('btn-save-cloud-update')?.addEventListener('click', () => {
const id = (document.getElementById('cloud-asset-id') as HTMLInputElement).value;
if (!id) return;
const date = (document.getElementById('cloud-update-date') as HTMLInputElement).value;
const costRaw = (document.getElementById('cloud-update-cost') as HTMLInputElement).value.replace(/[^0-9]/g, '');
const note = (document.getElementById('cloud-update-note') as HTMLInputElement).value;
if (!date) return alert('업데이트 일자를 입력하세요.');
let details = '결제/상태 업데이트';
if (costRaw) details += ` (비용: ₩ ${Number(costRaw).toLocaleString()})`;
if (note) details += `\n메모: ${note}`;
state.masterData.logs = state.masterData.logs || [];
state.masterData.logs.push({
id: Math.random().toString(36).substring(2, 9),
assetId: id,
date,
user: '관리자',
details
});
// 금액 업데이트 반영
if (costRaw) {
const idx = state.masterData.sw.findIndex(a => a.id === id);
if (idx !== -1) {
state.masterData.sw[idx]. = costRaw;
(document.getElementById('cloud-당월청구액') as HTMLInputElement).value = Number(costRaw).toLocaleString();
}
}
closeUpdateModal();
renderCloudHistory(id);
renderContent();
});
createIcons({ icons: { Save, X, Edit2, RotateCcw, History, Plus } });
}
export function openCloudModal(asset?: SoftwareAsset) {
currentCloudAsset = asset || null;
const form = document.getElementById('cloud-asset-form') as HTMLFormElement;
const deleteBtn = document.getElementById('btn-delete-cloud-asset')!;
openModal('cloud-asset-modal');
form.reset();
if (asset) {
document.getElementById('cloud-modal-title')!.textContent = '클라우드 서비스 상세';
deleteBtn.style.display = 'block';
fillCloudFormData(asset);
setCloudEditMode(false);
} else {
document.getElementById('cloud-modal-title')!.textContent = '신규 클라우드 서비스 등록';
deleteBtn.style.display = 'none';
(document.getElementById('cloud-asset-id') as HTMLInputElement).value = '';
document.getElementById('btn-open-cloud-update')!.style.display = 'none';
renderCloudHistory('');
setCloudEditMode(true);
}
createIcons({ icons: { History, Plus } });
}

View File

@@ -98,12 +98,35 @@ export function openSwUsageDetail(title: string, list: SoftwareAsset[]) {
thead.innerHTML = `<tr><th>No</th><th>법인</th><th>제품명</th><th>수량</th><th>사용중</th><th>사용가능</th></tr>`; thead.innerHTML = `<tr><th>No</th><th>법인</th><th>제품명</th><th>수량</th><th>사용중</th><th>사용가능</th></tr>`;
tbody.innerHTML = ''; tbody.innerHTML = '';
list.forEach((sw, idx) => { list.forEach((sw, idx) => {
const assigned = state.masterData.swUsers.filter(u => u.swId === sw.id).length; const assigned = state.masterData.swUsers.filter(u => u.sw_id === sw.id).length;
const qty = typeof sw. === 'number' ? sw.수량 : parseInt(sw.||'0', 10);
const avail = qty - assigned;
const tr = document.createElement('tr'); const tr = document.createElement('tr');
tr.innerHTML = `<td>${idx+1}</td><td>${sw.}</td><td>${sw.}</td><td>${qty}</td><td>${assigned}</td><td>${avail}</td>`; tr.innerHTML = `<td>${idx+1}</td><td>${sw.}</td><td>${sw.}</td><td>${sw.}</td><td>${assigned}</td><td>${Number(sw.) - assigned}</td>`;
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
modal.classList.remove('hidden'); modal.classList.remove('hidden');
} }
export function openCloudDashboardDetail(title: string, list: SoftwareAsset[]) {
const modal = document.getElementById('dashboard-detail-modal');
if (!modal) return;
const titleEl = document.getElementById('dashboard-detail-modal-title');
const tbody = document.getElementById('dashboard-detail-tbody');
if (!titleEl || !tbody) return;
const thead = tbody.closest('table')?.querySelector('thead');
if (!thead) return;
titleEl.textContent = title;
thead.innerHTML = `<tr><th>No</th><th>플랫폼명</th><th>법인</th><th>제품명</th><th>결제일</th><th>당월청구액(원)</th></tr>`;
tbody.innerHTML = '';
if (list.length === 0) {
tbody.innerHTML = `<tr><td colspan="6" style="text-align:center; padding: 2rem;">해당 내역이 없습니다.</td></tr>`;
} else {
list.forEach((sw, idx) => {
const priceStr = sw. ? Number(sw..replace(/[^0-9]/g, '')).toLocaleString() : '0';
const tr = document.createElement('tr');
tr.innerHTML = `<td>${idx+1}</td><td>${sw.||'-'}</td><td>${sw.||'-'}</td><td>${sw.||'-'}</td><td>${sw. ? sw. + '일' : '-'}</td><td>₩ ${priceStr}</td>`;
tbody.appendChild(tr);
});
}
modal.classList.remove('hidden');
}

View File

@@ -1,6 +1,17 @@
import { state } from '../../core/state'; import { state, saveHardwareAsset, deleteHardwareAsset } from '../../core/state';
import { HardwareAsset } from '../../core/excelHandler'; import { HardwareAsset, MasterAssetData } from '../../core/excelHandler';
import { openModal, closeModals } from './BaseModal';
import { createIcons, Paperclip } from 'lucide'; import { createIcons, Paperclip } from 'lucide';
import { CORP_LIST, ORG_LIST, HW_TYPE_LIST, LOCATION_DATA, TYPE_PREFIX_MAP } from './SharedData';
import {
generateOptionsHTML,
setFieldValue,
getFieldValue,
parseAndSetLocation,
bindLocationEvents,
getCombinedLocation,
setEditLock
} from './ModalUtils';
let currentAsset: HardwareAsset | null = null; let currentAsset: HardwareAsset | null = null;
let isEditMode = false; let isEditMode = false;
@@ -17,15 +28,38 @@ const HW_MODAL_HTML = `
<input type="hidden" id="hw-asset-id" /> <input type="hidden" id="hw-asset-id" />
<input type="hidden" id="hw-asset-type" /> <input type="hidden" id="hw-asset-type" />
<!-- Group 1: 기본 정보 --> <!-- Group 1: 기본 정보 (Identity) -->
<div class="form-section-title">기본 정보 (Identity)</div> <div class="form-section-title">기본 정보 (Identity)</div>
<div class="form-group"> <div class="form-group">
<label for="hw-법인">법인</label> <label for="hw-법인">구매법인</label>
<input type="text" id="hw-법인" required /> <select id="hw-법인" required>${generateOptionsHTML(CORP_LIST)}</select>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="hw-자산코드">자산번호/코드</label> <label for="hw-자산코드">자산번호/코드</label>
<input type="text" id="hw-자산코드" required /> <div style="display:flex; gap:0.5rem;">
<input type="text" id="hw-자산코드" readonly placeholder="번호 생성을 클릭하세요" required />
<button type="button" id="btn-generate-hw-code" class="btn btn-outline" style="white-space:nowrap; padding:0 10px; font-size:0.8rem;">번호 생성</button>
</div>
</div>
<div class="form-group">
<label for="hw-현사용조직">현 사용조직</label>
<select id="hw-현사용조직">${generateOptionsHTML(ORG_LIST)}</select>
</div>
<div class="form-group" id="hw-이전사용조직-group">
<label for="hw-이전사용조직">이전 사용조직</label>
<input type="text" id="hw-이전사용조직" readonly />
</div>
<div class="form-group" id="hw-유형-group">
<label for="hw-유형">유형</label>
<select id="hw-유형">${generateOptionsHTML(HW_TYPE_LIST)}</select>
</div>
<div class="form-group" id="hw-상세용도-group" style="display:none;">
<label for="hw-상세용도">상세용도</label>
<select id="hw-상세용도">
<option value="">선택</option>
<option value="서버">서버</option>
<option value="개인PC">개인PC</option>
</select>
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only">
<label for="hw-용도">용도</label> <label for="hw-용도">용도</label>
@@ -35,7 +69,7 @@ const HW_MODAL_HTML = `
<label for="hw-상세">상세 내용</label> <label for="hw-상세">상세 내용</label>
<input type="text" id="hw-상세" /> <input type="text" id="hw-상세" />
</div> </div>
<div class="form-group non-server"> <div class="form-group non-server" id="hw-명칭-group">
<label for="hw-명칭">명칭</label> <label for="hw-명칭">명칭</label>
<input type="text" id="hw-명칭" /> <input type="text" id="hw-명칭" />
</div> </div>
@@ -44,79 +78,83 @@ const HW_MODAL_HTML = `
<input type="text" id="hw-비고" /> <input type="text" id="hw-비고" />
</div> </div>
<!-- Group 2: 네트워크 정보 --> <!-- Group 2: 네트워크 정보 (Connectivity) -->
<div class="form-section-title server-only">네트워크 정보 (Connectivity)</div> <div class="form-section-title server-only" id="hw-network-title">네트워크 정보 (Connectivity)</div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-ip-group">
<label for="hw-IP주소">IP 주소 1</label> <label for="hw-IP주소">IP 주소 1</label>
<input type="text" id="hw-IP주소" /> <input type="text" id="hw-IP주소" />
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-ip2-group">
<label for="hw-IP2">IP 주소 2</label> <label for="hw-IP2">IP 주소 2</label>
<input type="text" id="hw-IP2" /> <input type="text" id="hw-IP2" />
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-remote-group">
<label for="hw-원격접속">원격 도구 (Anydesk/Chrome 등)</label> <label for="hw-원격접속">원격 도구 (Anydesk/Chrome 등)</label>
<input type="text" id="hw-원격접속" /> <input type="text" id="hw-원격접속" />
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-server-id-group">
<label for="hw-서버ID">서버 ID</label> <label for="hw-서버ID">서버 ID</label>
<input type="text" id="hw-서버ID" /> <input type="text" id="hw-서버ID" />
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-server-pw-group">
<label for="hw-서버PW">서버 PW</label> <label for="hw-서버PW">서버 PW</label>
<input type="text" id="hw-서버PW" /> <input type="text" id="hw-서버PW" />
</div> </div>
<div class="form-group non-server" id="hw-IP주소-group"> <div class="form-group non-server" id="hw-ip-non-server-group">
<label for="hw-IP주소-non-server">IP 주소</label> <label for="hw-IP주소-non-server">IP 주소</label>
<input type="text" id="hw-IP주소-non-server" /> <input type="text" id="hw-IP주소-non-server" />
</div> </div>
<!-- Group 3: 시스템 사양 --> <!-- Group 3: 시스템 사양 (Specifications) -->
<div class="form-section-title">시스템 사양 (Specifications)</div> <div class="form-section-title" id="hw-spec-title">시스템 사양 (Specifications)</div>
<div class="form-group"> <div class="form-group" id="hw-model-group">
<label for="hw-모델명">모델명</label> <label for="hw-모델명">모델명</label>
<input type="text" id="hw-모델명" /> <input type="text" id="hw-모델명" />
</div> </div>
<div class="form-group"> <div class="form-group" id="hw-os-group">
<label for="hw-OS">운영체제 (OS)</label> <label for="hw-OS">운영체제 (OS)</label>
<input type="text" id="hw-OS" /> <input type="text" id="hw-OS" />
</div> </div>
<div class="form-group"> <div class="form-group" id="hw-cpu-group">
<label for="hw-CPU">CPU 사양</label> <label for="hw-CPU">CPU 사양</label>
<input type="text" id="hw-CPU" /> <input type="text" id="hw-CPU" />
</div> </div>
<div class="form-group"> <div class="form-group" id="hw-ram-group">
<label for="hw-RAM">RAM 용량</label> <label for="hw-RAM">RAM 용량</label>
<input type="text" id="hw-RAM" /> <input type="text" id="hw-RAM" />
</div> </div>
<div class="form-group"> <div class="form-group" id="hw-ssd1-group">
<label for="hw-SSD1">Storage 1 (SSD/HDD)</label> <label for="hw-SSD1">Storage 1 (SSD/HDD)</label>
<input type="text" id="hw-SSD1" /> <input type="text" id="hw-SSD1" />
</div> </div>
<div class="form-group"> <div class="form-group" id="hw-ssd2-group">
<label for="hw-SSD2">Storage 2 (SSD/HDD)</label> <label for="hw-SSD2">Storage 2 (SSD/HDD)</label>
<input type="text" id="hw-SSD2" /> <input type="text" id="hw-SSD2" />
</div> </div>
<div class="form-group server-only"> <div class="form-group server-only" id="hw-monitoring-group">
<label for="hw-모니터링">모니터링 여부</label> <label for="hw-모니터링">모니터링 여부</label>
<input type="text" id="hw-모니터링" /> <input type="text" id="hw-모니터링" />
</div> </div>
<div class="form-group" id="hw-비품유형-group" style="display:none;"> <div class="form-group full-width non-server" id="hw-hwspec-group">
<label for="hw-비품유형">비품유형</label>
<select id="hw-비품유형">
<option value="노트북">노트북</option><option value="태블릿">태블릿</option><option value="휴대폰">휴대폰</option>
</select>
</div>
<div class="form-group full-width non-server">
<label for="hw-HW사양">H/W 사양 상세</label> <label for="hw-HW사양">H/W 사양 상세</label>
<textarea id="hw-HW사양" rows="2"></textarea> <textarea id="hw-HW사양" rows="2"></textarea>
</div> </div>
<!-- Group 4: 관리 및 운영 --> <!-- Group 4: 관리 및 운영 (Operation) -->
<div class="form-section-title">관리 및 운영 (Operation)</div> <div class="form-section-title" id="hw-op-title">관리 및 운영 (Operation)</div>
<div class="form-group"> <div class="form-group hw-location-field">
<label for="hw-위치">설치위치</label> <label for="hw-위치-빌딩">설치위치 (건물)</label>
<input type="text" id="hw-위치" /> <select id="hw-위치-빌딩">${generateOptionsHTML(Object.keys(LOCATION_DATA))}</select>
</div>
<div class="form-group hw-location-field">
<label for="hw-위치-상세">상세 위치</label>
<select id="hw-위치-상세">
<option value="">건물을 먼저 선택하세요</option>
</select>
</div>
<div class="form-group" id="hw-위치-기타-group" style="display:none;">
<label for="hw-위치-기타">직접 입력 (기타)</label>
<input type="text" id="hw-위치-기타" placeholder="상세 위치를 입력하세요" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="hw-담당자_정">담당자 (정)</label> <label for="hw-담당자_정">담당자 (정)</label>
@@ -126,13 +164,13 @@ const HW_MODAL_HTML = `
<label for="hw-담당자_부">담당자 (부)</label> <label for="hw-담당자_부">담당자 (부)</label>
<input type="text" id="hw-담당자_부" /> <input type="text" id="hw-담당자_부" />
</div> </div>
<div class="form-group non-server"> <div class="form-group non-server" id="hw-purchase-date-group">
<label for="hw-구매일">구매일</label> <label for="hw-구매일">구매일</label>
<input type="text" id="hw-구매일" /> <input type="text" id="hw-구매일" />
</div> </div>
<div class="form-group non-server"> <div class="form-group non-server" id="hw-price-group">
<label for="hw-금액">금액</label> <label for="hw-금액">금액</label>
<input type="text" id="hw-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\d))/g, ',')" /> <input type="text" id="hw-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\\\B(?=(\\\\d{3})+(?!\d))/g, ',')" />
</div> </div>
<div class="form-group full-width"> <div class="form-group full-width">
<label>품의서 (파일 증빙)</label> <label>품의서 (파일 증빙)</label>
@@ -155,180 +193,275 @@ const HW_MODAL_HTML = `
</div> </div>
`; `;
export function openHwModal(asset: HardwareAsset) { export function openHwModal(asset: HardwareAsset, mode: 'view' | 'add' | 'edit' = 'view') {
currentAsset = asset; currentAsset = asset;
isEditMode = false;
const modal = document.getElementById('hw-asset-modal')!; const modal = document.getElementById('hw-asset-modal')!;
const form = document.getElementById('hw-asset-form') as HTMLFormElement;
const saveBtn = document.getElementById('btn-save-hw-asset')!;
const revertBtn = document.getElementById('btn-revert-hw-edit')!;
form.reset(); // 1. 잠금 상태 통합 제어 (데이터 유무가 아닌 호출 mode에만 의존)
form.classList.remove('is-edit-mode'); setEditLock('hw-asset-form', mode, {
form.classList.add('is-view-mode'); saveBtnId: 'btn-save-hw-asset',
saveBtn.textContent = '수정'; revertBtnId: 'btn-revert-hw-edit',
revertBtn.classList.add('hidden'); generateBtnId: 'btn-generate-hw-code'
});
isEditMode = (mode === 'add' || mode === 'edit');
// 2. 데이터 바인딩
fillHwFormData(asset); fillHwFormData(asset);
modal.classList.remove('hidden'); modal.classList.remove('hidden');
applyTypeSpecificUI(asset.type);
createIcons({ icons: { Paperclip } }); createIcons({ icons: { Paperclip } });
} }
function fillHwFormData(asset: HardwareAsset) { function applyTypeSpecificUI(type: string) {
(document.getElementById('hw-asset-id') as HTMLInputElement).value = asset.id; const detailPurpose = getFieldValue('hw-상세용도');
(document.getElementById('hw-asset-type') as HTMLInputElement).value = asset.type; const form = document.getElementById('hw-asset-form') as HTMLFormElement;
(document.getElementById('hw-법인') as HTMLInputElement).value = asset.; if (!form) return;
(document.getElementById('hw-자산코드') as HTMLInputElement).value = asset.;
(document.getElementById('hw-위치') as HTMLInputElement).value = asset.;
(document.getElementById('hw-모델명') as HTMLInputElement).value = asset. || '';
(document.getElementById('hw-OS') as HTMLInputElement).value = asset.OS || '';
(document.getElementById('hw-CPU') as HTMLInputElement).value = asset.CPU || '';
(document.getElementById('hw-RAM') as HTMLInputElement).value = asset.RAM || '';
(document.getElementById('hw-SSD1') as HTMLInputElement).value = asset.SSD1 || '';
(document.getElementById('hw-SSD2') as HTMLInputElement).value = asset.SSD2 || '';
(document.getElementById('hw-담당자_정') as HTMLInputElement).value = asset._정 || asset. || '';
(document.getElementById('hw-담당자_부') as HTMLInputElement).value = asset._부 || '';
(document.getElementById('hw-품의서명') as HTMLElement).textContent = asset. || '';
const serverOnly = document.querySelectorAll('.server-only'); const serverOnly = document.querySelectorAll('.server-only');
const nonServer = document.querySelectorAll('.non-server'); const nonServer = document.querySelectorAll('.non-server');
const equipGroup = document.getElementById('hw-비품유형-group')!; const locationFields = document.querySelectorAll('.hw-location-field');
const groups: Record<string, HTMLElement | null> = {
detailPurpose: document.getElementById('hw-상세용도-group'),
model: document.getElementById('hw-model-group'),
ip: document.getElementById('hw-ip-group'),
ip2: document.getElementById('hw-ip2-group'),
remote: document.getElementById('hw-remote-group'),
os: document.getElementById('hw-os-group'),
cpu: document.getElementById('hw-cpu-group'),
ram: document.getElementById('hw-ram-group'),
ssd1: document.getElementById('hw-ssd1-group'),
ssd2: document.getElementById('hw-ssd2-group'),
monitoring: document.getElementById('hw-monitoring-group'),
serverId: document.getElementById('hw-server-id-group'),
serverPw: document.getElementById('hw-server-pw-group'),
hwSpec: document.getElementById('hw-hwspec-group'),
ipNonServer: document.getElementById('hw-ip-non-server-group'),
type: document.getElementById('hw-유형-group'),
networkTitle: document.getElementById('hw-network-title'),
specTitle: document.getElementById('hw-spec-title'),
opTitle: document.getElementById('hw-op-title')
};
if (asset.type === '서버') { // 1. 초기화 (모든 유동 섹션 숨김)
serverOnly.forEach(el => (el as HTMLElement).style.display = 'none');
nonServer.forEach(el => (el as HTMLElement).style.display = 'none');
locationFields.forEach(el => (el as HTMLElement).style.display = 'none');
Object.values(groups).forEach(g => { if (g) g.style.display = 'none'; });
if (groups.type) groups.type.style.display = 'flex';
if (groups.opTitle) groups.opTitle.style.display = 'flex';
// 2. 유형별 정밀 규칙 적용 (사용자 정의 100% 일치)
if (type === '서버') {
serverOnly.forEach(el => (el as HTMLElement).style.display = 'flex'); serverOnly.forEach(el => (el as HTMLElement).style.display = 'flex');
nonServer.forEach(el => (el as HTMLElement).style.display = 'none'); locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
equipGroup.style.display = 'none'; Object.values(groups).forEach(g => { if (g) g.style.display = 'flex'; });
}
(document.getElementById('hw-용도') as HTMLInputElement).value = asset. || ''; else if (['스토리지', 'NAS', 'DAS'].includes(type)) {
(document.getElementById('hw-상세') as HTMLInputElement).value = asset. || ''; serverOnly.forEach(el => (el as HTMLElement).style.display = 'flex');
(document.getElementById('hw-비고') as HTMLInputElement).value = asset. || ''; locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
(document.getElementById('hw-IP주소') as HTMLInputElement).value = asset.IP주소 || ''; if (groups.networkTitle) groups.networkTitle.style.display = 'flex';
(document.getElementById('hw-IP2') as HTMLInputElement).value = (asset as any).IP2 || ''; if (groups.ip) groups.ip.style.display = 'flex';
(document.getElementById('hw-원격접속') as HTMLInputElement).value = asset. || ''; if (groups.specTitle) groups.specTitle.style.display = 'flex';
(document.getElementById('hw-서버ID') as HTMLInputElement).value = (asset as any).ID || ''; if (groups.model) groups.model.style.display = 'flex';
(document.getElementById('hw-서버PW') as HTMLInputElement).value = (asset as any).PW || ''; if (groups.ssd1) groups.ssd1.style.display = 'flex';
(document.getElementById('hw-모니터링') as HTMLInputElement).value = asset. || ''; if (groups.ssd2) groups.ssd2.style.display = 'flex';
} else { }
serverOnly.forEach(el => (el as HTMLElement).style.display = 'none'); else if (type === 'PC' || type === '노트북') {
if (type === 'PC' && groups.detailPurpose) groups.detailPurpose.style.display = 'flex';
nonServer.forEach(el => (el as HTMLElement).style.display = 'flex'); nonServer.forEach(el => (el as HTMLElement).style.display = 'flex');
if (groups.specTitle) groups.specTitle.style.display = 'flex';
(document.getElementById('hw-명칭') as HTMLInputElement).value = asset. || ''; ['model', 'os', 'cpu', 'ram', 'ssd1', 'ssd2', 'hwSpec', 'ipNonServer'].forEach(k => {
(document.getElementById('hw-구매일') as HTMLInputElement).value = asset. || ''; if (groups[k]) groups[k]!.style.display = 'flex';
(document.getElementById('hw-금액') as HTMLInputElement).value = asset. || ''; });
(document.getElementById('hw-HW사양') as HTMLTextAreaElement).value = asset.HW사양 || ''; if (type === 'PC' && detailPurpose === '서버') {
(document.getElementById('hw-IP주소-non-server') as HTMLInputElement).value = asset.IP주소 || ''; locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
if (groups.networkTitle) groups.networkTitle.style.display = 'flex';
if (asset.type === '전산비품') { ['ip', 'ip2', 'remote', 'serverId', 'serverPw', 'monitoring'].forEach(k => {
equipGroup.style.display = 'flex'; if (groups[k]) groups[k]!.style.display = 'flex';
(document.getElementById('hw-비품유형') as HTMLSelectElement).value = asset. || '노트북'; });
} else { if (groups.ipNonServer) groups.ipNonServer.style.display = 'none';
equipGroup.style.display = 'none';
} }
} }
else if (['CPU', 'GPU', '모바일'].includes(type)) {
if (groups.specTitle) groups.specTitle.style.display = 'flex';
if (groups.model) groups.model.style.display = 'flex';
}
else if (type === 'RAM') {
if (groups.specTitle) groups.specTitle.style.display = 'flex';
if (groups.ram) groups.ram.style.display = 'flex';
}
else if (type === 'HDD') {
if (groups.specTitle) groups.specTitle.style.display = 'flex';
if (groups.ssd1) groups.ssd1.style.display = 'flex';
}
else if (type === '태블릿') {
if (groups.specTitle) groups.specTitle.style.display = 'flex';
if (groups.model) groups.model.style.display = 'flex';
if (groups.ssd1) groups.ssd1.style.display = 'flex';
}
}
function fillHwFormData(asset: HardwareAsset) {
setFieldValue('hw-asset-id', asset.id);
setFieldValue('hw-asset-type', asset.type);
setFieldValue('hw-법인', asset.);
setFieldValue('hw-자산코드', asset.);
setFieldValue('hw-현사용조직', asset.);
setFieldValue('hw-이전사용조직', asset.);
setFieldValue('hw-상세용도', (asset as any).);
parseAndSetLocation(asset., 'hw-위치-빌딩', 'hw-위치-상세', 'hw-위치-기타-group', 'hw-위치-기타');
setFieldValue('hw-모델명', asset.);
setFieldValue('hw-OS', asset.OS);
setFieldValue('hw-CPU', asset.CPU);
setFieldValue('hw-RAM', asset.RAM);
setFieldValue('hw-SSD1', asset.SSD1);
setFieldValue('hw-SSD2', asset.SSD2);
setFieldValue('hw-담당자_정', asset._정 || asset.);
setFieldValue('hw-담당자_부', asset._부);
const isServerGrade = asset.type === '서버' || (asset as any). === '서버' || asset.type === '스토리지' || ['NAS', 'DAS'].includes(asset.type);
if (isServerGrade) {
setFieldValue('hw-용도', asset. || (asset as any).purpose);
setFieldValue('hw-상세', asset. || (asset as any).details);
setFieldValue('hw-비고', asset. || (asset as any).remarks);
setFieldValue('hw-구매일', asset. || (asset as any).purchase_date);
setFieldValue('hw-유형', asset.storage유형 || asset.type);
setFieldValue('hw-IP주소', asset.IP주소 || (asset as any).ip_address);
setFieldValue('hw-IP2', (asset as any).IP2 || (asset as any).ip_address_2);
setFieldValue('hw-원격접속', asset. || (asset as any).remote_tool);
setFieldValue('hw-서버ID', (asset as any).ID || (asset as any).server_id);
setFieldValue('hw-서버PW', (asset as any).PW || (asset as any).server_pw);
setFieldValue('hw-모니터링', asset. || (asset as any).monitoring);
} else {
setFieldValue('hw-명칭', asset. || asset.);
setFieldValue('hw-구매일', asset. || (asset as any).purchase_date);
setFieldValue('hw-금액', asset. || (asset as any).price);
setFieldValue('hw-HW사양', asset.HW사양 || asset. || (asset as any).details);
setFieldValue('hw-IP주소-non-server', asset.IP주소 || (asset as any).ip_address);
}
} }
export function initHwModal(onSave: () => void, closeModals: () => void) { export function initHwModal(onSave: () => void, closeModals: () => void) {
// HTML 주입
if (!document.getElementById('hw-asset-modal')) { if (!document.getElementById('hw-asset-modal')) {
document.body.insertAdjacentHTML('beforeend', HW_MODAL_HTML); document.body.insertAdjacentHTML('beforeend', HW_MODAL_HTML);
} }
const modal = document.getElementById('hw-asset-modal')!;
const form = document.getElementById('hw-asset-form') as HTMLFormElement; const form = document.getElementById('hw-asset-form') as HTMLFormElement;
const closeBtn = document.getElementById('btn-close-hw-modal')!;
const cancelBtn = document.getElementById('btn-cancel-hw-modal')!;
const saveBtn = document.getElementById('btn-save-hw-asset')!; const saveBtn = document.getElementById('btn-save-hw-asset')!;
const revertBtn = document.getElementById('btn-revert-hw-edit')!; const revertBtn = document.getElementById('btn-revert-hw-edit')!;
const deleteBtn = document.getElementById('btn-delete-hw-asset')!; const deleteBtn = document.getElementById('btn-delete-hw-asset')!;
const typeSelect = document.getElementById('hw-유형') as HTMLSelectElement;
const detailPurposeSelect = document.getElementById('hw-상세용도') as HTMLSelectElement;
[typeSelect, detailPurposeSelect].forEach(el => {
el?.addEventListener('change', () => applyTypeSpecificUI(typeSelect.value));
});
const closeModal = () => { bindLocationEvents('hw-위치-빌딩', 'hw-위치-상세', 'hw-위치-기타-group', 'hw-위치-기타');
closeModals();
const closeModalAction = () => { closeModals(); isEditMode = false; };
document.getElementById('btn-close-hw-modal')?.addEventListener('click', closeModalAction);
document.getElementById('btn-cancel-hw-modal')?.addEventListener('click', closeModalAction);
revertBtn.addEventListener('click', () => {
setEditLock('hw-asset-form', 'view', {
saveBtnId: 'btn-save-hw-asset',
revertBtnId: 'btn-revert-hw-edit',
generateBtnId: 'btn-generate-hw-code'
});
isEditMode = false; isEditMode = false;
}; if (currentAsset) fillHwFormData(currentAsset);
});
const switchToViewMode = () => { document.getElementById('btn-generate-hw-code')?.addEventListener('click', async () => {
isEditMode = false; const typeValue = typeSelect.value;
form.classList.remove('is-edit-mode'); const purchaseDate = getFieldValue('hw-구매일');
form.classList.add('is-view-mode'); const typeCode = TYPE_PREFIX_MAP[typeValue] || 'ETC';
saveBtn.textContent = '수정'; const dateStr = purchaseDate.replace(/[^0-9]/g, '');
revertBtn.classList.add('hidden'); if (dateStr.length < 4) { alert('올바른 구매일(연월)을 입력해주세요.'); return; }
if (currentAsset) fillHwFormData(currentAsset); const prefix = `${typeCode}-${dateStr.substring(2, 6)}-`;
}; try {
const res = await fetch(`http://localhost:3000/api/generate-asset-code?prefix=${prefix}`);
closeBtn.addEventListener('click', closeModal); const data = await res.json();
cancelBtn.addEventListener('click', closeModal); if (data.nextCode) setFieldValue('hw-자산코드', data.nextCode);
modal.addEventListener('click', (e) => { if (e.target === modal) closeModal(); }); } catch (err) { alert('자산번호 생성에 실패했습니다.'); }
revertBtn.addEventListener('click', () => { switchToViewMode(); }); });
saveBtn.addEventListener('click', () => { saveBtn.addEventListener('click', () => {
if (!currentAsset) return; if (!currentAsset) return;
if (!isEditMode) { if (!isEditMode) {
setEditLock('hw-asset-form', 'edit', {
saveBtnId: 'btn-save-hw-asset',
revertBtnId: 'btn-revert-hw-edit'
});
isEditMode = true; isEditMode = true;
form.classList.remove('is-view-mode');
form.classList.add('is-edit-mode');
saveBtn.textContent = '저장';
revertBtn.classList.remove('hidden');
return; return;
} }
const assetId = (document.getElementById('hw-asset-id') as HTMLInputElement).value; const type = typeSelect.value;
const type = (document.getElementById('hw-asset-type') as HTMLInputElement).value; const detailPurpose = detailPurposeSelect.value;
const updated: HardwareAsset = { const updated: any = {
...currentAsset, ...currentAsset,
: (document.getElementById('hw-법인') as HTMLInputElement).value, 법인: getFieldValue('hw-법인'),
: (document.getElementById('hw-자산코드') as HTMLInputElement).value, 자산코드: getFieldValue('hw-자산코드'),
: (document.getElementById('hw-위치') as HTMLInputElement).value, 현사용조직: getFieldValue('hw-현사용조직'),
: (document.getElementById('hw-모델명') as HTMLInputElement).value, 이전사용조직: getFieldValue('hw-이전사용조직'),
OS: (document.getElementById('hw-OS') as HTMLInputElement).value, 위치: getCombinedLocation('hw-위치-빌딩', 'hw-위치-상세', 'hw-위치-기타'),
CPU: (document.getElementById('hw-CPU') as HTMLInputElement).value, 모델명: getFieldValue('hw-모델명'),
RAM: (document.getElementById('hw-RAM') as HTMLInputElement).value, OS: getFieldValue('hw-OS'),
SSD1: (document.getElementById('hw-SSD1') as HTMLInputElement).value, CPU: getFieldValue('hw-CPU'),
SSD2: (document.getElementById('hw-SSD2') as HTMLInputElement).value, RAM: getFieldValue('hw-RAM'),
_정: (document.getElementById('hw-담당자_정') as HTMLInputElement).value, SSD1: getFieldValue('hw-SSD1'),
: (document.getElementById('hw-담당자_정') as HTMLInputElement).value, SSD2: getFieldValue('hw-SSD2'),
_부: (document.getElementById('hw-담당자_') as HTMLInputElement).value, 담당자_정: getFieldValue('hw-담당자_'),
관리자: getFieldValue('hw-담당자_정'),
담당자_부: getFieldValue('hw-담당자_부'),
type: type,
상세용도: detailPurpose
}; };
if (type === '서버') { if (type === '서버' || (type === 'PC' && detailPurpose === '서버') || ['스토리지', 'NAS', 'DAS'].includes(type)) {
updated. = (document.getElementById('hw-용도') as HTMLInputElement).value; updated. = getFieldValue('hw-용도');
updated. = (document.getElementById('hw-상세') as HTMLInputElement).value; updated. = getFieldValue('hw-상세');
updated. = (document.getElementById('hw-비고') as HTMLInputElement).value; updated. = getFieldValue('hw-비고');
updated.IP주소 = (document.getElementById('hw-IP주소') as HTMLInputElement).value; updated.storage유형 = type;
(updated as any).IP2 = (document.getElementById('hw-IP2') as HTMLInputElement).value; updated.IP주소 = getFieldValue('hw-IP주소');
updated. = (document.getElementById('hw-원격접속') as HTMLInputElement).value; updated.IP2 = getFieldValue('hw-IP2');
(updated as any).ID = (document.getElementById('hw-서버ID') as HTMLInputElement).value; updated. = getFieldValue('hw-원격접속');
(updated as any).PW = (document.getElementById('hw-서버PW') as HTMLInputElement).value; updated.ID = getFieldValue('hw-서버ID');
updated. = (document.getElementById('hw-모니터링') as HTMLInputElement).value; updated.PW = getFieldValue('hw-서버PW');
updated. = getFieldValue('hw-모니터링');
} else { } else {
updated. = (document.getElementById('hw-명칭') as HTMLInputElement).value; updated. = getFieldValue('hw-명칭');
updated. = (document.getElementById('hw-구매일') as HTMLInputElement).value; updated. = getFieldValue('hw-구매일');
updated. = (document.getElementById('hw-금액') as HTMLInputElement).value; updated. = getFieldValue('hw-금액');
updated.HW사양 = (document.getElementById('hw-HW사양') as HTMLTextAreaElement).value; updated.HW사양 = getFieldValue('hw-HW사양');
updated.IP주소 = (document.getElementById('hw-IP주소-non-server') as HTMLInputElement).value; updated.IP주소 = getFieldValue('hw-IP주소-non-server');
if (type === '전산비품') {
updated. = (document.getElementById('hw-비품유형') as HTMLSelectElement).value;
}
} }
const idx = state.masterData.hw.findIndex(a => a.id === assetId); saveHardwareAsset(updated);
if (idx > -1) { onSave();
state.masterData.hw[idx] = updated; setEditLock('hw-asset-form', 'view', {
onSave(); saveBtnId: 'btn-save-hw-asset',
switchToViewMode(); revertBtnId: 'btn-revert-hw-edit'
} });
isEditMode = false;
}); });
deleteBtn.addEventListener('click', () => { deleteBtn.addEventListener('click', () => {
if (!currentAsset) return; if (!currentAsset) return;
if (confirm('정말로 이 자산을 삭제하시겠습니까?')) { if (confirm('정말로 이 자산을 삭제하시겠습니까?')) {
state.masterData.hw = state.masterData.hw.filter(a => a.id !== currentAsset!.id); deleteHardwareAsset(currentAsset.id);
onSave(); onSave();
closeModal(); closeModals();
} }
}); });
} }

View File

@@ -0,0 +1,166 @@
import { LOCATION_DATA } from './SharedData';
/**
* 모달 조작 및 UI 생성을 위한 공통 유틸리티
*/
// 1. Select 박스의 Option HTML 생성
export function generateOptionsHTML(list: string[], defaultValue: string = '', includeSelectHint: boolean = true): string {
let html = includeSelectHint ? '<option value="">선택</option>' : '';
html += list.map(item => `<option value="${item}" ${item === defaultValue ? 'selected' : ''}>${item}</option>`).join('');
return html;
}
// 2. 안전하게 폼 필드 값 설정 (Null 에러 방지)
export function setFieldValue(id: string, value: any) {
const el = document.getElementById(id) as HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
if (el) {
el.value = value || '';
}
}
// 3. 안전하게 폼 필드 값 읽기
export function getFieldValue(id: string): string {
const el = document.getElementById(id) as HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
return el ? el.value : '';
}
// 4. 위치 정보 파싱 및 UI 세팅
export function parseAndSetLocation(locationStr: string, bldgId: string, detailId: string, etcGroupId: string, etcInputId: string) {
const bldgSelect = document.getElementById(bldgId) as HTMLSelectElement;
const detailSelect = document.getElementById(detailId) as HTMLSelectElement;
const etcGroup = document.getElementById(etcGroupId);
const etcInput = document.getElementById(etcInputId) as HTMLInputElement;
if (!bldgSelect || !detailSelect) return;
// 초기화
bldgSelect.value = '';
detailSelect.innerHTML = '<option value="">선택</option>';
if (etcGroup) etcGroup.style.display = 'none';
if (!locationStr) return;
const parts = locationStr.split(' ');
const bldg = parts[0];
if (LOCATION_DATA[bldg]) {
bldgSelect.value = bldg;
// 상세 목록 갱신
detailSelect.innerHTML = generateOptionsHTML(LOCATION_DATA[bldg]);
const detail = parts[1];
if (detail) {
detailSelect.value = detail;
if (detail === '기타' && etcGroup && etcInput) {
etcGroup.style.display = 'flex';
etcInput.value = parts.slice(2).join(' ');
}
}
}
}
// 5. 위치 종속성(Cascade) 이벤트 바인딩
export function bindLocationEvents(bldgId: string, detailId: string, etcGroupId: string, etcInputId: string) {
const bldgSelect = document.getElementById(bldgId) as HTMLSelectElement;
const detailSelect = document.getElementById(detailId) as HTMLSelectElement;
const etcGroup = document.getElementById(etcGroupId);
const etcInput = document.getElementById(etcInputId) as HTMLInputElement;
if (!bldgSelect || !detailSelect) return;
bldgSelect.addEventListener('change', () => {
const bldg = bldgSelect.value;
detailSelect.innerHTML = generateOptionsHTML(LOCATION_DATA[bldg] || []);
if (etcGroup) etcGroup.style.display = 'none';
if (etcInput) etcInput.value = '';
});
detailSelect.addEventListener('change', () => {
if (etcGroup) {
etcGroup.style.display = detailSelect.value === '기타' ? 'flex' : 'none';
}
});
}
// 6. 위치 문자열 조합 (저장용)
export function getCombinedLocation(bldgId: string, detailId: string, etcInputId: string): string {
const bldg = getFieldValue(bldgId);
const detail = getFieldValue(detailId);
const etc = getFieldValue(etcInputId);
let combined = bldg;
if (detail) combined += ` ${detail}`;
if (detail === '기타' && etc) combined += ` ${etc}`;
return combined.trim();
}
// 7. 조회/수정 모드 UI 통합 제어
export function setEditLock(
formId: string,
mode: 'view' | 'add' | 'edit',
options: {
saveBtnId: string,
revertBtnId: string,
generateBtnId?: string
}
) {
const form = document.getElementById(formId) as HTMLFormElement;
const saveBtn = document.getElementById(options.saveBtnId);
const revertBtn = document.getElementById(options.revertBtnId);
const generateBtn = options.generateBtnId ? document.getElementById(options.generateBtnId) : null;
if (!form || !saveBtn || !revertBtn) return;
if (mode === 'add' || mode === 'edit') {
// 편집 모드 활성화
form.classList.remove('is-view-mode');
form.classList.add('is-edit-mode');
saveBtn.textContent = '저장';
revertBtn.classList.toggle('hidden', mode === 'add'); // 신규 추가 시에는 취소 버튼 숨김 (닫기가 대신함)
// 번호 생성 버튼은 '추가' 시에만 노출
if (generateBtn) generateBtn.classList.toggle('hidden', mode !== 'add');
} else {
// 조회 모드 (잠금)
form.classList.remove('is-edit-mode');
form.classList.add('is-view-mode');
saveBtn.textContent = '수정';
revertBtn.classList.add('hidden');
// 조회 모드에서는 번호 생성 버튼 무조건 숨김
if (generateBtn) generateBtn.classList.add('hidden');
}
}
// 8. 날짜 자동 마스킹 및 포커스 제어 (Auto-jump)
export function applyDateMask(el: HTMLInputElement) {
if (!el) return;
el.placeholder = 'YYYY-MM-DD';
el.maxLength = 10;
el.addEventListener('input', (e) => {
let value = el.value.replace(/[^0-9]/g, ''); // 숫자만 남김
let result = '';
if (value.length <= 4) {
result = value;
} else if (value.length <= 6) {
result = value.substring(0, 4) + '-' + value.substring(4);
} else {
result = value.substring(0, 4) + '-' + value.substring(4, 6) + '-' + value.substring(6, 10);
}
el.value = result;
});
// 엔터 키나 입력 완료 시 유효성 검사 (선택 사항)
el.addEventListener('blur', () => {
const val = el.value;
if (val && !/^\d{4}-\d{2}-\d{2}$/.test(val)) {
// 형식이 맞지 않으면 경고 효과 등을 줄 수 있음
}
});
}

View File

@@ -1,6 +1,19 @@
import { state } from '../../core/state'; import { state, saveHardwareAsset, deleteHardwareAsset } from '../../core/state';
import { HardwareAsset, HardwareLog } from '../../core/excelHandler'; import { HardwareAsset } from '../../core/excelHandler';
import { openModal } from './BaseModal'; import { openModal, closeModals } from './BaseModal';
import { createIcons, History, X, Paperclip } from 'lucide';
import { CORP_LIST, ORG_LIST, HW_TYPE_LIST, LOCATION_DATA } from './SharedData';
import {
generateOptionsHTML,
setFieldValue,
getFieldValue,
parseAndSetLocation,
bindLocationEvents,
getCombinedLocation
} from './ModalUtils';
let currentAsset: HardwareAsset | null = null;
let isEditMode = false;
const PC_MODAL_HTML = ` const PC_MODAL_HTML = `
<div id="pc-asset-modal" class="modal-overlay hidden"> <div id="pc-asset-modal" class="modal-overlay hidden">
@@ -15,78 +28,93 @@ const PC_MODAL_HTML = `
<form id="pc-asset-form" class="grid-form"> <form id="pc-asset-form" class="grid-form">
<input type="hidden" id="pc-asset-id" /> <input type="hidden" id="pc-asset-id" />
<input type="hidden" id="pc-asset-type" value="개인PC" /> <input type="hidden" id="pc-asset-type" value="개인PC" />
<div class="form-section-title">기본 정보 (Identity)</div>
<div class="form-group"> <div class="form-group">
<label for="pc-법인">법인</label> <label for="pc-법인">구매법인</label>
<select id="pc-법인" required> <select id="pc-법인" required>${generateOptionsHTML(CORP_LIST)}</select>
<option value="한맥">한맥 (HM)</option><option value="삼안">삼안 (SM)</option><option value="바론">바론 (BR)</option> </div>
<div class="form-group">
<label for="pc-자산코드">자산번호/코드</label>
<input type="text" id="pc-자산코드" readonly placeholder="자동 생성됩니다" required />
</div>
<div class="form-group">
<label for="pc-유형">유형</label>
<select id="pc-유형">${generateOptionsHTML(HW_TYPE_LIST)}</select>
</div>
<div class="form-group">
<label for="pc-상세용도">상세용도</label>
<select id="pc-상세용도">
<option value="개인PC">개인PC</option>
<option value="서버">서버</option>
</select> </select>
</div> </div>
<div class="form-group">
<label for="pc-자산코드">자산코드</label>
<input type="text" id="pc-자산코드" placeholder="ex) HM-PC-2018-001" required />
</div>
<div class="form-group"> <div class="form-group">
<label for="pc-사용자">사용자</label> <label for="pc-사용자">사용자</label>
<input type="text" id="pc-사용자" required /> <input type="text" id="pc-사용자" required />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-위치">위치</label> <label for="pc-현사용조직">현 사용조직</label>
<input type="text" id="pc-위치" /> <select id="pc-현사용조직">${generateOptionsHTML(ORG_LIST)}</select>
</div>
<div class="form-group" id="pc-이전사용조직-group">
<label for="pc-이전사용조직">이전 사용조직</label>
<input type="text" id="pc-이전사용조직" readonly />
</div> </div>
<div class="form-section-title">시스템 사양 (Specifications)</div>
<div class="form-group"> <div class="form-group">
<label for="pc-CPU">CPU</label> <label for="pc-모델명">모델명</label>
<input type="text" id="pc-모델명" />
</div>
<div class="form-group">
<label for="pc-OS">운영체제 (OS)</label>
<input type="text" id="pc-OS" />
</div>
<div class="form-group">
<label for="pc-CPU">CPU 사양</label>
<input type="text" id="pc-CPU" /> <input type="text" id="pc-CPU" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-GPU">GPU</label> <label for="pc-RAM">RAM 용량</label>
<input type="text" id="pc-GPU" />
</div>
<div class="form-group">
<label for="pc-RAM">RAM</label>
<input type="text" id="pc-RAM" /> <input type="text" id="pc-RAM" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-SSD1">SSD1</label> <label for="pc-SSD1">Storage 1 (SSD/HDD)</label>
<input type="text" id="pc-SSD1" /> <input type="text" id="pc-SSD1" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-SSD2">SSD2</label> <label for="pc-SSD2">Storage 2 (SSD/HDD)</label>
<input type="text" id="pc-SSD2" /> <input type="text" id="pc-SSD2" />
</div> </div>
<div class="form-group"> <div class="form-section-title" id="pc-location-title">관리 및 운영 (Operation)</div>
<label for="pc-HDD1">HDD1</label> <div class="form-group pc-location-field">
<input type="text" id="pc-HDD1" /> <label for="pc-위치-빌딩">설치위치 (건물)</label>
<select id="pc-위치-빌딩">${generateOptionsHTML(Object.keys(LOCATION_DATA))}</select>
</div> </div>
<div class="form-group pc-location-field">
<div class="form-group"> <label for="pc-위치-상세">상세 위치</label>
<label for="pc-HDD2">HDD2</label> <select id="pc-위치-상세">
<input type="text" id="pc-HDD2" /> <option value="">건물을 먼저 선택하세요</option>
</select>
</div>
<div class="form-group" id="pc-위치-기타-group" style="display:none;">
<label for="pc-위치-기타">직접 입력 (기타)</label>
<input type="text" id="pc-위치-기타" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-구매일">구매일</label> <label for="pc-구매일">구매일</label>
<input type="text" id="pc-구매일" placeholder="ex) 2024-01-01" /> <input type="text" id="pc-구매일" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-금액">금액</label> <label for="pc-금액">금액</label>
<input type="text" id="pc-금액" placeholder="ex) 1,000,000" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\d))/g, ',')" /> <input type="text" id="pc-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\\\B(?=(\\\\d{3})+(?!\d))/g, ',')" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="pc-납품업체">납품업체</label> <label for="pc-납품업체">납품업체</label>
<input type="text" id="pc-납품업체" /> <input type="text" id="pc-납품업체" />
</div> </div>
<div class="form-group full-width"> <div class="form-group full-width">
<label>품의서 (파일)</label> <label>품의서 (파일)</label>
<div style="display:flex; align-items:center; gap:0.5rem;"> <div style="display:flex; align-items:center; gap:0.5rem;">
@@ -110,7 +138,7 @@ const PC_MODAL_HTML = `
<button id="btn-delete-pc-asset" class="btn btn-outline btn-danger">삭제</button> <button id="btn-delete-pc-asset" class="btn btn-outline btn-danger">삭제</button>
<div class="footer-actions"> <div class="footer-actions">
<button id="btn-revert-pc-edit" class="btn btn-outline hidden">수정 취소</button> <button id="btn-revert-pc-edit" class="btn btn-outline hidden">수정 취소</button>
<button id="btn-close-pc-footer" class="btn btn-outline">닫기</button> <button id="btn-cancel-pc-modal" class="btn btn-outline">닫기</button>
<button id="btn-save-pc-asset" class="btn btn-primary">수정</button> <button id="btn-save-pc-asset" class="btn btn-primary">수정</button>
</div> </div>
</div> </div>
@@ -118,225 +146,217 @@ const PC_MODAL_HTML = `
</div> </div>
`; `;
export function initPcModal(renderContent: () => void, closeModals: () => void) { export function openPcModal(asset: HardwareAsset, mode: 'view' | 'add' | 'edit' = 'view') {
currentAsset = asset;
const modal = document.getElementById('pc-asset-modal');
if (!modal) return;
const form = document.getElementById('pc-asset-form') as HTMLFormElement;
const saveBtn = document.getElementById('btn-save-pc-asset')!;
const revertBtn = document.getElementById('btn-revert-pc-edit')!;
if (form) form.reset();
if (mode === 'add' || mode === 'edit') {
isEditMode = true;
if (form) {
form.classList.remove('is-view-mode');
form.classList.add('is-edit-mode');
}
saveBtn.textContent = '저장';
revertBtn.classList.toggle('hidden', mode === 'add');
const prevOrgGroup = document.getElementById('pc-이전사용조직-group');
if (prevOrgGroup) prevOrgGroup.style.display = 'none';
} else {
isEditMode = false;
if (form) {
form.classList.remove('is-edit-mode');
form.classList.add('is-view-mode');
}
saveBtn.textContent = '수정';
revertBtn.classList.add('hidden');
const prevOrgGroup = document.getElementById('pc-이전사용조직-group');
if (prevOrgGroup) prevOrgGroup.style.display = 'flex';
}
fillFormData(asset);
renderHistory(asset.id);
modal.classList.remove('hidden');
applyPcTypeSpecificUI();
createIcons({ icons: { X, History, Paperclip } });
}
function applyPcTypeSpecificUI() {
const type = getFieldValue('pc-유형');
const detailPurpose = getFieldValue('pc-상세용도');
const modelGroup = document.getElementById('pc-모델명')?.closest('.form-group') as HTMLElement;
const osGroup = document.getElementById('pc-OS')?.closest('.form-group') as HTMLElement;
const cpuGroup = document.getElementById('pc-CPU')?.closest('.form-group') as HTMLElement;
const ramGroup = document.getElementById('pc-RAM')?.closest('.form-group') as HTMLElement;
const ssd1Group = document.getElementById('pc-SSD1')?.closest('.form-group') as HTMLElement;
const ssd2Group = document.getElementById('pc-SSD2')?.closest('.form-group') as HTMLElement;
const locationFields = document.querySelectorAll('.pc-location-field');
const etcGroup = document.getElementById('pc-위치-기타-group');
// 초기화 (숨김)
[modelGroup, osGroup, cpuGroup, ramGroup, ssd1Group, ssd2Group].forEach(g => { if(g) g.style.display = 'none'; });
locationFields.forEach(el => (el as HTMLElement).style.display = 'none');
if (etcGroup) etcGroup.style.display = 'none';
if (type === '서버') {
[modelGroup, osGroup, cpuGroup, ramGroup, ssd1Group, ssd2Group].forEach(g => { if(g) g.style.display = 'flex'; });
locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
}
else if (['스토리지', 'NAS', 'DAS'].includes(type)) {
[modelGroup, ssd1Group, ssd2Group].forEach(g => { if(g) g.style.display = 'flex'; });
locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
}
else if (type === 'PC' || type === '노트북') {
[modelGroup, osGroup, cpuGroup, ramGroup, ssd1Group, ssd2Group].forEach(g => { if(g) g.style.display = 'flex'; });
if (detailPurpose === '서버') {
locationFields.forEach(el => (el as HTMLElement).style.display = 'flex');
}
}
else if (['CPU', 'GPU', '모바일'].includes(type)) {
if (modelGroup) modelGroup.style.display = 'flex';
}
else if (type === 'RAM') {
if (ramGroup) ramGroup.style.display = 'flex';
}
else if (type === 'HDD') {
if (ssd1Group) ssd1Group.style.display = 'flex';
}
else if (type === '태블릿') {
if (modelGroup) modelGroup.style.display = 'flex';
if (ssd1Group) ssd1Group.style.display = 'flex';
}
}
function fillFormData(asset: HardwareAsset) {
setFieldValue('pc-asset-id', asset.id);
setFieldValue('pc-법인', asset.);
setFieldValue('pc-자산코드', asset.);
setFieldValue('pc-유형', asset.type);
setFieldValue('pc-사용자', asset.);
setFieldValue('pc-현사용조직', asset.);
setFieldValue('pc-이전사용조직', asset.);
setFieldValue('pc-상세용도', (asset as any).);
parseAndSetLocation(asset., 'pc-위치-빌딩', 'pc-위치-상세', 'pc-위치-기타-group', 'pc-위치-기타');
setFieldValue('pc-모델명', asset.);
setFieldValue('pc-OS', asset.OS);
setFieldValue('pc-CPU', asset.CPU);
setFieldValue('pc-RAM', asset.RAM);
setFieldValue('pc-SSD1', asset.SSD1);
setFieldValue('pc-SSD2', asset.SSD2);
setFieldValue('pc-구매일', asset.);
setFieldValue('pc-금액', asset.);
setFieldValue('pc-납품업체', asset.);
setFieldValue('pc-품의서명', asset.);
}
export function initPcModal(onSave: () => void, closeModalsCb: () => void) {
if (!document.getElementById('pc-asset-modal')) { if (!document.getElementById('pc-asset-modal')) {
document.body.insertAdjacentHTML('beforeend', PC_MODAL_HTML); document.body.insertAdjacentHTML('beforeend', PC_MODAL_HTML);
} }
const pcForm = document.getElementById('pc-asset-form') as HTMLFormElement; const pcForm = document.getElementById('pc-asset-form') as HTMLFormElement;
const btnRevertEdit = document.getElementById('btn-revert-pc-edit') as HTMLButtonElement; const saveBtn = document.getElementById('btn-save-pc-asset');
const btnSavePc = document.getElementById('btn-save-pc-asset') as HTMLButtonElement; const revertBtn = document.getElementById('btn-revert-pc-edit');
const btnDeletePc = document.getElementById('btn-delete-pc-asset') as HTMLButtonElement; const deleteBtn = document.getElementById('btn-delete-pc-asset');
const btnCloseHeader = document.getElementById('btn-close-pc-modal') as HTMLButtonElement;
const btnCloseFooter = document.getElementById('btn-close-pc-footer') as HTMLButtonElement;
let isEditMode = false; // 유형 및 상세용도 리스너
let currentAsset: HardwareAsset | null = null; const typeSelect = document.getElementById('pc-유형') as HTMLSelectElement;
const detailPurposeSelect = document.getElementById('pc-상세용도') as HTMLSelectElement;
[typeSelect, detailPurposeSelect].forEach(el => {
el?.addEventListener('change', () => applyPcTypeSpecificUI());
});
const setEditMode = (edit: boolean) => { bindLocationEvents('pc-위치-빌딩', 'pc-위치-상세', 'pc-위치-기타-group', 'pc-위치-기타');
isEditMode = edit;
if (edit) {
pcForm.classList.add('is-edit-mode');
pcForm.classList.remove('is-view-mode');
btnSavePc.textContent = '저장';
btnRevertEdit.classList.remove('hidden');
btnCloseFooter.classList.add('hidden');
} else {
pcForm.classList.add('is-view-mode');
pcForm.classList.remove('is-edit-mode');
btnSavePc.textContent = '수정';
btnRevertEdit.classList.add('hidden');
btnCloseFooter.classList.remove('hidden');
if (currentAsset) fillFormData(currentAsset);
}
};
function fillFormData(asset: HardwareAsset) { const handleClose = () => { closeModalsCb(); isEditMode = false; };
(document.getElementById('pc-asset-id') as HTMLInputElement).value = asset.id; document.getElementById('btn-close-pc-modal')?.addEventListener('click', handleClose);
(document.getElementById('pc-법인') as HTMLSelectElement).value = asset.; document.getElementById('btn-cancel-pc-modal')?.addEventListener('click', handleClose);
(document.getElementById('pc-자산코드') as HTMLInputElement).value = asset.; revertBtn?.addEventListener('click', () => {
(document.getElementById('pc-사용자') as HTMLInputElement).value = asset. || ''; isEditMode = false;
(document.getElementById('pc-위치') as HTMLInputElement).value = asset. || ''; pcForm.classList.replace('is-edit-mode', 'is-view-mode');
(document.getElementById('pc-CPU') as HTMLInputElement).value = asset.CPU || ''; if (saveBtn) saveBtn.textContent = '수정';
(document.getElementById('pc-GPU') as HTMLInputElement).value = asset.GPU || ''; revertBtn.classList.add('hidden');
(document.getElementById('pc-RAM') as HTMLInputElement).value = asset.RAM || ''; if (currentAsset) fillFormData(currentAsset);
(document.getElementById('pc-SSD1') as HTMLInputElement).value = asset.SSD1 || ''; });
(document.getElementById('pc-SSD2') as HTMLInputElement).value = asset.SSD2 || '';
(document.getElementById('pc-HDD1') as HTMLInputElement).value = asset.HDD1 || '';
(document.getElementById('pc-HDD2') as HTMLInputElement).value = asset.HDD2 || '';
(document.getElementById('pc-구매일') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-금액') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-납품업체') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-품의서명') as HTMLElement).innerText = asset. ? `첨부: ${asset.}` : '';
}
btnRevertEdit?.addEventListener('click', () => setEditMode(false)); saveBtn?.addEventListener('click', () => {
btnCloseHeader?.addEventListener('click', closeModals); if (!currentAsset) return;
btnCloseFooter?.addEventListener('click', closeModals);
btnSavePc?.addEventListener('click', (e) => {
e.preventDefault();
if (!isEditMode) { if (!isEditMode) {
setEditMode(true); isEditMode = true;
pcForm.classList.replace('is-view-mode', 'is-edit-mode');
saveBtn.textContent = '저장';
revertBtn?.classList.remove('hidden');
return; return;
} }
if (!pcForm.checkValidity()) { pcForm.reportValidity(); return; }
// ... (저장 로직 유지)
e.preventDefault();
if (!pcForm.checkValidity()) { pcForm.reportValidity(); return; }
const id = (document.getElementById('pc-asset-id') as HTMLInputElement).value;
const fileInput = document.getElementById('pc-품의서') as HTMLInputElement;
const = fileInput.files && fileInput.files.length > 0 ? fileInput.files[0].name : (document.getElementById('pc-품의서명') as HTMLElement).innerText.replace('첨부: ', '');
const newAsset: HardwareAsset = { const type = getFieldValue('pc-유형');
id: id || Math.random().toString(36).substring(2, 9), const detailPurpose = getFieldValue('pc-상세용도');
type: '개인PC',
: (document.getElementById('pc-법인') as HTMLSelectElement).value, const updated: any = {
: (document.getElementById('pc-자산코드') as HTMLInputElement).value, ...currentAsset,
: '', 법인: getFieldValue('pc-법인'),
: (document.getElementById('pc-위치') as HTMLInputElement).value, 자산코드: getFieldValue('pc-자산코드'),
: '', IP주소: '', MACaddress: '', HW사양: '', OS: '', : (document.getElementById('pc-납품업체') as HTMLInputElement).value, 현사용조직: getFieldValue('pc-현사용조직'),
: (document.getElementById('pc-사용자') as HTMLInputElement).value, 이전사용조직: getFieldValue('pc-이전사용조직'),
CPU: (document.getElementById('pc-CPU') as HTMLInputElement).value, 사용자: getFieldValue('pc-사용자'),
GPU: (document.getElementById('pc-GPU') as HTMLInputElement).value, 상세용도: detailPurpose,
RAM: (document.getElementById('pc-RAM') as HTMLInputElement).value, 위치: getCombinedLocation('pc-위치-빌딩', 'pc-위치-상세', 'pc-위치-기타'),
SSD1: (document.getElementById('pc-SSD1') as HTMLInputElement).value, 모델명: getFieldValue('pc-모델명'),
SSD2: (document.getElementById('pc-SSD2') as HTMLInputElement).value, OS: getFieldValue('pc-OS'),
HDD1: (document.getElementById('pc-HDD1') as HTMLInputElement).value, CPU: getFieldValue('pc-CPU'),
HDD2: (document.getElementById('pc-HDD2') as HTMLInputElement).value, RAM: getFieldValue('pc-RAM'),
: (document.getElementById('pc-구매일') as HTMLInputElement).value, SSD1: getFieldValue('pc-SSD1'),
: (document.getElementById('pc-금액') as HTMLInputElement).value, SSD2: getFieldValue('pc-SSD2'),
구매일: getFieldValue('pc-구매일'),
금액: getFieldValue('pc-금액'),
납품업체: getFieldValue('pc-납품업체'),
type: type || 'PC'
}; };
if (id) { saveHardwareAsset(updated);
const idx = state.masterData.hw.findIndex(a => a.id === id); onSave();
if(idx !== -1) { isEditMode = false;
const oldAsset = state.masterData.hw[idx]; pcForm.classList.replace('is-edit-mode', 'is-view-mode');
const changes = getChangeDetails(oldAsset, newAsset); saveBtn.textContent = '수정';
if (changes) { revertBtn?.classList.add('hidden');
state.masterData.logs.push({
id: Math.random().toString(36).substring(2, 9),
assetId: id,
date: new Date().toLocaleString(),
details: changes,
user: '관리자'
});
}
state.masterData.hw[idx] = newAsset;
}
} else {
state.masterData.hw.push(newAsset);
}
closeModals();
renderContent();
}); });
btnDeletePc?.addEventListener('click', (e) => { deleteBtn?.addEventListener('click', () => {
e.preventDefault(); if (!currentAsset) return;
const id = (document.getElementById('pc-asset-id') as HTMLInputElement).value;
if (confirm('삭제하시겠습니까?')) { if (confirm('삭제하시겠습니까?')) {
state.masterData.hw = state.masterData.hw.filter(a => a.id !== id); deleteHardwareAsset(currentAsset.id);
closeModals(); onSave();
renderContent(); handleClose();
} }
}); });
} }
export function openPcModal(asset?: HardwareAsset) {
const pcForm = document.getElementById('pc-asset-form') as HTMLFormElement;
const deleteBtn = document.getElementById('btn-delete-pc-asset')!;
const historyArea = document.querySelector('.modal-history-area') as HTMLElement;
openModal('pc-asset-modal');
pcForm.reset();
if (asset) {
document.getElementById('pc-modal-title')!.textContent = '개인PC 상세 정보 수정';
deleteBtn.style.display = 'block';
if (historyArea) historyArea.style.display = 'flex';
(document.getElementById('pc-asset-id') as HTMLInputElement).value = asset.id;
(document.getElementById('pc-법인') as HTMLSelectElement).value = asset.;
(document.getElementById('pc-자산코드') as HTMLInputElement).value = asset.;
(document.getElementById('pc-사용자') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-위치') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-CPU') as HTMLInputElement).value = asset.CPU || '';
(document.getElementById('pc-GPU') as HTMLInputElement).value = asset.GPU || '';
(document.getElementById('pc-RAM') as HTMLInputElement).value = asset.RAM || '';
(document.getElementById('pc-SSD1') as HTMLInputElement).value = asset.SSD1 || '';
(document.getElementById('pc-SSD2') as HTMLInputElement).value = asset.SSD2 || '';
(document.getElementById('pc-HDD1') as HTMLInputElement).value = asset.HDD1 || '';
(document.getElementById('pc-HDD2') as HTMLInputElement).value = asset.HDD2 || '';
(document.getElementById('pc-구매일') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-금액') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-납품업체') as HTMLInputElement).value = asset. || '';
(document.getElementById('pc-품의서명') as HTMLElement).innerText = asset. ? `첨부: ${asset.}` : '';
renderHistory(asset.id);
} else {
document.getElementById('pc-modal-title')!.textContent = '신규 개인PC 자산 추가';
deleteBtn.style.display = 'none';
if (historyArea) historyArea.style.display = 'none';
(document.getElementById('pc-asset-id') as HTMLInputElement).value = '';
(document.getElementById('pc-법인') as HTMLSelectElement).value = '한맥';
(document.getElementById('pc-품의서명') as HTMLElement).innerText = '';
}
}
function getChangeDetails(oldAsset: HardwareAsset, newAsset: HardwareAsset): string {
const changes: string[] = [];
const fields = [
{ key: '법인', label: '법인' },
{ key: '자산코드', label: '자산코드' },
{ key: '사용자', label: '사용자' },
{ key: '위치', label: '위치' },
{ key: 'CPU', label: 'CPU' },
{ key: 'GPU', label: 'GPU' },
{ key: 'RAM', label: 'RAM' },
{ key: 'SSD1', label: 'SSD1' },
{ key: 'SSD2', label: 'SSD2' },
{ key: 'HDD1', label: 'HDD1' },
{ key: 'HDD2', label: 'HDD2' },
{ key: '구매일', label: '구매일' },
{ key: '금액', label: '금액' },
{ key: '납품업체', label: '납품업체' },
{ key: '품의서명', label: '품의서' },
];
fields.forEach(field => {
const oldVal = (oldAsset as any)[field.key] || '';
const newVal = (newAsset as any)[field.key] || '';
if (oldVal !== newVal) {
changes.push(`${field.label}: ${oldVal || '없음'}${newVal || '없음'}`);
}
});
return changes.join('\n');
}
function renderHistory(assetId: string) { function renderHistory(assetId: string) {
const historyList = document.getElementById('pc-history-list'); const historyList = document.getElementById('pc-history-list');
if (!historyList) return; if (!historyList) return;
const logs = state.masterData.logs const logs = state.masterData.logs
.filter(l => l.assetId === assetId) .filter(l => l.assetId === assetId)
.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime()); .sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
if (logs.length === 0) { if (logs.length === 0) {
historyList.innerHTML = '<div class="empty-history">이력이 없습니다.</div>'; historyList.innerHTML = '<div class="empty-history">이력이 없습니다.</div>';
return; return;
} }
historyList.innerHTML = logs.map(log => ` historyList.innerHTML = logs.map(log => `
<div class="history-item"> <div class="history-item">
<div class="history-date">${log.date}</div> <div class="history-date">${log.date}</div>
<div class="history-user">수정자: ${log.user}</div> <div class="history-user">수정자: ${log.user}</div>
<div class="history-details">${log.details.replace(/\\n/g, '<br>')}</div> <div class="history-details">${log.details.replace(/\n/g, '<br>')}</div>
</div> </div>
`).join(''); `).join('');
} }

View File

@@ -1,13 +1,25 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { SoftwareAsset } from '../../core/excelHandler'; import { SoftwareAsset } from '../../core/excelHandler';
import { openModal } from './BaseModal'; import { openModal, closeModals } from './BaseModal';
import { createIcons, X, History, Plus } from 'lucide'; import { openSwUserModal } from './SWUserModal';
import { createIcons, History, Plus, X, Save, Edit2, RotateCcw, Calendar } from 'lucide';
import { CORP_LIST } from './SharedData';
import {
generateOptionsHTML,
setFieldValue,
getFieldValue,
setEditLock,
applyDateMask
} from './ModalUtils';
let currentSwAsset: SoftwareAsset | null = null;
let isEditMode = false;
const SW_MODAL_HTML = ` const SW_MODAL_HTML = `
<div id="sw-asset-modal" class="modal-overlay hidden"> <div id="sw-asset-modal" class="modal-overlay hidden">
<div class="modal-content wide"> <div class="modal-content wide">
<div class="modal-header"> <div class="modal-header">
<h2 id="sw-modal-title">S/W 상세 정보</h2> <h2 id="sw-modal-title">소프트웨어 상세 정보</h2>
<button id="btn-close-sw-modal" class="btn-icon" aria-label="닫기"><i data-lucide="x"></i></button> <button id="btn-close-sw-modal" class="btn-icon" aria-label="닫기"><i data-lucide="x"></i></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
@@ -16,70 +28,145 @@ const SW_MODAL_HTML = `
<form id="sw-asset-form" class="grid-form"> <form id="sw-asset-form" class="grid-form">
<input type="hidden" id="sw-asset-id" /> <input type="hidden" id="sw-asset-id" />
<input type="hidden" id="sw-asset-type" /> <input type="hidden" id="sw-asset-type" />
<!-- Group 1: 기본 정보 (Identity) -->
<div class="form-section-title">기본 정보 (Identity)</div>
<div class="form-group"> <div class="form-group">
<label for="sw-분야">분야</label> <label for="sw-분야">분야</label>
<select id="sw-분야" required> <select id="sw-분야" required>
<option value="업무공통">업무공통</option><option value="개발S/W">개발S/W</option><option value="디자인">디자인</option><option value="설계S/W">설계S/W</option> <option value="업무공통">업무공통</option>
<option value="개발S/W">개발S/W</option>
<option value="디자인">디자인</option>
<option value="설계S/W">설계S/W</option>
</select> </select>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="sw-법인">법인</label> <label for="sw-법인">법인</label>
<select id="sw-법인" required> <select id="sw-법인" required>${generateOptionsHTML(CORP_LIST)}</select>
<option value="한맥">한맥 (HM)</option><option value="삼안 (SM)">삼안 (SM)</option><option value="바론 (BR)">바론 (BR)</option> </div>
</select> <div class="form-group sw-standard-field">
<label for="sw-자산번호">자산번호</label>
<input type="text" id="sw-자산번호" readonly placeholder="자동 생성" />
</div>
<div class="form-group full-width">
<label for="sw-제품명">제품명 / 서비스명</label>
<input type="text" id="sw-제품명" required />
</div>
<div class="form-group cloud-only">
<label for="sw-플랫폼명">플랫폼명</label>
<input type="text" id="sw-플랫폼명" placeholder="예: AWS, Cafe24" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="sw-부서">부서</label> <label for="sw-부서">부서</label>
<input type="text" id="sw-부서" placeholder="ex) 경영지원팀" required /> <input type="text" id="sw-부서" />
</div> </div>
<div class="form-group">
<label for="sw-구매일">구매일</label> <!-- Group 2: 라이선스 및 계약 (License/Contract) -->
<input type="date" id="sw-구매일" /> <div class="form-section-title">라이선스 및 계약 정보</div>
<div class="form-group sw-standard-field" id="sw-license-type-group">
<label for="sw-라이선스유형">라이선스 유형</label>
<input type="text" id="sw-라이선스유형" />
</div> </div>
<div class="form-group" id="sw-구독일-group" style="grid-column: span 2;"> <div class="form-group sw-standard-field" id="sw-license-key-group">
<label>구독 기간</label> <label for="sw-라이선스키">라이선스 키</label>
<div style="display: flex; align-items: center; gap: 0.5rem;"> <input type="text" id="sw-라이선스키" />
<input type="date" id="sw-구독일-시작" style="flex: 1;" />
<span>~</span>
<input type="date" id="sw-구독일-종료" style="flex: 1;" />
</div>
</div> </div>
<div class="form-group" id="sw-유지보수-group" style="display:none;"> <div class="form-group sw-standard-field">
<label for="sw-유지보수여부">유지보수 여부</label> <label for="sw-수량">보유 수량</label>
<label style="display:flex; align-items:center; gap:0.5rem; height: 38px; cursor: pointer;"> <input type="number" id="sw-수량" min="0" />
<input type="checkbox" id="sw-유지보수여부" /> 대상 여부
</label>
</div> </div>
<div class="form-group"> <div class="form-group sw-standard-field">
<label for="sw-금액">금액</label> <label for="sw-금액">도입 금액</label>
<input type="text" id="sw-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\d))/g, ',')" /> <input type="text" id="sw-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\\d))/g, ',')" />
</div> </div>
<div class="form-group">
<label for="sw-수량">수량 (보유량)</label> <!-- Group 3: 클라우드 전용 정보 (Cloud Specific) -->
<input type="number" id="sw-수량" min="1" value="1" /> <div class="form-group cloud-only">
</div> <label for="sw-계정명">계정명 (이메일)</label>
<div class="form-group">
<label for="sw-계정명">계정명</label>
<input type="text" id="sw-계정명" /> <input type="text" id="sw-계정명" />
</div> </div>
<div class="form-group"> <div class="form-group cloud-only">
<label for="sw-결제수단">결제수단</label>
<select id="sw-결제수단">
<option value="">선택안함</option>
<option value="법인카드">법인카드</option>
<option value="인보이스">인보이스</option>
</select>
</div>
<div class="form-group cloud-only">
<label for="sw-연결카드번호">연결카드번호(뒷4자리)</label>
<input type="text" id="sw-연결카드번호" maxlength="4" />
</div>
<div class="form-group cloud-only">
<label for="sw-결제일">결제일 (기준일)</label>
<input type="number" id="sw-결제일" min="1" max="31" />
</div>
<div class="form-group cloud-only">
<label for="sw-당월청구액">당월 청구액(원)</label>
<input type="text" id="sw-당월청구액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\\d))/g, ',')" />
</div>
<!-- Group 4: 관리 정보 (Management) -->
<div class="form-section-title">관리 및 비고</div>
<div class="form-group sw-standard-field">
<label for="sw-구매일">구매일</label>
<div style="display:flex; gap:0.25rem; align-items:center; position:relative;">
<input type="text" id="sw-구매일" style="flex:1;" />
<button type="button" class="btn-icon" onclick="const p = document.getElementById('sw-구매일-picker'); p.value = document.getElementById('sw-구매일').value; p.showPicker();" style="padding:0.25rem;">
<i data-lucide="calendar" style="width:18px; height:18px; color:var(--primary-color);"></i>
</button>
<input type="date" id="sw-구매일-picker" style="position:absolute; width:0; height:0; opacity:0; pointer-events:none;" onchange="document.getElementById('sw-구매일').value = this.value" tabindex="-1" />
</div>
</div>
<div class="form-group sw-standard-field">
<label for="sw-납품업체">납품업체</label> <label for="sw-납품업체">납품업체</label>
<input type="text" id="sw-납품업체" /> <input type="text" id="sw-납품업체" />
</div> </div>
<div class="form-group sw-standard-field">
<label for="sw-시작일">시작일 (구독/유지보수)</label>
<div style="display:flex; gap:0.25rem; align-items:center; position:relative;">
<input type="text" id="sw-시작일" style="flex:1;" />
<button type="button" class="btn-icon" onclick="const p = document.getElementById('sw-시작일-picker'); p.value = document.getElementById('sw-시작일').value; p.showPicker();" style="padding:0.25rem;">
<i data-lucide="calendar" style="width:18px; height:18px; color:var(--primary-color);"></i>
</button>
<input type="date" id="sw-시작일-picker" style="position:absolute; width:0; height:0; opacity:0; pointer-events:none;" onchange="document.getElementById('sw-시작일').value = this.value" tabindex="-1" />
</div>
</div>
<div class="form-group sw-standard-field" id="sw-expiry-group">
<label for="sw-만료일">만료일 (종료일)</label>
<div style="display:flex; gap:0.25rem; align-items:center; position:relative;">
<input type="text" id="sw-만료일" style="flex:1;" />
<button type="button" class="btn-icon" onclick="const p = document.getElementById('sw-만료일-picker'); p.value = document.getElementById('sw-만료일').value; p.showPicker();" style="padding:0.25rem;">
<i data-lucide="calendar" style="width:18px; height:18px; color:var(--primary-color);"></i>
</button>
<input type="date" id="sw-만료일-picker" style="position:absolute; width:0; height:0; opacity:0; pointer-events:none;" onchange="document.getElementById('sw-만료일').value = this.value" tabindex="-1" />
</div>
</div>
<div class="form-group full-width"> <div class="form-group full-width">
<label for="sw-비고">비고</label> <label for="sw-비고">비고</label>
<input type="text" id="sw-비고" /> <textarea id="sw-비고" rows="2"></textarea>
</div> </div>
</form> </form>
<div id="sw-user-section" class="user-management-section" style="margin-top: 2rem;">
<div class="section-header" style="display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem;">
<h3 style="font-size:1rem; font-weight:600;">사용자 할당 현황</h3>
<button type="button" id="btn-open-sw-user" class="btn btn-outline btn-sm">
할당 관리 <i data-lucide="users" style="width:14px; height:14px;"></i>
</button>
</div>
<div id="sw-assigned-users-summary" class="user-summary-grid"></div>
</div>
</div> </div>
<div class="modal-history-area"> <div class="modal-history-area">
<div class="history-header" style="display:flex; justify-content:space-between; align-items:center;"> <div class="history-header" style="display:flex; justify-content:space-between; align-items:center;">
<h3><i data-lucide="history" style="width:16px; height:16px;"></i> 업데이트 내역</h3> <h3><i data-lucide="history" style="width:16px; height:16px;"></i> 업데이트 내역</h3>
<button type="button" id="btn-open-sw-update" class="btn btn-outline btn-sm"><i data-lucide="plus" style="width:14px;height:14px;"></i> 업데이트 추가</button> <button type="button" id="btn-open-sw-update" class="btn btn-outline btn-sm">
</div> 계약 업데이트 <i data-lucide="refresh-ccw" style="width:14px; height:14px;"></i>
<div id="sw-history-list" class="history-timeline"> </button>
<div class="empty-history">내역이 없습니다.</div>
</div> </div>
<div id="sw-history-list" class="history-timeline"></div>
</div> </div>
</div> </div>
</div> </div>
@@ -87,13 +174,14 @@ const SW_MODAL_HTML = `
<button id="btn-delete-sw-asset" class="btn btn-outline btn-danger">삭제</button> <button id="btn-delete-sw-asset" class="btn btn-outline btn-danger">삭제</button>
<div class="footer-actions"> <div class="footer-actions">
<button id="btn-revert-sw-edit" class="btn btn-outline hidden">수정 취소</button> <button id="btn-revert-sw-edit" class="btn btn-outline hidden">수정 취소</button>
<button id="btn-close-sw-footer" class="btn btn-outline">닫기</button> <button id="btn-cancel-sw-modal" class="btn btn-outline">닫기</button>
<button id="btn-save-sw-asset" class="btn btn-primary">수정</button> <button id="btn-save-sw-asset" class="btn btn-primary">수정</button>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- 계약/유지보수 기간 갱신 및 업데이트 모달 -->
<div id="sw-update-modal" class="modal-overlay hidden" style="z-index: 1100;"> <div id="sw-update-modal" class="modal-overlay hidden" style="z-index: 1100;">
<div class="modal-content" style="max-width: 400px;"> <div class="modal-content" style="max-width: 400px;">
<div class="modal-header"> <div class="modal-header">
@@ -107,11 +195,11 @@ const SW_MODAL_HTML = `
<input type="date" id="sw-update-date" /> <input type="date" id="sw-update-date" />
</div> </div>
<div class="form-group sub-sw-update"> <div class="form-group sub-sw-update">
<label>새로운 구독 기간</label> <label>새로운 계약 기간</label>
<div style="display: flex; align-items: center; gap: 0.5rem;"> <div style="display: flex; align-items: center; gap: 0.5rem;">
<input type="date" id="sw-update-start" style="flex: 1;" /> <input type="text" id="sw-update-start" placeholder="YYYY-MM-DD" style="flex: 1;" />
<span>~</span> <span>~</span>
<input type="date" id="sw-update-end" style="flex: 1;" /> <input type="text" id="sw-update-end" placeholder="YYYY-MM-DD" style="flex: 1;" />
</div> </div>
</div> </div>
<div class="form-group perm-sw-update" style="display:none;"> <div class="form-group perm-sw-update" style="display:none;">
@@ -122,7 +210,7 @@ const SW_MODAL_HTML = `
</div> </div>
<div class="form-group"> <div class="form-group">
<label>발생 비용</label> <label>발생 비용</label>
<input type="text" id="sw-update-cost" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\d))/g, ',')" placeholder="ex) 500,000" /> <input type="text" id="sw-update-cost" oninput="this.value = this.value.replace(/[^0-9]/g, '') ? Number(this.value.replace(/[^0-9]/g, '')).toLocaleString() : ''" placeholder="ex) 500,000" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label>상세 내용 (메모)</label> <label>상세 내용 (메모)</label>
@@ -141,132 +229,230 @@ const SW_MODAL_HTML = `
</div> </div>
`; `;
export let currentAsset: SoftwareAsset | null = null; function applySwTypeUI(type: string) {
export let isEditMode = false; const cloudFields = document.querySelectorAll('.cloud-only');
const swFields = document.querySelectorAll('.sw-standard-field');
const userSection = document.getElementById('sw-user-section');
const keyGroup = document.getElementById('sw-license-key-group');
const typeGroup = document.getElementById('sw-license-type-group');
const expiryGroup = document.getElementById('sw-expiry-group');
export function setEditMode(edit: boolean) { if (type === '클라우드') {
isEditMode = edit; cloudFields.forEach(el => (el as HTMLElement).style.display = 'flex');
const swForm = document.getElementById('sw-asset-form') as HTMLFormElement; swFields.forEach(el => (el as HTMLElement).style.display = 'none');
const btnSaveSw = document.getElementById('btn-save-sw-asset') as HTMLButtonElement; if (userSection) userSection.style.display = 'none';
const btnRevertEdit = document.getElementById('btn-revert-sw-edit') as HTMLButtonElement;
const btnCloseFooter = document.getElementById('btn-close-sw-footer') as HTMLButtonElement;
if (edit) {
swForm.classList.add('is-edit-mode');
swForm.classList.remove('is-view-mode');
btnSaveSw.textContent = '저장';
btnRevertEdit.classList.remove('hidden');
btnCloseFooter.classList.add('hidden');
} else { } else {
swForm.classList.add('is-view-mode'); cloudFields.forEach(el => (el as HTMLElement).style.display = 'none');
swForm.classList.remove('is-edit-mode'); swFields.forEach(el => (el as HTMLElement).style.display = 'flex');
btnSaveSw.textContent = '수정'; if (userSection) userSection.style.display = 'block';
btnRevertEdit.classList.add('hidden');
btnCloseFooter.classList.remove('hidden'); if (type === '구독SW') {
if (currentAsset) fillFormData(currentAsset); if (keyGroup) keyGroup.style.display = 'none';
if (typeGroup) typeGroup.style.display = 'flex';
if (expiryGroup) expiryGroup.style.display = 'flex';
} else {
if (keyGroup) keyGroup.style.display = 'flex';
if (typeGroup) typeGroup.style.display = 'none';
if (expiryGroup) expiryGroup.style.display = 'flex';
}
} }
} }
export function fillFormData(asset: SoftwareAsset) { function fillSwFormData(asset: SoftwareAsset) {
(document.getElementById('sw-asset-id') as HTMLInputElement).value = asset.id; setFieldValue('sw-asset-id', asset.id);
(document.getElementById('sw-asset-type') as HTMLInputElement).value = asset.type; setFieldValue('sw-asset-type', asset.type);
(document.getElementById('sw-분야') as HTMLSelectElement).value = asset. || '업무공통'; setFieldValue('sw-분야', asset. || '업무공통');
(document.getElementById('sw-법인') as HTMLSelectElement).value = asset.; setFieldValue('sw-법인', asset.);
(document.getElementById('sw-부서') as HTMLInputElement).value = asset. || ''; setFieldValue('sw-자산번호', asset. || '');
(document.getElementById('sw-제품명') as HTMLInputElement).value = asset.; setFieldValue('sw-부서', asset. || '');
(document.getElementById('sw-구매일') as HTMLInputElement).value = asset. || ''; setFieldValue('sw-제품명', asset.);
setFieldValue('sw-수량', asset.);
if (asset.) { setFieldValue('sw-금액', asset.);
const parts = asset..split('~'); setFieldValue('sw-구매일', asset. || '');
(document.getElementById('sw-구독일-시작') as HTMLInputElement).value = parts[0]?.trim() || ''; setFieldValue('sw-시작', asset. || '');
(document.getElementById('sw-구독일-종료') as HTMLInputElement).value = parts[1]?.trim() || ''; setFieldValue('sw-납품업체', asset. || '');
} else { setFieldValue('sw-비고', asset. || '');
(document.getElementById('sw-구독일-시작') as HTMLInputElement).value = '';
(document.getElementById('sw-구독일-종료') as HTMLInputElement).value = '';
}
(document.getElementById('sw-유지보수여부') as HTMLInputElement).checked = !!asset.;
(document.getElementById('sw-금액') as HTMLInputElement).value = asset. || '';
(document.getElementById('sw-수량') as HTMLInputElement).value = String(asset.);
(document.getElementById('sw-계정명') as HTMLInputElement).value = asset. || '';
(document.getElementById('sw-납품업체') as HTMLInputElement).value = asset. || '';
(document.getElementById('sw-비고') as HTMLInputElement).value = asset. || '';
document.getElementById('btn-open-sw-update')!.style.display = 'flex'; if (asset.type === '클라우드') {
setFieldValue('sw-플랫폼명', (asset as any). || '');
setFieldValue('sw-계정명', (asset as any). || '');
setFieldValue('sw-결제수단', (asset as any). || '');
setFieldValue('sw-연결카드번호', (asset as any). || '');
setFieldValue('sw-결제일', (asset as any). || '');
setFieldValue('sw-당월청구액', (asset as any). || '');
} else if (asset.type === '구독SW') {
setFieldValue('sw-라이선스유형', (asset as any). || '');
setFieldValue('sw-만료일', (asset as any). || '');
} else {
setFieldValue('sw-라이선스키', (asset as any). || '');
}
renderUserSummary(asset.id);
renderSwHistory(asset.id); renderSwHistory(asset.id);
} }
export function initSwModal(renderContent: () => void, closeModals: () => void) { function renderUserSummary(swId: string) {
const container = document.getElementById('sw-assigned-users-summary');
if (!container) return;
const userMapping = state.masterData.swUsers.find(u => u.sw_id === swId);
if (!userMapping || !userMapping.userData || userMapping.userData.length === 0) {
container.innerHTML = '<div class="empty-summary">할당된 사용자가 없습니다.</div>';
return;
}
container.innerHTML = userMapping.userData.map(u => `
<div class="user-badge-item">
<span class="u-name">${u[3] || '이름없음'}</span>
<span class="u-dept">${u[1] || '부서없음'}</span>
</div>
`).join('');
}
function renderSwHistory(swId: string) {
const container = document.getElementById('sw-history-list');
if (!container) return;
const logs = (state.masterData.logs || []).filter(l => l.assetId === swId);
if (logs.length === 0) {
container.innerHTML = '<div class="empty-history">수정 이력이 없습니다.</div>';
return;
}
container.innerHTML = logs.map(l => `
<div class="history-item">
<div class="history-date">${l.date}</div>
<div class="history-user">${l.user}</div>
<div class="history-details">${l.details}</div>
</div>
`).join('');
}
export function openSwModal(asset: SoftwareAsset, mode: 'view' | 'add' | 'edit' = 'view') {
currentSwAsset = asset;
const modal = document.getElementById('sw-asset-modal')!;
// 수정 잠금 상태 제어
setEditLock('sw-asset-form', mode, {
saveBtnId: 'btn-save-sw-asset',
revertBtnId: 'btn-revert-sw-edit'
});
isEditMode = (mode === 'add' || mode === 'edit');
fillSwFormData(asset);
applySwTypeUI(asset.type);
modal.classList.remove('hidden');
createIcons({ icons: { X, History, Plus } });
}
export function initSwModal(onSave: () => void, closeModals: () => void) {
if (!document.getElementById('sw-asset-modal')) { if (!document.getElementById('sw-asset-modal')) {
document.body.insertAdjacentHTML('beforeend', SW_MODAL_HTML); document.body.insertAdjacentHTML('beforeend', SW_MODAL_HTML);
} }
const swForm = document.getElementById('sw-asset-form') as HTMLFormElement; const form = document.getElementById('sw-asset-form') as HTMLFormElement;
const btnRevertEdit = document.getElementById('btn-revert-sw-edit') as HTMLButtonElement; const saveBtn = document.getElementById('btn-save-sw-asset')!;
const btnSaveSw = document.getElementById('btn-save-sw-asset') as HTMLButtonElement; const revertBtn = document.getElementById('btn-revert-sw-edit')!;
const btnDeleteSw = document.getElementById('btn-delete-sw-asset') as HTMLButtonElement; const deleteBtn = document.getElementById('btn-delete-sw-asset')!;
const btnCloseHeader = document.getElementById('btn-close-sw-modal') as HTMLButtonElement; const userAssignBtn = document.getElementById('btn-open-sw-user')!;
const btnCloseFooter = document.getElementById('btn-close-sw-footer') as HTMLButtonElement; const btnOpenUpdate = document.getElementById('btn-open-sw-update')!;
btnRevertEdit?.addEventListener('click', () => setEditMode(false)); // 날짜 스마트 마스킹 적용
btnCloseHeader?.addEventListener('click', closeModals); ['sw-구매일', 'sw-시작일', 'sw-만료일', 'sw-update-start', 'sw-update-end'].forEach(id => {
btnCloseFooter?.addEventListener('click', closeModals); applyDateMask(document.getElementById(id) as HTMLInputElement);
});
btnSaveSw?.addEventListener('click', (e) => { createIcons({ icons: { Calendar } });
e.preventDefault();
const closeModalAction = () => { closeModals(); isEditMode = false; };
document.getElementById('btn-close-sw-modal')?.addEventListener('click', closeModalAction);
document.getElementById('btn-cancel-sw-modal')?.addEventListener('click', closeModalAction);
revertBtn.addEventListener('click', () => {
setEditLock('sw-asset-form', 'view', {
saveBtnId: 'btn-save-sw-asset',
revertBtnId: 'btn-revert-sw-edit'
});
isEditMode = false;
if (currentSwAsset) fillSwFormData(currentSwAsset);
});
saveBtn.addEventListener('click', () => {
if (!currentSwAsset) return;
if (!isEditMode) { if (!isEditMode) {
setEditMode(true); setEditLock('sw-asset-form', 'edit', {
saveBtnId: 'btn-save-sw-asset',
revertBtnId: 'btn-revert-sw-edit'
});
isEditMode = true;
return; return;
} }
if (!swForm.checkValidity()) { swForm.reportValidity(); return; }
const id = (document.getElementById('sw-asset-id') as HTMLInputElement).value;
const start = (document.getElementById('sw-구독일-시작') as HTMLInputElement).value;
const end = (document.getElementById('sw-구독일-종료') as HTMLInputElement).value;
const Str = (start || end) ? `${start || ''} ~ ${end || ''}` : '';
const newAsset: SoftwareAsset = { const type = getFieldValue('sw-asset-type');
id: id || Math.random().toString(36).substring(2, 9), const updated: any = {
type: (document.getElementById('sw-asset-type') as HTMLInputElement).value, ...currentSwAsset,
: (document.getElementById('sw-분야') as HTMLSelectElement).value, 분야: getFieldValue('sw-분야'),
: (document.getElementById('sw-법인') as HTMLSelectElement).value, 법인: getFieldValue('sw-법인'),
: (document.getElementById('sw-부서') as HTMLInputElement).value, 부서: getFieldValue('sw-부서'),
: (document.getElementById('sw-제품명') as HTMLInputElement).value, 자산번호: getFieldValue('sw-자산번호'),
: (document.getElementById('sw-구매일') as HTMLInputElement).value, 제품명: getFieldValue('sw-제품명'),
구독일: 구독일Str, 수량: parseInt(getFieldValue('sw-수량') || '0'),
: (document.getElementById('sw-유지보수여부') as HTMLInputElement).checked, 금액: getFieldValue('sw-금액'),
: (document.getElementById('sw-금액') as HTMLInputElement).value, 구매일: getFieldValue('sw-구매일'),
수량: parseInt((document.getElementById('sw-수량') as HTMLInputElement).value || '1', 10), 시작일: getFieldValue('sw-시작일'),
: (document.getElementById('sw-계정명') as HTMLInputElement).value, 납품업체: getFieldValue('sw-납품업체'),
: (document.getElementById('sw-납품업체') as HTMLInputElement).value, 비고: getFieldValue('sw-비고'),
: (document.getElementById('sw-비고') as HTMLInputElement).value, type: type
}; };
if (id) { if (type === '클라우드') {
const idx = state.masterData.sw.findIndex(a => a.id === id); updated. = getFieldValue('sw-플랫폼명');
if(idx !== -1) state.masterData.sw[idx] = newAsset; updated. = getFieldValue('sw-계정명');
updated. = getFieldValue('sw-결제수단');
updated. = getFieldValue('sw-연결카드번호');
updated. = getFieldValue('sw-결제일');
updated. = getFieldValue('sw-당월청구액');
} else if (type === '구독SW') {
updated. = getFieldValue('sw-라이선스유형');
updated. = getFieldValue('sw-만료일');
} else { } else {
state.masterData.sw.push(newAsset); updated. = getFieldValue('sw-라이선스키');
} }
closeModals(); // 데이터 저장 로직 (state 업데이트)
renderContent(); let targetList: SoftwareAsset[] = [];
if (type === '구독SW') targetList = state.masterData.subSw;
else if (type === '영구SW') targetList = state.masterData.permSw;
else if (type === '클라우드') targetList = state.masterData.cloud;
const idx = targetList.findIndex(a => a.id === updated.id);
if (idx > -1) targetList[idx] = updated;
else targetList.push(updated);
onSave();
setEditLock('sw-asset-form', 'view', {
saveBtnId: 'btn-save-sw-asset',
revertBtnId: 'btn-revert-sw-edit'
});
isEditMode = false;
}); });
btnDeleteSw?.addEventListener('click', (e) => { deleteBtn.addEventListener('click', () => {
e.preventDefault(); if (!currentSwAsset) return;
const id = (document.getElementById('sw-asset-id') as HTMLInputElement).value;
if (confirm('삭제하시겠습니까?')) { if (confirm('삭제하시겠습니까?')) {
state.masterData.sw = state.masterData.sw.filter(a => a.id !== id); const type = currentSwAsset.type;
closeModals(); if (type === '구독SW') state.masterData.subSw = state.masterData.subSw.filter(a => a.id !== currentSwAsset!.id);
renderContent(); else if (type === '영구SW') state.masterData.permSw = state.masterData.permSw.filter(a => a.id !== currentSwAsset!.id);
else if (type === '클라우드') state.masterData.cloud = state.masterData.cloud.filter(a => a.id !== currentSwAsset!.id);
onSave();
closeModalAction();
} }
}); });
// Update Sub-modal integration userAssignBtn.addEventListener('click', () => {
if (currentSwAsset) openSwUserModal(currentSwAsset);
});
// 자산 업데이트(계약 갱신) 모달 로직
const subModal = document.getElementById('sw-update-modal')!; const subModal = document.getElementById('sw-update-modal')!;
const btnOpenUpdate = document.getElementById('btn-open-sw-update')!;
const btnCloseUpdate = document.getElementById('btn-close-sw-update')!; const btnCloseUpdate = document.getElementById('btn-close-sw-update')!;
const btnCancelUpdate = document.getElementById('btn-cancel-sw-update')!; const btnCancelUpdate = document.getElementById('btn-cancel-sw-update')!;
const btnSaveUpdate = document.getElementById('btn-save-sw-update')!; const btnSaveUpdate = document.getElementById('btn-save-sw-update')!;
@@ -277,10 +463,14 @@ export function initSwModal(renderContent: () => void, closeModals: () => void)
btnOpenUpdate?.addEventListener('click', (e) => { btnOpenUpdate?.addEventListener('click', (e) => {
e.preventDefault(); e.preventDefault();
const isSub = (document.getElementById('sw-asset-type') as HTMLInputElement).value === '구독SW'; if (!isEditMode) {
alert('자산을 수정 모드로 변경한 후 업데이트를 진행해주세요.');
return;
}
const isSub = getFieldValue('sw-asset-type') === '구독SW';
subModal.classList.remove('hidden'); subModal.classList.remove('hidden');
// Set default values
(document.getElementById('sw-update-date') as HTMLInputElement).value = new Date().toISOString().substring(0, 10); (document.getElementById('sw-update-date') as HTMLInputElement).value = new Date().toISOString().substring(0, 10);
(document.getElementById('sw-update-start') as HTMLInputElement).value = ''; (document.getElementById('sw-update-start') as HTMLInputElement).value = '';
(document.getElementById('sw-update-end') as HTMLInputElement).value = ''; (document.getElementById('sw-update-end') as HTMLInputElement).value = '';
@@ -299,10 +489,7 @@ export function initSwModal(renderContent: () => void, closeModals: () => void)
btnSaveUpdate?.addEventListener('click', (e) => { btnSaveUpdate?.addEventListener('click', (e) => {
e.preventDefault(); e.preventDefault();
const id = (document.getElementById('sw-asset-id') as HTMLInputElement).value; const isSub = getFieldValue('sw-asset-type') === '구독SW';
if (!id) { alert('자산이 저장되지 않았습니다. 메인 폼을 먼저 저장해주세요.'); return; }
const isSub = (document.getElementById('sw-asset-type') as HTMLInputElement).value === '구독SW';
const date = (document.getElementById('sw-update-date') as HTMLInputElement).value; const date = (document.getElementById('sw-update-date') as HTMLInputElement).value;
const start = (document.getElementById('sw-update-start') as HTMLInputElement).value; const start = (document.getElementById('sw-update-start') as HTMLInputElement).value;
const end = (document.getElementById('sw-update-end') as HTMLInputElement).value; const end = (document.getElementById('sw-update-end') as HTMLInputElement).value;
@@ -312,94 +499,34 @@ export function initSwModal(renderContent: () => void, closeModals: () => void)
const periodStr = (start || end) ? `${start || ''} ~ ${end || ''}` : ''; const periodStr = (start || end) ? `${start || ''} ~ ${end || ''}` : '';
let details = `[업데이트] ${note || (isSub ? '구독 갱신' : '유지보수 계약')}\n`; let details = `[업데이트] ${note || (isSub ? '구독 갱신' : '유지보수 갱신')}\n`;
if (cost) details += `발생 비용: ${cost}\n`; if (cost) details += `비용 추가: ${cost}\n`;
if (isSub) { if (isSub) {
if (periodStr) details += `구독 변경: -> ${periodStr}\n`; if (periodStr) details += `계약 변경: -> ${periodStr}\n`;
// Always update main fields if period is provided // 메인 폼에 시작일 만료일 자동 세팅
if (periodStr) { if (start) setFieldValue('sw-시작일', start);
(document.getElementById('sw-구독일-시작') as HTMLInputElement).value = start; if (end) setFieldValue('sw-만료일', end);
(document.getElementById('sw-구독일-종료') as HTMLInputElement).value = end;
}
} else { } else {
details += `유지보수 상태: -> ${maintenance ? '유효' : '없음'}\n`; details += `유지보수 상태: -> ${maintenance ? '유효' : '만료'}\n`;
(document.getElementById('sw-유지보수여부') as HTMLInputElement).checked = maintenance; (document.getElementById('sw-유지보수여부') as HTMLInputElement).checked = maintenance;
} }
if (cost) (document.getElementById('sw-금액') as HTMLInputElement).value = cost; // 금액 갱신 (선택사항)
if (cost) setFieldValue('sw-금액', cost);
// 이력 탭 갱신 (메모리상)
if (!state.masterData.logs) state.masterData.logs = [];
state.masterData.logs.push({ state.masterData.logs.push({
id: Math.random().toString(36).substring(2, 9), id: Math.random().toString(36).substring(2, 9),
assetId: id, assetId: currentSwAsset ? currentSwAsset.id : 'NEW',
date, date,
details, details,
user: '관리자' user: '관리자'
}); });
closeUpdateModal(); closeUpdateModal();
renderSwHistory(id); renderSwHistory(currentSwAsset ? currentSwAsset.id : '');
// 메인 테이블 리렌더링도 트리거 (뒤에 보일 수 있게)
renderContent();
}); });
} }
function renderSwHistory(assetId: string) {
const historyList = document.getElementById('sw-history-list');
if (!historyList) return;
const logs = state.masterData.logs
.filter(l => l.assetId === assetId)
.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
if (logs.length === 0) {
historyList.innerHTML = '<div class="empty-history">업데이트 내역이 없습니다.</div>';
return;
}
historyList.innerHTML = logs.map(log => `
<div class="history-item">
<div class="history-date">${log.date}</div>
<div class="history-user">작업자: ${log.user}</div>
<div class="history-details">${log.details.replace(/\\n/g, '<br>')}</div>
</div>
`).join('');
createIcons({ icons: { X, History, Plus } });
}
export function openSwModal(asset?: SoftwareAsset) {
currentAsset = asset || null;
const swForm = document.getElementById('sw-asset-form') as HTMLFormElement;
const deleteBtn = document.getElementById('btn-delete-sw-asset')!;
openModal('sw-asset-modal');
swForm.reset();
const subGroup = document.getElementById('sw-구독일-group')!;
const permGroup = document.getElementById('sw-유지보수-group')!;
if (state.activeSubTab === '구독SW') {
subGroup.style.display = 'flex';
permGroup.style.display = 'none';
} else {
subGroup.style.display = 'none';
permGroup.style.display = 'flex';
}
if (asset) {
document.getElementById('sw-modal-title')!.textContent = `${state.activeSubTab} 상세 정보 수정`;
deleteBtn.style.display = 'block';
fillFormData(asset);
setEditMode(false);
} else {
document.getElementById('sw-modal-title')!.textContent = `신규 ${state.activeSubTab} 자산 추가`;
deleteBtn.style.display = 'none';
(document.getElementById('sw-asset-id') as HTMLInputElement).value = '';
(document.getElementById('sw-asset-type') as HTMLInputElement).value = state.activeSubTab;
document.getElementById('btn-open-sw-update')!.style.display = 'none';
renderSwHistory('');
setEditMode(true);
}
createIcons({ icons: { X, History, Plus } });
}

View File

@@ -1,74 +1,69 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { SoftwareAsset, SWUser } from '../../core/excelHandler'; import { SoftwareAsset, SWUser } from '../../core/excelHandler';
import { openModal } from './BaseModal'; import { openModal } from './BaseModal';
import { createIcons, Edit2, X, Paperclip } from 'lucide'; import { createIcons, Edit2, X, Paperclip, Calendar } from 'lucide';
import { CORP_LIST, ORG_LIST } from './SharedData';
import { generateOptionsHTML, setFieldValue, getFieldValue, applyDateMask } from './ModalUtils';
let currentSwUserAssetId: string = ''; let currentSwUserAsset: SoftwareAsset | null = null;
let tempSwUsers: SWUser[] = []; let tempSwUsers: any[] = [];
const SW_USER_MODAL_HTML = ` const SW_USER_MODAL_HTML = `
<!-- S/W 할당 사용자 목록 모달 -->
<div id="sw-user-modal" class="modal-overlay hidden"> <div id="sw-user-modal" class="modal-overlay hidden">
<div class="modal-content" style="max-width: 800px;"> <div class="modal-content wide">
<div class="modal-header"> <div class="modal-header">
<h2 id="sw-user-modal-title">S/W 할당 사용자 목록</h2> <h2 id="sw-user-title">소프트웨어 사용자 관리</h2>
<button id="btn-close-sw-user-modal" class="btn-icon" aria-label="닫기"><i data-lucide="x"></i></button> <button id="btn-close-sw-user-modal" class="btn-icon"><i data-lucide="x"></i></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<input type="hidden" id="sw-user-asset-id" /> <div class="sw-info-summary" id="sw-user-sw-info"></div>
<div style="text-align: right; margin-bottom: 0.75rem;">
<div class="user-list-toolbar" style="display:flex; justify-content:space-between; margin-bottom:1rem; align-items:center;">
<h3 style="font-size:1rem; font-weight:600;">할당된 사용자 목록</h3>
<button type="button" id="btn-open-add-user" class="btn btn-primary btn-sm"><i data-lucide="plus"></i> 사용자 추가</button> <button type="button" id="btn-open-add-user" class="btn btn-primary btn-sm"><i data-lucide="plus"></i> 사용자 추가</button>
</div> </div>
<div class="table-container"> <div class="table-container">
<table style="width:100%;"> <table>
<thead> <thead>
<tr> <tr>
<th>법인</th> <th>구매법인</th>
<th>부서/팀</th> <th>부서/팀</th>
<th>직위</th> <th>직위</th>
<th>이름</th> <th>이름</th>
<th>사용기간</th> <th>사용기간</th>
<th>증빙</th> <th>신청서</th>
<th style="text-align:center;">관리</th> <th>관리</th>
</tr> </tr>
</thead> </thead>
<tbody id="user-list-body"></tbody> <tbody id="sw-user-table-body"></tbody>
</table> </table>
</div> </div>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<div></div> <button id="btn-cancel-sw-user" class="btn btn-outline">취소</button>
<div class="footer-actions"> <button id="btn-save-sw-user" class="btn btn-primary">저장</button>
<button id="btn-save-sw-user-mapping" class="btn btn-primary">변경사항 저장</button>
<button id="btn-cancel-sw-user-modal" class="btn btn-outline">닫기</button>
</div>
</div> </div>
</div> </div>
</div> </div>
<!-- 사용자 추가/수정 서브 모달 --> <!-- 사용자 추가/수정 서브 모달 -->
<div id="sw-user-edit-modal" class="modal-overlay hidden" style="z-index: 1100;"> <div id="sw-user-edit-modal" class="modal-overlay hidden" style="z-index:1100;">
<div class="modal-content" style="max-width: 500px;"> <div class="modal-content" style="width:400px;">
<div class="modal-header"> <div class="modal-header">
<h2 id="sw-user-edit-modal-title">사용자 정보</h2> <h3 id="sw-user-edit-title">사용자 정보</h3>
<button id="btn-close-sw-user-edit" class="btn-icon"><i data-lucide="x"></i></button> <button id="btn-close-user-edit" class="btn-icon"><i data-lucide="x"></i></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<input type="hidden" id="edit-user-idx" /> <form id="sw-user-edit-form" class="grid-form" style="grid-template-columns: 1fr;">
<div class="grid-form" style="grid-template-columns: 1fr;"> <input type="hidden" id="edit-user-index" value="-1" />
<div class="form-group"> <div class="form-group">
<label>법인</label> <label>구매법인</label>
<select id="new-user-법인"> <select id="new-user-법인">${generateOptionsHTML(CORP_LIST)}</select>
<option value="한맥">한맥</option><option value="삼안">삼안</option><option value="바론">바론</option>
</select>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>부서</label> <label>부서/팀</label>
<input type="text" id="new-user-부서" /> <select id="new-user-부서">${generateOptionsHTML(ORG_LIST)}</select>
</div>
<div class="form-group">
<label>팀</label>
<input type="text" id="new-user-팀" />
</div> </div>
<div class="form-group"> <div class="form-group">
<label>직위</label> <label>직위</label>
@@ -79,157 +74,203 @@ const SW_USER_MODAL_HTML = `
<input type="text" id="new-user-이름" required /> <input type="text" id="new-user-이름" required />
</div> </div>
<div class="form-group"> <div class="form-group">
<label>사용기간</label> <label>사용 시작일</label>
<input type="text" id="new-user-사용기간" placeholder="ex) 2024.01 ~ 2024.12" /> <div style="display:flex; gap:0.25rem; align-items:center; position:relative;">
<input type="text" id="new-user-시작일" style="flex:1;" />
<button type="button" class="btn-icon" onclick="const p = document.getElementById('new-user-시작일-picker'); p.value = document.getElementById('new-user-시작일').value; p.showPicker();" style="padding:0.25rem;">
<i data-lucide="calendar" style="width:18px; height:18px; color:var(--primary-color);"></i>
</button>
<input type="date" id="new-user-시작일-picker" style="position:absolute; width:0; height:0; opacity:0; pointer-events:none;" onchange="document.getElementById('new-user-시작일').value = this.value" tabindex="-1" />
</div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>신청서 (증빙파일)</label> <label>사용 종료일</label>
<input type="file" id="new-user-신청서" /> <div style="display:flex; gap:0.25rem; align-items:center; position:relative;">
<span id="new-user-신청서명" style="font-size:0.75rem; color:var(--text-muted);"></span> <input type="text" id="new-user-종료일" style="flex:1;" />
<button type="button" class="btn-icon" onclick="const p = document.getElementById('new-user-종료일-picker'); p.value = document.getElementById('new-user-종료일').value; p.showPicker();" style="padding:0.25rem;">
<i data-lucide="calendar" style="width:18px; height:18px; color:var(--primary-color);"></i>
</button>
<input type="date" id="new-user-종료일-picker" style="position:absolute; width:0; height:0; opacity:0; pointer-events:none;" onchange="document.getElementById('new-user-종료일').value = this.value" tabindex="-1" />
</div>
</div> </div>
</div> <div class="form-group">
<label>신청서 (증빙)</label>
<input type="file" id="new-user-신청서" />
</div>
</form>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button id="btn-cancel-sw-user-edit" class="btn btn-outline">취소</button> <button id="btn-close-user-sub" class="btn btn-outline">취소</button>
<button id="btn-save-edit-user" class="btn btn-primary">확인</button> <button id="btn-confirm-user-edit" class="btn btn-primary">확인</button>
</div> </div>
</div> </div>
</div> </div>
`; `;
export function initSwUserModal(renderContent: () => void, closeModals: () => void) { export function openSwUserModal(asset: SoftwareAsset) {
currentSwUserAsset = asset;
const modal = document.getElementById('sw-user-modal')!;
const swInfo = document.getElementById('sw-user-sw-info')!;
swInfo.innerHTML = `
<div style="background:var(--bg-light); padding:1rem; border-radius:6px; margin-bottom:1.5rem;">
<div style="font-size:0.8rem; color:var(--text-muted); margin-bottom:0.25rem;">${asset.} | ${asset.}</div>
<div style="font-size:1.1rem; font-weight:700; color:var(--primary-color);">${asset.}</div>
</div>
`;
// 기존 사용자 데이터 복사 (원본 보호를 위해 temp 사용)
const existingMapping = state.masterData.swUsers.find(u => u.sw_id === asset.id);
tempSwUsers = existingMapping ? (existingMapping.userData || []).map((u: any) => ({
법인: u[0], 부서: u[1], 직위: u[2], 이름: u[3], 사용기간: u[4], 신청서명: u[5]
})) : [];
renderUserList();
modal.classList.remove('hidden');
createIcons({ icons: { Edit2, X, Paperclip } });
}
function renderUserList() {
const tbody = document.getElementById('sw-user-table-body')!;
tbody.innerHTML = '';
if (tempSwUsers.length === 0) {
tbody.innerHTML = '<tr><td colspan="7" style="text-align:center; padding:2rem; color:var(--text-muted);">할당된 사용자가 없습니다.</td></tr>';
return;
}
tempSwUsers.forEach((user, idx) => {
const tr = document.createElement('tr');
tr.innerHTML = `
<td>${user. || ''}</td>
<td>${user. || ''}</td>
<td>${user. || ''}</td>
<td>${user. || ''}</td>
<td>${user. || ''}</td>
<td style="text-align:center;">${user. ? '<i data-lucide="paperclip" class="text-primary"></i>' : '-'}</td>
<td>
<div style="display:flex; gap:0.5rem;">
<button class="btn btn-outline btn-sm btn-edit-user" data-idx="${idx}">수정</button>
<button class="btn btn-outline btn-sm btn-danger btn-del-user" data-idx="${idx}">삭제</button>
</div>
`;
tbody.appendChild(tr);
});
// 이벤트 연결
tbody.querySelectorAll('.btn-edit-user').forEach(btn => {
btn.addEventListener('click', (e) => {
const idx = parseInt((e.currentTarget as HTMLElement).getAttribute('data-idx')!);
openUserEditSubModal(idx);
});
});
tbody.querySelectorAll('.btn-del-user').forEach(btn => {
btn.addEventListener('click', (e) => {
const idx = parseInt((e.currentTarget as HTMLElement).getAttribute('data-idx')!);
if (confirm('사용자 할당을 삭제하시겠습니까?')) {
tempSwUsers.splice(idx, 1);
renderUserList();
}
});
});
createIcons({ icons: { Paperclip } });
}
function openUserEditSubModal(idx: number = -1) {
const subModal = document.getElementById('sw-user-edit-modal')!;
const form = document.getElementById('sw-user-edit-form') as HTMLFormElement;
form.reset();
setFieldValue('edit-user-index', idx);
if (idx > -1) {
const user = tempSwUsers[idx];
setFieldValue('new-user-법인', user.);
setFieldValue('new-user-부서', user.);
setFieldValue('new-user-직위', user.);
setFieldValue('new-user-이름', user.);
// 사용기간 파싱 (yyyy-mm-dd ~ yyyy-mm-dd)
if (user. && user..includes('~')) {
const parts = user..split('~');
setFieldValue('new-user-시작일', parts[0].trim());
setFieldValue('new-user-종료일', parts[1].trim());
} else {
setFieldValue('new-user-시작일', '');
setFieldValue('new-user-종료일', '');
}
} else {
setFieldValue('new-user-법인', currentSwUserAsset?.);
}
subModal.classList.remove('hidden');
}
export function initSwUserModal(onSave: () => void, closeModals: () => void) {
if (!document.getElementById('sw-user-modal')) { if (!document.getElementById('sw-user-modal')) {
document.body.insertAdjacentHTML('beforeend', SW_USER_MODAL_HTML); document.body.insertAdjacentHTML('beforeend', SW_USER_MODAL_HTML);
} }
const btnOpenAddUser = document.getElementById('btn-open-add-user'); const mainSaveBtn = document.getElementById('btn-save-sw-user')!;
const btnSaveEditUser = document.getElementById('btn-save-edit-user'); const addUserBtn = document.getElementById('btn-open-add-user')!;
const btnSaveSwUserMapping = document.getElementById('btn-save-sw-user-mapping'); const confirmUserBtn = document.getElementById('btn-confirm-user-edit')!;
const btnCancelUserEdit = document.getElementById('btn-cancel-sw-user-edit');
const btnCloseUserEdit = document.getElementById('btn-close-sw-user-edit');
const btnCancelUserModal = document.getElementById('btn-cancel-sw-user-modal');
const btnCloseUserModal = document.getElementById('btn-close-sw-user-modal');
btnOpenAddUser?.addEventListener('click', () => openUserEditModal(-1)); ['new-user-시작일', 'new-user-종료일'].forEach(id => {
btnSaveEditUser?.addEventListener('click', () => saveUserEdit()); applyDateMask(document.getElementById(id) as HTMLInputElement);
btnSaveSwUserMapping?.addEventListener('click', () => {
state.masterData.swUsers = state.masterData.swUsers.filter(u => u.swId !== currentSwUserAssetId);
state.masterData.swUsers.push(...tempSwUsers);
closeModals();
renderContent();
}); });
btnCancelUserEdit?.addEventListener('click', () => document.getElementById('sw-user-edit-modal')?.classList.add('hidden')); createIcons({ icons: { Calendar } });
btnCloseUserEdit?.addEventListener('click', () => document.getElementById('sw-user-edit-modal')?.classList.add('hidden'));
btnCancelUserModal?.addEventListener('click', closeModals);
btnCloseUserModal?.addEventListener('click', closeModals);
}
function renderUserList() { addUserBtn.addEventListener('click', () => openUserEditSubModal());
const tbody = document.getElementById('user-list-body')!;
tbody.innerHTML = ''; confirmUserBtn.addEventListener('click', () => {
if (tempSwUsers.length === 0) { saveUserDataToList();
tbody.innerHTML = '<tr><td colspan="7" style="padding: 2rem; text-align: center; color: var(--text-muted);">할당된 사용자가 없습니다.</td></tr>'; });
return;
} mainSaveBtn.addEventListener('click', () => {
if (!currentSwUserAsset) return;
tempSwUsers.forEach((user, idx) => {
const tr = document.createElement('tr');
const deptTeam = [user., user.].filter(Boolean).join(' / ') || '-';
const attachIcon = user. ? `<i data-lucide="paperclip" class="text-primary" style="width:16px; height:16px;" title="${user.}"></i>` : '-';
tr.innerHTML = ` // 전역 상태 업데이트
<td>${user.}</td> const existingIdx = state.masterData.swUsers.findIndex(u => u.sw_id === currentSwUserAsset!.id);
<td>${deptTeam}</td> const newMapping = {
<td>${user. || '-'}</td> sw_id: currentSwUserAsset!.id,
<td><strong>${user.}</strong></td> userData: tempSwUsers.map(u => [u., u., u., u., u., u.])
<td style="text-align:center;">${user. || '-'}</td> };
<td style="text-align:center;">${attachIcon}</td>
<td style="text-align:center;"> if (existingIdx > -1) state.masterData.swUsers[existingIdx] = newMapping as any;
<button type="button" class="btn-icon btn-edit-user" data-idx="${idx}" style="color: var(--primary-color);"><i data-lucide="edit-2" style="width:14px; height:14px;"></i></button> else state.masterData.swUsers.push(newMapping as any);
<button type="button" class="btn-icon btn-remove-user" data-idx="${idx}" style="color: var(--danger);"><i data-lucide="x" style="width:14px; height:14px;"></i></button>
</td> onSave();
`; document.getElementById('sw-user-modal')?.classList.add('hidden');
tbody.appendChild(tr);
}); });
createIcons({ icons: { Edit2, X, Paperclip } }); document.getElementById('btn-close-sw-user-modal')?.addEventListener('click', () => {
document.getElementById('sw-user-modal')?.classList.add('hidden');
tbody.querySelectorAll('.btn-edit-user').forEach(btn => {
btn.addEventListener('click', (e) => {
const idx = parseInt((e.currentTarget as HTMLElement).getAttribute('data-idx')!);
openUserEditModal(idx);
});
}); });
document.getElementById('btn-cancel-sw-user')?.addEventListener('click', () => {
tbody.querySelectorAll('.btn-remove-user').forEach(btn => { document.getElementById('sw-user-modal')?.classList.add('hidden');
btn.addEventListener('click', (e) => { });
const idx = parseInt((e.currentTarget as HTMLButtonElement).getAttribute('data-idx')!); document.getElementById('btn-close-user-edit')?.addEventListener('click', () => {
tempSwUsers.splice(idx, 1); document.getElementById('sw-user-edit-modal')?.classList.add('hidden');
renderUserList(); });
}); document.getElementById('btn-close-user-sub')?.addEventListener('click', () => {
document.getElementById('sw-user-edit-modal')?.classList.add('hidden');
}); });
} }
export function openSwUserModal(asset: SoftwareAsset) { function saveUserDataToList() {
openModal('sw-user-modal'); const idx = parseInt(getFieldValue('edit-user-index'));
currentSwUserAssetId = asset.id; const Input = document.getElementById('new-user-신청서') as HTMLInputElement;
tempSwUsers = state.masterData.swUsers.filter(u => u.swId === asset.id).map(u => ({...u})); const = Input.files && Input.files.length > 0 ? Input.files[0].name : (idx > -1 ? tempSwUsers[idx]. : '');
renderUserList();
}
function openUserEditModal(idx: number) { const userData: any = {
const editModal = document.getElementById('sw-user-edit-modal')!; 법인: getFieldValue('new-user-법인'),
editModal.classList.remove('hidden'); 부서: getFieldValue('new-user-부서'),
(document.getElementById('edit-user-idx') as HTMLInputElement).value = String(idx); 직위: getFieldValue('new-user-직위'),
이름: getFieldValue('new-user-이름'),
if (idx === -1) { : `${getFieldValue('new-user-시작일')} ~ ${getFieldValue('new-user-종료일')}`,
document.getElementById('sw-user-edit-modal-title')!.innerText = '새 사용자 추가';
(document.getElementById('new-user-법인') as HTMLSelectElement).value = '한맥';
(document.getElementById('new-user-부서') as HTMLInputElement).value = '';
(document.getElementById('new-user-팀') as HTMLInputElement).value = '';
(document.getElementById('new-user-직위') as HTMLInputElement).value = '';
(document.getElementById('new-user-이름') as HTMLInputElement).value = '';
(document.getElementById('new-user-사용기간') as HTMLInputElement).value = '';
(document.getElementById('new-user-신청서') as HTMLInputElement).value = '';
document.getElementById('new-user-신청서명')!.innerText = '';
} else {
document.getElementById('sw-user-edit-modal-title')!.innerText = '사용자 정보 수정';
const u = tempSwUsers[idx];
(document.getElementById('new-user-법인') as HTMLSelectElement).value = u.;
(document.getElementById('new-user-부서') as HTMLInputElement).value = u.;
(document.getElementById('new-user-팀') as HTMLInputElement).value = u.;
(document.getElementById('new-user-직위') as HTMLInputElement).value = u.;
(document.getElementById('new-user-이름') as HTMLInputElement).value = u.;
(document.getElementById('new-user-사용기간') as HTMLInputElement).value = u.;
(document.getElementById('new-user-신청서') as HTMLInputElement).value = '';
document.getElementById('new-user-신청서명')!.innerText = u. ? `첨부: ${u.}` : '';
}
}
function saveUserEdit() {
const idx = parseInt((document.getElementById('edit-user-idx') as HTMLInputElement).value);
const = (document.getElementById('new-user-이름') as HTMLInputElement).value.trim();
if (!) { alert('이름을 입력해주세요.'); return; }
const fileInput = document.getElementById('new-user-신청서') as HTMLInputElement;
let = '';
if (fileInput.files && fileInput.files.length > 0) {
= fileInput.files[0].name;
} else if (idx !== -1) {
= tempSwUsers[idx].;
}
const userData: SWUser = {
id: idx === -1 ? Math.random().toString(36).substring(2, 9) : tempSwUsers[idx].id,
swId: currentSwUserAssetId,
: (document.getElementById('new-user-법인') as HTMLSelectElement).value,
: (document.getElementById('new-user-부서') as HTMLInputElement).value,
: (document.getElementById('new-user-팀') as HTMLInputElement).value,
: (document.getElementById('new-user-직위') as HTMLInputElement).value,
,
: (document.getElementById('new-user-사용기간') as HTMLInputElement).value,
}; };

View File

@@ -0,0 +1,33 @@
/**
* 모든 모달에서 공통으로 사용하는 리스트 데이터 및 설정
*/
// 구매법인 목록
export const CORP_LIST = ['한맥', '삼안', '장헌', '한라', 'PTC', '바론'];
// 사용조직 목록
export const ORG_LIST = ['한맥', '삼안', '장헌', '한라', 'PTC', '기술개발센터', '총괄기획실'];
// 하드웨어 자산 유형 목록
export const HW_TYPE_LIST = [
'서버', 'PC', '스토리지', 'NAS', 'DAS',
'CPU', 'HDD', 'RAM', 'GPU',
'모바일', '노트북', '태블릿'
];
// 설치위치 종속성 데이터
export const LOCATION_DATA: Record<string, string[]> = {
'한맥빌딩': ['MDF실', '1층', '2층', '3층', '4층', '5층', '6층', '7층', '파고라'],
'기술개발센터': ['서버실', '기타'],
'유니온빌딩': ['4층', '5층', '6층'],
'뉴코아빌딩': ['4층', '6층', '7층'],
'IDC': ['서관202', '서관203', '서관204', '서관205', '동관53', '동관54']
};
// 유형별 자산번호 접두사(Prefix) 매핑
export const TYPE_PREFIX_MAP: Record<string, string> = {
'서버': 'SVR', 'PC': 'PC', 'NAS': 'NAS', 'DAS': 'DAS', '스토리지': 'STO',
'CPU': 'CPU', 'HDD': 'HDD', 'RAM': 'RAM', 'GPU': 'GPU',
'모바일': 'MOB', '노트북': 'PC', '태블릿': 'TAB',
'개인PC': 'PC', '모바일기기': 'MOB'
};

View File

@@ -1,166 +0,0 @@
import { state } from '../../core/state';
import { HardwareAsset } from '../../core/excelHandler';
import { openModal } from './BaseModal';
const STORAGE_MODAL_HTML = `
<div id="storage-asset-modal" class="modal-overlay hidden">
<div class="modal-content">
<div class="modal-header">
<h2 id="storage-modal-title">스토리지 상세 정보</h2>
<button id="btn-close-storage-modal" class="btn-icon" aria-label="닫기"><i data-lucide="x"></i></button>
</div>
<div class="modal-body">
<form id="storage-asset-form" class="grid-form">
<input type="hidden" id="storage-asset-id" />
<input type="hidden" id="storage-asset-type" value="스토리지" />
<div class="form-group"><label for="storage-법인">법인</label><input type="text" id="storage-법인" required /></div>
<div class="form-group"><label for="storage-유형">유형</label><input type="text" id="storage-유형" required /></div>
<div class="form-group"><label for="storage-자산코드">자산코드</label><input type="text" id="storage-자산코드" required /></div>
<div class="form-group"><label for="storage-명칭">명칭</label><input type="text" id="storage-명칭" required /></div>
<div class="form-group"><label for="storage-위치">위치</label><input type="text" id="storage-위치" /></div>
<div class="form-group"><label for="storage-모델명">모델명</label><input type="text" id="storage-모델명" /></div>
<div class="form-group"><label for="storage-용량">용량</label><input type="text" id="storage-용량" /></div>
<div class="form-group"><label for="storage-담당자_정">담당자(정)</label><input type="text" id="storage-담당자_정" /></div>
<div class="form-group"><label for="storage-IP주소">IP주소</label><input type="text" id="storage-IP주소" /></div>
<div class="form-group"><label for="storage-구매일">구매일</label><input type="text" id="storage-구매일" /></div>
<div class="form-group"><label for="storage-금액">금액</label><input type="text" id="storage-금액" oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/\\B(?=(\\d{3})+(?!\d))/g, ',')" /></div>
</form>
</div>
<div class="modal-footer">
<button id="btn-delete-storage-asset" class="btn btn-outline btn-danger">삭제</button>
<div class="footer-actions">
<button id="btn-revert-storage-edit" class="btn btn-outline hidden">수정 취소</button>
<button id="btn-close-storage-footer" class="btn btn-outline">닫기</button>
<button id="btn-save-storage-asset" class="btn btn-primary">수정</button>
</div>
</div>
</div>
</div>
`;
export let currentAsset: HardwareAsset | null = null;
export let isEditMode = false;
export function setEditMode(edit: boolean) {
isEditMode = edit;
const storageForm = document.getElementById('storage-asset-form') as HTMLFormElement;
const btnSaveStorage = document.getElementById('btn-save-storage-asset') as HTMLButtonElement;
const btnRevertEdit = document.getElementById('btn-revert-storage-edit') as HTMLButtonElement;
const btnCloseFooter = document.getElementById('btn-close-storage-footer') as HTMLButtonElement;
if (edit) {
storageForm.classList.add('is-edit-mode');
storageForm.classList.remove('is-view-mode');
btnSaveStorage.textContent = '저장';
btnRevertEdit.classList.remove('hidden');
btnCloseFooter.classList.add('hidden');
} else {
storageForm.classList.add('is-view-mode');
storageForm.classList.remove('is-edit-mode');
btnSaveStorage.textContent = '수정';
btnRevertEdit.classList.add('hidden');
btnCloseFooter.classList.remove('hidden');
if (currentAsset) fillFormData(currentAsset);
}
}
export function fillFormData(asset: HardwareAsset) {
(document.getElementById('storage-asset-id') as HTMLInputElement).value = asset.id;
(document.getElementById('storage-법인') as HTMLInputElement).value = asset.;
(document.getElementById('storage-유형') as HTMLInputElement).value = asset.storage유형 || 'NAS';
(document.getElementById('storage-자산코드') as HTMLInputElement).value = asset.;
(document.getElementById('storage-명칭') as HTMLInputElement).value = asset.;
(document.getElementById('storage-위치') as HTMLInputElement).value = asset. || '';
(document.getElementById('storage-모델명') as HTMLInputElement).value = asset. || '';
(document.getElementById('storage-용량') as HTMLInputElement).value = asset. || '';
(document.getElementById('storage-담당자_정') as HTMLInputElement).value = asset._정 || '';
(document.getElementById('storage-IP주소') as HTMLInputElement).value = asset.IP주소 || '';
(document.getElementById('storage-구매일') as HTMLInputElement).value = asset. || '';
(document.getElementById('storage-금액') as HTMLInputElement).value = asset. || '';
}
export function initStorageModal(renderContent: () => void, closeModals: () => void) {
if (!document.getElementById('storage-asset-modal')) {
document.body.insertAdjacentHTML('beforeend', STORAGE_MODAL_HTML);
}
const storageForm = document.getElementById('storage-asset-form') as HTMLFormElement;
const btnRevertEdit = document.getElementById('btn-revert-storage-edit') as HTMLButtonElement;
const btnSaveStorage = document.getElementById('btn-save-storage-asset') as HTMLButtonElement;
const btnDeleteStorage = document.getElementById('btn-delete-storage-asset') as HTMLButtonElement;
const btnCloseHeader = document.getElementById('btn-close-storage-modal') as HTMLButtonElement;
const btnCloseFooter = document.getElementById('btn-close-storage-footer') as HTMLButtonElement;
btnRevertEdit?.addEventListener('click', () => setEditMode(false));
btnCloseHeader?.addEventListener('click', closeModals);
btnCloseFooter?.addEventListener('click', closeModals);
btnSaveStorage?.addEventListener('click', (e) => {
e.preventDefault();
if (!isEditMode) {
setEditMode(true);
return;
}
if (!storageForm.checkValidity()) { storageForm.reportValidity(); return; }
const id = (document.getElementById('storage-asset-id') as HTMLInputElement).value;
const newAsset: HardwareAsset = {
id: id || Math.random().toString(36).substring(2, 9),
type: '스토리지',
: (document.getElementById('storage-법인') as HTMLInputElement).value,
storage유형: (document.getElementById('storage-유형') as HTMLInputElement).value,
: (document.getElementById('storage-자산코드') as HTMLInputElement).value,
: (document.getElementById('storage-명칭') as HTMLInputElement).value,
: (document.getElementById('storage-위치') as HTMLInputElement).value,
: (document.getElementById('storage-모델명') as HTMLInputElement).value,
: (document.getElementById('storage-용량') as HTMLInputElement).value,
_정: (document.getElementById('storage-담당자_정') as HTMLInputElement).value,
IP주소: (document.getElementById('storage-IP주소') as HTMLInputElement).value,
: (document.getElementById('storage-구매일') as HTMLInputElement).value,
: (document.getElementById('storage-금액') as HTMLInputElement).value,
: '', MACaddress: '', HW사양: '', OS: '', : '', : ''
};
if (id) {
const idx = state.masterData.hw.findIndex(a => a.id === id);
if(idx !== -1) state.masterData.hw[idx] = newAsset;
} else {
state.masterData.hw.push(newAsset);
}
closeModals();
renderContent();
});
btnDeleteStorage?.addEventListener('click', (e) => {
e.preventDefault();
const id = (document.getElementById('storage-asset-id') as HTMLInputElement).value;
if (confirm('삭제하시겠습니까?')) {
state.masterData.hw = state.masterData.hw.filter(a => a.id !== id);
closeModals();
renderContent();
}
});
}
export function openStorageModal(asset?: HardwareAsset) {
currentAsset = asset || null;
const storageForm = document.getElementById('storage-asset-form') as HTMLFormElement;
const deleteBtn = document.getElementById('btn-delete-storage-asset')!;
openModal('storage-asset-modal');
storageForm.reset();
if (asset) {
document.getElementById('storage-modal-title')!.textContent = '스토리지 상세 정보 수정';
deleteBtn.style.display = 'block';
fillFormData(asset);
setEditMode(false);
} else {
document.getElementById('storage-modal-title')!.textContent = '신규 스토리지 자산 추가';
deleteBtn.style.display = 'none';
(document.getElementById('storage-asset-id') as HTMLInputElement).value = '';
setEditMode(true);
}
}

View File

@@ -3,11 +3,11 @@ import { state } from '../core/state';
const MENU_CONFIG = { const MENU_CONFIG = {
hw: { hw: {
label: '하드웨어', label: '하드웨어',
tabs: ['대시보드', '개인PC', '서버', '스토리지', '전산비품'] tabs: ['대시보드', '개인PC', '서버', '스토리지', '전산비품', '모바일기기']
}, },
sw: { sw: {
label: '소프트웨어', label: '소프트웨어',
tabs: ['대시보드', '구독SW', '영구SW'] tabs: ['대시보드', '구독SW', '영구SW', '클라우드']
}, },
ops: { ops: {
label: '운영 서비스', label: '운영 서비스',
@@ -38,7 +38,7 @@ export function renderNavigation(onTabChange: (tab: string) => void) {
if (state.activeCategory !== catKey) { if (state.activeCategory !== catKey) {
state.activeCategory = catKey; state.activeCategory = catKey;
state.activeSubTab = '대시보드'; state.activeSubTab = '대시보드';
if (btnAddAsset) btnAddAsset.classList.add('hidden'); if (btnAddAsset) btnAddAsset.classList.remove('hidden');
render(); render();
onTabChange('대시보드'); onTabChange('대시보드');
} }
@@ -60,8 +60,7 @@ export function renderNavigation(onTabChange: (tab: string) => void) {
state.activeSubTab = tab; state.activeSubTab = tab;
if (btnAddAsset) { if (btnAddAsset) {
if (tab === '대시보드') btnAddAsset.classList.add('hidden'); btnAddAsset.classList.remove('hidden');
else btnAddAsset.classList.remove('hidden');
} }
render(); render();

View File

@@ -20,14 +20,20 @@ function randUser() { // 25% 확률로 유휴자산 할당
} }
export function generateDummyData(): MasterAssetData { export function generateDummyData(): MasterAssetData {
const hw: HardwareAsset[] = []; const pc: HardwareAsset[] = [];
const sw: SoftwareAsset[] = []; const server: HardwareAsset[] = [];
const swUsers: SWUser[] = []; const storage: HardwareAsset[] = [];
const equip: HardwareAsset[] = [];
const mobile: HardwareAsset[] = [];
const subSw: SoftwareAsset[] = [];
const permSw: SoftwareAsset[] = [];
const swUsers: any[] = [];
const logs: any[] = [];
// 1. 개인PC 50개 // 1. 개인PC 50개
for (let i = 1; i <= 50; i++) { for (let i = 1; i <= 50; i++) {
const purchaseYear = Math.floor(Math.random() * 10) + 2017; // 2017~2026 const purchaseYear = Math.floor(Math.random() * 10) + 2017;
hw.push({ pc.push({
id: Math.random().toString(36).substring(2, 9), id: Math.random().toString(36).substring(2, 9),
type: '개인PC', type: '개인PC',
법인: rand(corps), 법인: rand(corps),
@@ -52,8 +58,8 @@ export function generateDummyData(): MasterAssetData {
// 2. 서버 20개 // 2. 서버 20개
for (let i = 1; i <= 20; i++) { for (let i = 1; i <= 20; i++) {
const purchaseYear = Math.floor(Math.random() * 10) + 2017; // 2017~2026 const purchaseYear = Math.floor(Math.random() * 10) + 2017;
hw.push({ server.push({
id: Math.random().toString(36).substring(2, 9), id: Math.random().toString(36).substring(2, 9),
type: '서버', type: '서버',
법인: rand(corps), 법인: rand(corps),
@@ -86,10 +92,10 @@ export function generateDummyData(): MasterAssetData {
}); });
} }
// 3. 스토리지 20개 // 3. 스토리지 10개
for (let i = 1; i <= 20; i++) { for (let i = 1; i <= 10; i++) {
const purchaseYear = Math.floor(Math.random() * 10) + 2017; // 2017~2026 const purchaseYear = Math.floor(Math.random() * 10) + 2017;
hw.push({ storage.push({
id: Math.random().toString(36).substring(2, 9), id: Math.random().toString(36).substring(2, 9),
type: '스토리지', type: '스토리지',
법인: rand(corps), 법인: rand(corps),
@@ -111,122 +117,84 @@ export function generateDummyData(): MasterAssetData {
}); });
} }
// 4. 전산비품 (노트북, 태블릿, 휴대폰 각각 5개씩) // 4. 전산비품 15개
const equips = [ for (let i = 1; i <= 15; i++) {
{ type: '노트북', code: 'NB', name: 'LG 그램 16인치', price: '1,800,000' }, const purchaseYear = Math.floor(Math.random() * 8) + 2019;
{ type: '태블릿', code: 'TB', name: '아이패드 프로 12.9', price: '1,500,000' }, equip.push({
{ type: '휴대폰', code: 'PH', name: '갤럭시 S24', price: '1,200,000' } id: Math.random().toString(36).substring(2, 9),
]; type: '전산비품',
equips.forEach((eq) => { 법인: rand(corps),
for (let i = 1; i <= 5; i++) { 비품유형: rand(['프린터', '모니터', 'UPS']),
const purchaseYear = Math.floor(Math.random() * 8) + 2019; // 2019~2026 : `HM-EQ-${purchaseYear}-${String(i).padStart(3, '0')}`,
hw.push({ : `비품 #${i}`,
id: Math.random().toString(36).substring(2, 9), 위치: rand(['본사', '지사']),
type: '전산비품', 관리자: randUser(),
법인: rand(corps), 구매일: randDate(purchaseYear, purchaseYear),
비품유형: eq.type, : '300,000',
: `HM-${eq.code}-${purchaseYear}-${String(i).padStart(3, '0')}`, : '오피스공구',
명칭: eq.name, : '',
위치: rand(['본사', '지사']), IP주소: '', MACaddress: '', OS: '', HW사양: ''
관리자: randUser(), });
구매일: randDate(purchaseYear, purchaseYear), }
금액: eq.price,
: '브랜드 총판',
: '',
IP주소: '', MACaddress: '', OS: '', HW사양: ''
});
}
});
// 5. 구독형 S/W 40개 // 5. 모바일기기 10개
for (let i = 1; i <= 40; i++) { for (let i = 1; i <= 10; i++) {
const purchaseYear = Math.floor(Math.random() * 5) + 2022;
mobile.push({
id: Math.random().toString(36).substring(2, 9),
type: '모바일기기',
법인: rand(corps),
: `HM-MO-${purchaseYear}-${String(i).padStart(3, '0')}`,
명칭: rand(['아이폰 15', '갤럭시 S24', '아이패드 에어']),
: '개인 지급',
관리자: randUser(),
OS: rand(['iOS', 'Android', 'iPadOS']),
구매일: randDate(purchaseYear, purchaseYear),
: '1,200,000',
: '통신사',
: '',
IP주소: '', MACaddress: '', HW사양: '', : ''
});
}
// 6. 구독 SW 20개
for (let i = 1; i <= 20; i++) {
const swId = Math.random().toString(36).substring(2, 9); const swId = Math.random().toString(36).substring(2, 9);
const purchaseYear = Math.random() < 0.3 ? 2026 : 2024; subSw.push({
let isExpiring = Math.random() < 0.25;
let endDt = new Date();
if (isExpiring) {
endDt.setDate(endDt.getDate() + Math.floor(Math.random() * 25) + 1); // 1~25일 뒤 만료
} else {
endDt.setMonth(endDt.getMonth() + Math.floor(Math.random() * 11) + 2); // 넉넉히 남음
}
const endStr = `${endDt.getFullYear()}.${String(endDt.getMonth()+1).padStart(2,'0')}.${String(endDt.getDate()).padStart(2,'0')}`;
sw.push({
id: swId, id: swId,
type: '구독SW', type: '구독SW',
분야: rand(['업무공통', '개발S/W', '디자인', '설계S/W']), 분야: rand(['업무공통', '개발S/W']),
법인: rand(corps), 법인: rand(corps),
부서: rand(depts), 제품명: rand(['Adobe CC', 'M365']),
제품명: rand(['Adobe CC All Apps', 'Microsoft 365', 'Slack Pro', 'Notion Team']), : '2024-01-01',
: `${purchaseYear}-01-01`, : '2025-01-01',
: `${purchaseYear}.01.01 ~ ${endStr}`, : '100,000',
금액: String(Math.floor(Math.random() * 100 + 10) * 10000).replace(/\B(?=(\d{3})+(?!\d))/g, ','), 수량: 5,
수량: Math.floor(Math.random() * 5) + 3, // 3~7 : `admin${i}@hm.com`,
: `user${i}@hm.com`,
: '총판', : '총판',
: '연간구독' : ''
}); });
swUsers.push({ sw_id: swId, userData: [[rand(corps), rand(depts), '사원', rand(users), '2024.01~12', '신청완료']] });
const assignCount = Math.floor(Math.random() * 2) + 1;
for (let j=0; j<assignCount; j++) {
swUsers.push({
id: Math.random().toString(36).substring(2, 9),
swId: swId,
법인: rand(corps),
부서: rand(depts),
: rand(['1팀', '2팀', '기획팀']),
직위: rand(['사원', '대리', '과장']),
이름: rand(users),
사용기간: '2024.01~12',
신청서명: ''
});
}
} }
// 6. 영구 S/W 40개 // 7. 영구 SW 20개
for (let i = 1; i <= 40; i++) { for (let i = 1; i <= 20; i++) {
const swId = Math.random().toString(36).substring(2, 9); const swId = Math.random().toString(36).substring(2, 9);
permSw.push({
let isExpiring = Math.random() < 0.25;
let endDt = new Date();
if (isExpiring) {
endDt.setDate(endDt.getDate() + Math.floor(Math.random() * 25) + 1); // 1~25일 뒤 만료
} else {
endDt.setMonth(endDt.getMonth() + Math.floor(Math.random() * 11) + 2); // 넉넉히 남음
}
const endStr = `${endDt.getFullYear()}.${String(endDt.getMonth()+1).padStart(2,'0')}.${String(endDt.getDate()).padStart(2,'0')}`;
sw.push({
id: swId, id: swId,
type: '영구SW', type: '영구SW',
분야: rand(['업무공통', '개발S/W', '디자인', '설계S/W']), 분야: rand(['설계S/W']),
법인: rand(corps), 법인: rand(corps),
부서: rand(depts), 제품명: rand(['AutoCAD', '한컴오피스']),
제품명: rand(['AutoCAD 2024', 'Windows 10 Pro', '한컴오피스 2022', 'Visual Studio 2022']), : '2023-01-01',
구매일: '2020-05-15', : `KEY-${swId}`,
유지보수여부: true, : '500,000',
비고: `유지보수: ~ ${endStr}`, 수량: 2,
금액: '1,500,000', : `license${i}`,
수량: Math.floor(Math.random() * 3) + 2, // 2~4 : '총판',
계정명: `sn-2020-${i}`, : ''
납품업체: '오토데스크 / MS'
}); });
const assignCount = Math.floor(Math.random() * 2) + 1;
for (let j=0; j<assignCount; j++) {
swUsers.push({
id: Math.random().toString(36).substring(2, 9),
swId: swId,
법인: rand(corps),
부서: rand(depts),
: rand(['1팀', '2팀']),
직위: rand(['과장', '차장', '부장']),
이름: rand(users),
사용기간: '영구',
신청서명: ''
});
}
} }
return { hw, sw, swUsers, logs: [] }; return { pc, server, storage, equip, mobile, subSw, permSw, cloud: [], swUsers, logs, sw: [], hw: [] };
} }

View File

@@ -2,7 +2,7 @@ import * as XLSX from 'xlsx';
export interface HardwareAsset { export interface HardwareAsset {
id: string; id: string;
type: string; // '개인PC', '서버', '스토리지', '전산비품' type: string; // '개인PC', '서버', '스토리지', '전산비품', '모바일기기'
법인: string; 법인: string;
자산코드: string; 자산코드: string;
명칭: string; 명칭: string;
@@ -39,29 +39,40 @@ export interface HardwareAsset {
모니터링?: string; 모니터링?: string;
비고?: string; 비고?: string;
현사용조직?: string; 현사용조직?: string;
이전사용조직?: string;
detail_purpose?: string;
} }
export interface SoftwareAsset { export interface SoftwareAsset {
id: string; id: string;
type: string; // '구독SW', '영구SW' type: string; // '구독SW', '영구SW', '클라우드'
분야?: string; 분야?: string;
법인: string; 법인: string;
부서?: string; 부서?: string;
제품명: string; 제품명: string;
구매일: string; 구매일: string;
구독일?: string; 구독일?: string;
만료일?: string;
라이선스유형?: string;
라이선스키?: string;
유지보수여부?: boolean; 유지보수여부?: boolean;
금액: string; 금액: string;
수량: number; 수량: number;
계정명: string; 계정명: string;
납품업체: string; 납품업체: string;
비고: string; 비고: string;
자산번호?: string;
플랫폼명?: string;
결제수단?: string;
결제일?: string;
연결카드번호?: string;
당월청구액?: string;
시작일?: string;
} }
export interface SWUser { export interface SWUser {
id: string; id: string;
swId: string; sw_id: string;
법인: string; 법인: string;
부서: string; 부서: string;
: string; : string;
@@ -69,6 +80,7 @@ export interface SWUser {
이름: string; 이름: string;
사용기간: string; 사용기간: string;
신청서명: string; 신청서명: string;
userData?: any[];
} }
export interface HardwareLog { export interface HardwareLog {
@@ -80,150 +92,76 @@ export interface HardwareLog {
} }
export interface MasterAssetData { export interface MasterAssetData {
hw: HardwareAsset[]; pc: HardwareAsset[];
sw: SoftwareAsset[]; server: HardwareAsset[];
storage: HardwareAsset[];
equip: HardwareAsset[];
mobile: HardwareAsset[];
subSw: SoftwareAsset[];
permSw: SoftwareAsset[];
cloud: SoftwareAsset[];
swUsers: SWUser[]; swUsers: SWUser[];
logs: HardwareLog[]; logs: HardwareLog[];
sw: SoftwareAsset[];
hw: HardwareAsset[];
} }
const HW_TABS = ['개인PC', '서버', '스토리지', '전산비품']; const HW_TABS = ['개인PC', '서버', '스토리지', '전산비품', '모바일기기'];
const SW_TABS = ['구독SW', '영구SW']; const SW_TABS = ['구독SW', '영구SW', '클라우드'];
const HW_HEADERS = ['법인', '자산코드', '명칭', '위치', '관리자', 'IP주소', 'MACaddress', 'HW사양', 'OS', '구매일', '금액', '납품업체', '품의서명']; const PC_HEADERS = ['법인', '자산코드', '사용자', '위치', 'CPU', 'GPU', 'RAM', 'SSD1', 'SSD2', 'HDD1', 'HDD2', 'IP주소', 'HW사양', '구매일', '금액', '납품업체', '품의서명', '비고'];
const PC_HEADERS = ['법인', '자산코드', '사용자', '위치', 'CPU', 'GPU', 'RAM', 'SSD1', 'SSD2', 'HDD1', 'HDD2', '구매일', '금액', '납품업체', '품의서명']; const SERVER_HEADERS = ['구매법인', '자산번호', '구매일자', '유형', '용도', '상세내용', '현사용조직', '이전사용조직', '설치위치', '담당자(정)', '담당자(부)', 'IP 주소 1', 'IP 주소 2', '원격도구', '서버 ID', '서버 PW', '모델명', 'OS', 'CPU', 'RAM', 'GPU', 'Storage 1', 'Storage 2', 'Storage 3', '모니터링', '비고'];
const SERVER_HEADERS = ['법인', '자산번호', '유형', '용도', '설치위치', '담당자(정)', '담당자(부)', 'IP 주소', '원격접속', '모델명', 'OS', 'CPU', 'RAM', 'GPU', 'Storage1', 'Storage2', 'Storage3', '모니터링', '비고']; const STORAGE_HEADERS = ['구매법인', '유형', '자산코드', '명칭', '위치', '모델명', '용량', '담당자(정)', '담당자(부)', 'IP주소', 'MAC주소', '구매일', '금액', '납품업체', '품의서명', '비고'];
const STORAGE_HEADERS = ['법인', '유형', '자산코드', '명칭', '위치', '모델명', '용량', '담당자(정)', '담당자(부)', 'IP주소', 'MAC주소', '구매일', '금액', '납품업체', '품의서명']; const EQUIP_HEADERS = ['구매법인', '비품유형', '자산코드', '명칭', '위치', '관리자', 'IP주소', 'MACaddress', 'HW사양', 'OS', '구매일', '금액', '납품업체', '품의서명', '비고'];
const SUB_SW_HEADERS = ['ID', '분야', '법인', '부서', '제품명', '구매일', '구독일', '금액', '수량', '계정명', '납품업체', '비고']; const MOBILE_HEADERS = ['구매법인', '자산코드', '명칭', '위치', '관리자', '기기유형', 'OS', '구매일', '금액', '납품업체', '품의서명', '비고'];
const PERM_SW_HEADERS = ['ID', '분야', '법인', '부서', '제품명', '구매일', '유지보수여부', '금액', '수량', '계정명', '납품업체', '비고'];
const SW_USER_HEADERS = ['id', 'swId', '법인', '부서', '', '직위', '이름', '사용기간', '신청서명']; const SUB_SW_HEADERS = ['ID', '분야', '법인', '부서', '제품명', '구매일', '만료일', '라이선스유형', '금액', '수량', '계정명', '납품업체', '비고'];
const HISTORY_HEADERS = ['id', 'assetId', 'date', 'details', 'user']; const PERM_SW_HEADERS = ['ID', '분야', '법인', '부서', '제품명', '구매일', '라이선스키', '금액', '수량', '계정명', '납품업체', '비고'];
const CLOUD_HEADERS = ['ID', '플랫폼명', '법인', '부서', '사용용도(제품명)', '계정명', '결제수단', '결제일', '연결카드번호', '당월청구액', '비고'];
/**
* 템플릿 엑셀 다중 시트로 다운로드
*/
export function downloadTemplate() { export function downloadTemplate() {
const wb = XLSX.utils.book_new(); const wb = XLSX.utils.book_new();
const tabConfigs = [
{ name: '개인PC', headers: PC_HEADERS },
{ name: '서버', headers: SERVER_HEADERS },
{ name: '스토리지', headers: STORAGE_HEADERS },
{ name: '전산비품', headers: EQUIP_HEADERS },
{ name: '모바일기기', headers: MOBILE_HEADERS }
];
HW_TABS.forEach(tab => { tabConfigs.forEach(config => {
let hd = HW_HEADERS; const ws = XLSX.utils.aoa_to_sheet([config.headers]);
let wscols: any[] = []; ws['!cols'] = Array(config.headers.length).fill({ wch: 18 });
XLSX.utils.book_append_sheet(wb, ws, config.name);
if (tab === '개인PC') {
hd = PC_HEADERS;
wscols = [{wch:15}, {wch:25}, {wch:15}, {wch:20}, {wch:20}, {wch:20}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
} else if (tab === '서버') {
hd = SERVER_HEADERS;
wscols = [{wch:15}, {wch:20}, {wch:15}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:20}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:30}];
} else if (tab === '스토리지') {
hd = STORAGE_HEADERS;
wscols = [{wch:15}, {wch:15}, {wch:25}, {wch:25}, {wch:20}, {wch:25}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
} else {
hd = HW_HEADERS;
wscols = [{wch:15}, {wch:20}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:40}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
}
const ws = XLSX.utils.aoa_to_sheet([hd]);
ws['!cols'] = wscols;
XLSX.utils.book_append_sheet(wb, ws, tab);
}); });
SW_TABS.forEach(tab => { SW_TABS.forEach(tab => {
let hd = tab === '구독SW' ? SUB_SW_HEADERS : PERM_SW_HEADERS; let hd = tab === '구독SW' ? SUB_SW_HEADERS : (tab === '클라우드' ? CLOUD_HEADERS : PERM_SW_HEADERS);
const ws = XLSX.utils.aoa_to_sheet([hd]); const ws = XLSX.utils.aoa_to_sheet([hd]);
ws['!cols'] = [{wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:30}, {wch:15}, {wch:20}, {wch:15}, {wch:10}, {wch:20}, {wch:20}, {wch:30}]; ws['!cols'] = Array(hd.length).fill({ wch: 18 });
XLSX.utils.book_append_sheet(wb, ws, tab); XLSX.utils.book_append_sheet(wb, ws, tab);
}); });
const swUserWs = XLSX.utils.aoa_to_sheet([SW_USER_HEADERS]); XLSX.writeFile(wb, 'itam_assets_template_full.xlsx');
swUserWs['!cols'] = [{wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
XLSX.utils.book_append_sheet(wb, swUserWs, 'SW_사용자');
const historyWs = XLSX.utils.aoa_to_sheet([HISTORY_HEADERS]);
historyWs['!cols'] = [{wch:15}, {wch:20}, {wch:20}, {wch:50}, {wch:15}];
XLSX.utils.book_append_sheet(wb, historyWs, 'History');
XLSX.writeFile(wb, 'itam_assets_template.xlsx');
} }
/**
* 마스터 데이터를 여러 시트로 쪼개서 내보내기
*/
export function exportToExcel(masterData: MasterAssetData) { export function exportToExcel(masterData: MasterAssetData) {
const wb = XLSX.utils.book_new(); const wb = XLSX.utils.book_new();
const exportMap = [
HW_TABS.forEach(tab => { { tab: '개인PC', list: masterData.pc, headers: PC_HEADERS, map: (a: any) => [a., a., a., a., a.CPU, a.GPU, a.RAM, a.SSD1, a.SSD2, a.HDD1, a.HDD2, a.IP주소, a.HW사양, a., a., a., a., a.] },
const targetAssets = masterData.hw.filter(a => a.type === tab); { tab: '서버', list: masterData.server, headers: SERVER_HEADERS, map: (a: any) => [a., a., a., a.storage유형 || '물리', a., a., a., a., a., a._정, a._부, a.IP주소, a.IP2, a., a.ID, a.PW, a., a.OS, a.CPU, a.RAM, a.GPU, a.SSD1, a.SSD2, a.HDD1, a., a.] },
let wsData; { tab: '스토리지', list: masterData.storage, headers: STORAGE_HEADERS, map: (a: any) => [a., a.storage유형, a., a., a., a., a., a._정, a._부, a.IP주소, a.MACaddress, a., a., a., a., a.] },
let colsConfig; { tab: '전산비품', list: masterData.equip, headers: EQUIP_HEADERS, map: (a: any) => [a., a., a., a., a., a., a.IP주소, a.MACaddress, a.HW사양, a.OS, a., a., a., a., a.] },
{ tab: '모바일기기', list: masterData.mobile, headers: MOBILE_HEADERS, map: (a: any) => [a., a., a., a., a., a.type, a.OS, a., a., a., a., a.] },
if (tab === '개인PC') { { tab: '구독SW', list: masterData.subSw, headers: SUB_SW_HEADERS, map: (a: any) => [a.id, a., a., a., a., a., a., a., a., a., a., a., a.] },
wsData = [ { tab: '영구SW', list: masterData.permSw, headers: PERM_SW_HEADERS, map: (a: any) => [a.id, a., a., a., a., a., a., a., a., a., a., a.] }
PC_HEADERS,
...targetAssets.map(a => [a., a., a., a., a.CPU, a.GPU, a.RAM, a.SSD1, a.SSD2, a.HDD1, a.HDD2, a., a., a., a.])
];
colsConfig = [{wch:15}, {wch:25}, {wch:15}, {wch:20}, {wch:20}, {wch:20}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
} else if (tab === '서버') {
wsData = [
SERVER_HEADERS,
...targetAssets.map(a => [a., a., a.storage유형 || '물리', a. || '', a., a._정 || '', a._부 || '', a.IP주소, a. || '', a. || '', a.OS, a.CPU, a.RAM, a.GPU || '', a.SSD1 || '', a.SSD2 || '', a.HDD1 || '', a. || '', a. || ''])
];
colsConfig = [{wch:15}, {wch:20}, {wch:15}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:20}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:30}];
} else if (tab === '스토리지') {
wsData = [
STORAGE_HEADERS,
...targetAssets.map(a => [a., a.storage유형, a., a., a., a., a., a._정, a._부, a.IP주소, a.MACaddress, a., a., a., a.])
];
colsConfig = [{wch:15}, {wch:15}, {wch:25}, {wch:25}, {wch:20}, {wch:25}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
} else {
wsData = [
HW_HEADERS,
...targetAssets.map(a => [a., a., a., a., a., a.IP주소, a.MACaddress, a.HW사양, a.OS, a., a., a., a.])
];
colsConfig = [{wch:15}, {wch:20}, {wch:25}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:40}, {wch:20}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
}
const ws = XLSX.utils.aoa_to_sheet(wsData);
ws['!cols'] = colsConfig;
XLSX.utils.book_append_sheet(wb, ws, tab);
});
SW_TABS.forEach(tab => {
const targetAssets = masterData.sw.filter(a => a.type === tab);
let wsData;
if (tab === '구독SW') {
wsData = [
SUB_SW_HEADERS,
...targetAssets.map(a => [a.id, a.||'', a., a.||'', a., a., a., a., a., a., a., a.])
];
} else {
wsData = [
PERM_SW_HEADERS,
...targetAssets.map(a => [a.id, a.||'', a., a.||'', a., a., a. ? 'Y' : 'N', a., a., a., a., a.])
];
}
const ws = XLSX.utils.aoa_to_sheet(wsData);
ws['!cols'] = [{wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:30}, {wch:15}, {wch:20}, {wch:15}, {wch:10}, {wch:20}, {wch:20}, {wch:30}];
XLSX.utils.book_append_sheet(wb, ws, tab);
});
const swUserWsData = [
SW_USER_HEADERS,
...masterData.swUsers.map(u => [u.id, u.swId, u., u., u., u., u., u., u.])
]; ];
const swUserWs = XLSX.utils.aoa_to_sheet(swUserWsData);
swUserWs['!cols'] = [{wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:15}, {wch:20}, {wch:25}];
XLSX.utils.book_append_sheet(wb, swUserWs, 'SW_사용자');
const historyWsData = [ exportMap.forEach(m => {
HISTORY_HEADERS, const ws = XLSX.utils.aoa_to_sheet([m.headers, ...m.list.map(m.map)]);
...masterData.logs.map(l => [l.id, l.assetId, l.date, l.details, l.user]) XLSX.utils.book_append_sheet(wb, ws, m.tab);
]; });
const historyWs = XLSX.utils.aoa_to_sheet(historyWsData); XLSX.writeFile(wb, `itam_master_full_${new Date().toISOString().split('T')[0]}.xlsx`);
historyWs['!cols'] = [{wch:15}, {wch:20}, {wch:20}, {wch:50}, {wch:15}];
XLSX.utils.book_append_sheet(wb, historyWs, 'History');
const dateStr = new Date().toISOString().split('T')[0];
XLSX.writeFile(wb, `itam_assets_master_${dateStr}.xlsx`);
} }
export async function parseExcel(file: File): Promise<MasterAssetData> { export async function parseExcel(file: File): Promise<MasterAssetData> {
@@ -231,115 +169,29 @@ export async function parseExcel(file: File): Promise<MasterAssetData> {
const reader = new FileReader(); const reader = new FileReader();
reader.onload = (e) => { reader.onload = (e) => {
try { try {
const data = e.target?.result; const workbook = XLSX.read(e.target?.result, { type: 'binary' });
const workbook = XLSX.read(data, { type: 'binary' }); const data: MasterAssetData = { pc: [], server: [], storage: [], equip: [], mobile: [], subSw: [], permSw: [], cloud: [], swUsers: [], logs: [], sw: [], hw: [] };
const hwAssets: HardwareAsset[] = [];
const swAssets: SoftwareAsset[] = [];
const swUsers: SWUser[] = [];
const logs: HardwareLog[] = [];
workbook.SheetNames.forEach(sheetName => { workbook.SheetNames.forEach(sheetName => {
const worksheet = workbook.Sheets[sheetName]; const rows = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName]) as any[];
const json = XLSX.utils.sheet_to_json(worksheet) as any[]; if (sheetName === '개인PC') {
rows.forEach(r => data.pc.push({ id: Math.random().toString(36).substring(2, 9), type: '개인PC', 법인: r['법인']||'', 자산코드: r['자산코드']||'', 사용자: r['사용자']||'', 위치: r['위치']||'', CPU: r['CPU']||'', GPU: r['GPU']||'', RAM: r['RAM']||'', SSD1: r['SSD1']||'', SSD2: r['SSD2']||'', HDD1: r['HDD1']||'', HDD2: r['HDD2']||'', IP주소: r['IP주소']||'', HW사양: r['HW사양']||'', 구매일: r['구매일']||'', 금액: r['금액']||'', 납품업체: r['납품업체']||'', 품의서명: r['품의서명']||'', 비고: r['비고']||'', : '', MACaddress: '', OS: '', : '' }));
if (HW_TABS.includes(sheetName)) { } else if (sheetName === '서버') {
json.forEach(row => { rows.forEach(r => data.server.push({ id: Math.random().toString(36).substring(2, 9), type: '서버', 법인: r['구매법인']||r['법인']||'', 자산코드: r['자산번호']||r['자산코드']||'', 구매일: r['구매일자']||r['구매일']||'', storage유형: r['유형']||'물리', 용도: r['용도']||'', 상세: r['상세내용']||'', 현사용조직: r['현사용조직']||'', 이전사용조직: r['이전사용조직']||'', 위치: r['설치위치']||r['위치']||'', 담당자_정: r['담당자(정)']||'', 담당자_부: r['담당자(부)']||'', IP주소: r['IP 주소 1']||r['IP주소']||'', IP2: r['IP 주소 2']||'', 원격접속: r['원격도구']||r['원격접속']||'', 서버ID: r['서버 ID']||r['서버ID']||'', 서버PW: r['서버 PW']||r['서버PW']||'', 모델명: r['모델명']||'', OS: r['OS']||'', CPU: r['CPU']||'', RAM: r['RAM']||'', GPU: r['GPU']||'', SSD1: r['Storage 1']||r['SSD1']||'', SSD2: r['Storage 2']||r['SSD2']||'', HDD1: r['Storage 3']||r['HDD1']||'', 모니터링: r['모니터링']||'', 비고: r['비고']||'', : '', : '', MACaddress: '', HW사양: '', : '', : '', : '' }));
if (sheetName === '개인PC') { } else if (sheetName === '스토리지') {
hwAssets.push({ rows.forEach(r => data.storage.push({ id: Math.random().toString(36).substring(2, 9), type: '스토리지', 법인: r['구매법인']||r['법인']||'', storage유형: r['유형']||'', 자산코드: r['자산코드']||'', 명칭: r['명칭']||'', 위치: r['위치']||'', 모델명: r['모델명']||'', 용량: r['용량']||'', 담당자_정: r['담당자(정)']||'', 담당자_부: r['담당자(부)']||'', IP주소: r['IP주소']||'', MACaddress: r['MAC주소']||'', 구매일: r['구매일']||'', 금액: r['금액']||'', 납품업체: r['납품업체']||'', 품의서명: r['품의서명']||'', 비고: r['비고']||'', HW사양: '', OS: '', : '' }));
id: Math.random().toString(36).substring(2, 9), } else if (sheetName === '전산비품') {
type: sheetName, rows.forEach(r => data.equip.push({ id: Math.random().toString(36).substring(2, 9), type: '전산비품', 법인: r['구매법인']||r['법인']||'', 비품유형: r['비품유형']||r['유형']||'', 자산코드: r['자산코드']||'', 명칭: r['명칭']||'', 위치: r['위치']||'', 관리자: r['관리자']||'', IP주소: r['IP주소']||'', MACaddress: r['MACaddress']||'', HW사양: r['HW사양']||'', OS: r['OS']||'', 구매일: r['구매일']||'', 금액: r['금액']||'', 납품업체: r['납품업체']||'', 품의서명: r['품의서명']||'', 비고: r['비고']||'' }));
법인: row['법인'] || '', } else if (sheetName === '모바일기기') {
자산코드: row['자산코드'] || '', rows.forEach(r => data.mobile.push({ id: Math.random().toString(36).substring(2, 9), type: '모바일기기', 법인: r['구매법인']||r['법인']||'', 자산코드: r['자산코드']||'', 명칭: r['명칭']||'', 위치: r['위치']||'', 관리자: r['관리자']||'', OS: r['OS']||'', 구매일: r['구매일']||'', 금액: r['금액']||'', 납품업체: r['납품업체']||'', 품의서명: r['품의서명']||'', 비고: r['비고']||'', IP주소: '', MACaddress: '', HW사양: '' }));
: '', } else if (sheetName === '구독SW') {
위치: row['위치'] || '', rows.forEach(r => data.subSw.push({ id: r['ID']||Math.random().toString(36).substring(2, 9), type: '구독SW', 분야: r['분야']||'', 법인: r['법인']||'', 부서: r['부서']||'', 제품명: r['제품명']||'', 구매일: r['구매일']||'', 만료일: r['만료일']||'', 라이선스유형: r['라이선스유형']||'', 금액: r['금액']||'', 수량: parseInt(r['수량']||'1'), 계정명: r['계정명']||'', 납품업체: r['납품업체']||'', 비고: r['비고']||'' }));
사용자: row['사용자'] || '', } else if (sheetName === '영구SW') {
: '', IP주소: '', MACaddress: '', HW사양: '', OS: '', rows.forEach(r => data.permSw.push({ id: r['ID']||Math.random().toString(36).substring(2, 9), type: '영구SW', 분야: r['분야']||'', 법인: r['법인']||'', 부서: r['부서']||'', 제품명: r['제품명']||'', 구매일: r['구매일']||'', 라이선스키: r['라이선스키']||'', 금액: r['금액']||'', 수량: parseInt(r['수량']||'1'), 계정명: r['계정명']||'', 납품업체: r['납품업체']||'', 비고: r['비고']||'' }));
CPU: row['CPU'] || '', GPU: row['GPU'] || '', RAM: row['RAM'] || '',
SSD1: row['SSD1'] || '', SSD2: row['SSD2'] || '', HDD1: row['HDD1'] || '', HDD2: row['HDD2'] || '',
구매일: row['구매일'] || '', 금액: row['금액'] ? String(row['금액']) : '',
납품업체: row['납품업체'] || '', 품의서명: row['품의서명'] || '',
});
} else if (sheetName === '서버') {
hwAssets.push({
id: Math.random().toString(36).substring(2, 9),
type: sheetName,
법인: row['법인'] || '',
자산코드: row['자산번호'] || row['자산코드'] || '',
명칭: row['용도'] || row['명칭'] || '',
용도: row['용도'] || '', 위치: row['설치위치'] || row['위치'] || '',
관리자: row['담당자(정)'] || '', 담당자_정: row['담당자(정)'] || '', 담당자_부: row['담당자(부)'] || '',
IP주소: row['IP 주소'] || row['IP주소'] || '', IP2: row['IP2'] || '',
원격접속: row['원격접속'] || '', 서버ID: row['서버ID'] || '', 서버PW: row['서버PW'] || '',
모델명: row['모델명'] || '', OS: row['OS'] || '',
CPU: row['CPU'] || '', RAM: row['RAM'] || '', GPU: row['GPU'] || '',
SSD1: row['Storage1'] || row['SSD1'] || '', SSD2: row['Storage2'] || row['SSD2'] || '', HDD1: row['Storage3'] || row['HDD1'] || '',
모니터링: row['모니터링'] || '', 비고: row['비고'] || '', storage유형: row['유형'] || '물리',
MACaddress: '', HW사양: '', : '', : '', : '', : '',
});
} else if (sheetName === '스토리지') {
hwAssets.push({
id: Math.random().toString(36).substring(2, 9),
type: sheetName,
법인: row['법인'] || '', 자산코드: row['자산코드'] || '', 명칭: row['명칭'] || '', 위치: row['위치'] || '',
: '', IP주소: row['IP주소'] || '', MACaddress: row['MAC주소'] || '', HW사양: '', OS: '',
storage유형: row['유형'] || '', 모델명: row['모델명'] || '', 용량: row['용량'] || '',
담당자_정: row['담당자(정)'] || '', 담당자_부: row['담당자(부)'] || '',
구매일: row['구매일'] || '', 금액: row['금액'] ? String(row['금액']) : '',
납품업체: row['납품업체'] || '', 품의서명: row['품의서명'] || '',
});
} else {
hwAssets.push({
id: Math.random().toString(36).substring(2, 9),
type: sheetName,
법인: row['법인'] || '', 자산코드: row['자산코드'] || '', 명칭: row['명칭'] || '', 위치: row['위치'] || '',
관리자: row['관리자'] || '', IP주소: row['IP주소'] || '', MACaddress: row['MACaddress'] || '',
HW사양: row['HW사양'] || '', OS: row['OS'] || '',
구매일: row['구매일'] || '', 금액: row['금액'] ? String(row['금액']) : '',
납품업체: row['납품업체'] || '', 품의서명: row['품의서명'] || '',
});
}
});
}
if (SW_TABS.includes(sheetName)) {
json.forEach(row => {
swAssets.push({
id: row['ID'] ? String(row['ID']) : Math.random().toString(36).substring(2, 9),
type: sheetName, 분야: row['분야'] || '', 법인: row['법인'] || '', 부서: row['부서'] || '', 제품명: row['제품명'] || '',
구매일: row['구매일'] || '', 구독일: row['구독일'] || '', 유지보수여부: row['유지보수여부'] === 'Y' || row['유지보수여부'] === true,
금액: row['금액'] ? String(row['금액']) : '', 수량: parseInt(row['수량'] || '1', 10),
계정명: row['계정명'] || '', 납품업체: row['납품업체'] || '', 비고: row['비고'] || '',
});
});
}
if (sheetName === 'SW_사용자') {
json.forEach(row => {
swUsers.push({
id: row['id'] ? String(row['id']) : Math.random().toString(36).substring(2, 9),
swId: row['swId'] ? String(row['swId']) : '', 법인: row['법인'] || '', 부서: row['부서'] || '',
: row['팀'] || '', 직위: row['직위'] || '', 이름: row['이름'] || '',
사용기간: row['사용기간'] || '', 신청서명: row['신청서명'] || '',
});
});
}
if (sheetName === 'History') {
json.forEach(row => {
logs.push({
id: row['id'] ? String(row['id']) : Math.random().toString(36).substring(2, 9),
assetId: row['assetId'] ? String(row['assetId']) : '',
date: row['date'] || '', details: row['details'] || '', user: row['user'] || '',
});
});
} }
}); });
resolve({ hw: hwAssets, sw: swAssets, swUsers, logs }); resolve(data);
} catch (err) { } catch (err) { reject(err); }
reject(err);
}
}; };
reader.onerror = (err) => reject(err);
reader.readAsBinaryString(file); reader.readAsBinaryString(file);
}); });
} }

View File

@@ -1,96 +1,107 @@
import { MasterAssetData, HardwareAsset } from './excelHandler'; import { HardwareAsset, SoftwareAsset, SWUser, HardwareLog } from './excelHandler';
import { generateDummyData } from './dummyDataGenerator';
import { realServerData } from './realServerData';
// --- State Definitions --- // --- State Definitions ---
export interface MasterAssetData {
pc: HardwareAsset[];
server: HardwareAsset[];
storage: HardwareAsset[];
equip: HardwareAsset[];
mobile: HardwareAsset[];
subSw: SoftwareAsset[];
permSw: SoftwareAsset[];
cloud: SoftwareAsset[]; // 클라우드 배열 추가
swUsers: SWUser[];
logs: HardwareLog[];
// 동료 코드 호환용 통합 배열 (프론트엔드 로직용)
sw: SoftwareAsset[];
hw: HardwareAsset[];
}
export interface AppState { export interface AppState {
activeCategory: 'dashboard' | 'hw' | 'sw' | 'ops';
activeSubTab: string;
masterData: MasterAssetData; masterData: MasterAssetData;
activeCategory: 'hw' | 'sw' | 'ops';
activeSubTab: string;
activeCharts: any[]; activeCharts: any[];
} }
const dummy = generateDummyData(); // 초기 상태
// 서버 데이터만 실제 데이터로 교체
const mergedHw: HardwareAsset[] = [
...dummy.hw.filter(a => a.type !== '서버'),
...realServerData.map((serverData: any) => {
const s = serverData;
return {
id: s.id || Math.random().toString(36).substring(2, 9),
type: '서버',
법인: s.법인,
자산코드: s.자산코드,
명칭: s.용도 || '',
위치: s.위치,
관리자: s.담당자_정 || '홍길동',
담당자_정: s.담당자_정 || '홍길동',
담당자_부: s.담당자_부 || '김철수',
IP주소: s.IP주소,
IP2: s.IP2 || '',
MACaddress: s.MACaddress || '',
HW사양: s.HW사양 || '',
OS: s.OS,
CPU: s.CPU,
RAM: s.RAM,
SSD1: s.SSD1,
SSD2: s.SSD2,
HDD1: s.HDD1,
storage유형: s.storage유형,
모델명: s.모델명,
구매일: s.구매일 || '',
금액: s.금액 || '',
납품업체: s.납품업체 || '',
품의서명: s.품의서명 || '',
용도: s.용도,
상세: s.상세,
원격접속: s.원격접속 || '',
서버ID: s.서버ID || '',
서버PW: s.서버PW || '',
모니터링: s.모니터링 || '',
비고: s.비고 || ''
}})
];
// --- Initial State ---
export const state: AppState = { export const state: AppState = {
masterData: { activeCategory: 'dashboard',
...dummy,
hw: mergedHw, // 기본적으로 하드코딩된 데이터를 가지고 시작
logs: []
},
activeCategory: 'hw',
activeSubTab: '대시보드', activeSubTab: '대시보드',
masterData: {
pc: [],
server: [],
storage: [],
equip: [],
mobile: [],
subSw: [],
permSw: [],
cloud: [],
sw: [], // 호환용
swUsers: [],
logs: [],
hw: []
},
activeCharts: [] activeCharts: []
}; };
/** /**
* DB에서 데이터 로드 * 전용 API 엔드포인트들로부터 데이터 로드
*/ */
export async function loadMasterDataFromDB() { export async function loadMasterDataFromDB() {
try { try {
const [hwRes, swRes, swUserRes] = await Promise.all([ const endpoints = [
fetch('http://localhost:3000/api/hw'), { key: 'pc', url: 'http://localhost:3000/api/pc' },
fetch('http://localhost:3000/api/sw'), { key: 'server', url: 'http://localhost:3000/api/server' },
fetch('http://localhost:3000/api/sw-users') { key: 'storage', url: 'http://localhost:3000/api/storage' },
]); { key: 'equip', url: 'http://localhost:3000/api/equip' },
{ key: 'mobile', url: 'http://localhost:3000/api/mobile' },
{ key: 'subSw', url: 'http://localhost:3000/api/sw/sub' },
{ key: 'permSw', url: 'http://localhost:3000/api/sw/perm' },
{ key: 'cloud', url: 'http://localhost:3000/api/cloud' },
{ key: 'swUsers', url: 'http://localhost:3000/api/sw-users' },
{ key: 'logs', url: 'http://localhost:3000/api/logs' }
];
if (hwRes.ok) { const results = await Promise.all(endpoints.map(e => fetch(e.url)));
const hwData = await hwRes.json();
if (hwData && hwData.length > 0) state.masterData.hw = hwData; // 기존 데이터 초기화 (재분류 전)
state.masterData.pc = [];
state.masterData.server = [];
state.masterData.storage = [];
state.masterData.equip = [];
state.masterData.mobile = [];
for (let i = 0; i < endpoints.length; i++) {
if (results[i].ok) {
const data = await results[i].json();
const key = endpoints[i].key;
if (['pc', 'server', 'storage', 'equip', 'mobile'].includes(key)) {
// 하드웨어 데이터는 자동 재분류 로직 통과
(data as HardwareAsset[]).forEach(asset => saveHardwareAsset(asset));
} else {
(state.masterData as any)[key] = data || [];
}
}
} }
if (swRes.ok) { // 동료 코드 호환을 위한 통합 sw/hw 배열 생성
const swData = await swRes.json(); state.masterData.sw = [
if (swData && swData.length > 0) state.masterData.sw = swData; ...state.masterData.subSw,
} ...state.masterData.permSw,
...state.masterData.cloud
];
state.masterData.hw = [
...state.masterData.pc,
...state.masterData.server,
...state.masterData.storage,
...state.masterData.equip,
...state.masterData.mobile
];
if (swUserRes.ok) { console.log('✅ 모든 DB 데이터 로드 및 통합 완료');
const swUserData = await swUserRes.json();
if (swUserData && swUserData.length > 0) state.masterData.swUsers = swUserData;
}
console.log('✅ DB 데이터 로드 완료');
return true; return true;
} catch (err) { } catch (err) {
console.warn('⚠️ 백엔드 서버 연결 실패. 로컬 데이터를 유지합니다.'); console.warn('⚠️ 백엔드 서버 연결 실패. 로컬 데이터를 유지합니다.');
@@ -102,3 +113,53 @@ export async function loadMasterDataFromDB() {
export function updateState(newState: Partial<AppState>) { export function updateState(newState: Partial<AppState>) {
Object.assign(state, newState); Object.assign(state, newState);
} }
/**
* 하드웨어 자산 통합 저장 (자동 카테고리 분류)
*/
export function saveHardwareAsset(updatedAsset: HardwareAsset) {
const type = updatedAsset.type || '';
const detailPurpose = (updatedAsset as any). || updatedAsset.detail_purpose || '';
// 1. 타겟 카테고리 결정 (유연한 검색)
let targetKey: keyof MasterAssetData = 'equip';
if (type.includes('서버') || detailPurpose.includes('서버')) {
targetKey = 'server';
} else if (['NAS', 'DAS', '스토리지'].some(t => type.includes(t))) {
targetKey = 'storage';
} else if (['모바일', '태블릿', '휴대폰', '핸드폰', '노트북'].some(t => type.includes(t))) {
targetKey = 'mobile';
} else if (type === 'PC' || type === '개인PC' || detailPurpose === '개인PC') {
targetKey = 'pc';
} else if (['CPU', 'GPU', 'RAM', 'HDD'].some(t => type.toUpperCase().includes(t))) {
targetKey = 'equip';
}
// 2. 모든 카테고리에서 기존 ID 자산 삭제 (중복 방지)
const hwKeys: (keyof MasterAssetData)[] = ['pc', 'server', 'storage', 'equip', 'mobile'];
hwKeys.forEach(key => {
const arr = state.masterData[key] as HardwareAsset[];
if (Array.isArray(arr)) {
const idx = arr.findIndex(a => a.id === updatedAsset.id);
if (idx > -1) arr.splice(idx, 1);
}
});
// 3. 새로운 타겟 카테고리에 추가
(state.masterData[targetKey] as HardwareAsset[]).push(updatedAsset);
}
/**
* 하드웨어 자산 통합 삭제
*/
export function deleteHardwareAsset(assetId: string) {
const hwKeys: (keyof MasterAssetData)[] = ['pc', 'server', 'storage', 'equip', 'mobile'];
hwKeys.forEach(key => {
const arr = state.masterData[key] as HardwareAsset[];
if (Array.isArray(arr)) {
const idx = arr.findIndex(a => a.id === assetId);
if (idx > -1) arr.splice(idx, 1);
}
});
}

View File

@@ -54,3 +54,24 @@ export function getAssetChanges(oldAsset: any, newAsset: any, fields: {key: stri
}); });
return changes.join('\n'); return changes.join('\n');
} }
/**
* 자산 목록 정렬 (방안 C: 구매법인별 -> 자산번호 순)
*/
export function sortAssets<T>(list: T[]): T[] {
return [...list].sort((a: any, b: any) => {
// 1순위: 구매법인 (한글 가나다순)
const corpA = String(a. || '').trim();
const corpB = String(b. || '').trim();
if (corpA < corpB) return -1;
if (corpA > corpB) return 1;
// 2순위: 자산번호 (영문/숫자순)
const codeA = String(a. || a. || '').trim();
const codeB = String(b. || b. || '').trim();
if (codeA < codeB) return -1;
if (codeA > codeB) return 1;
return 0;
});
}

View File

@@ -6,63 +6,64 @@ import { downloadTemplate, exportToExcel, parseExcel, HardwareAsset, SoftwareAss
import { initBaseModal } from './components/Modal/BaseModal'; import { initBaseModal } from './components/Modal/BaseModal';
import { initPcModal } from './components/Modal/PCModal'; import { initPcModal } from './components/Modal/PCModal';
import { initHwModal, openHwModal } from './components/Modal/HWModal'; import { initHwModal, openHwModal } from './components/Modal/HWModal';
import { initStorageModal } from './components/Modal/StorageModal';
import { initSwModal, openSwModal } from './components/Modal/SWModal'; import { initSwModal, openSwModal } from './components/Modal/SWModal';
import { initCloudModal, openCloudModal } from './components/Modal/CloudModal';
import { initSwUserModal } from './components/Modal/SWUserModal'; import { initSwUserModal } from './components/Modal/SWUserModal';
import { initDashboardDetailModal } from './components/Modal/DashboardDetailModal'; import { initDashboardDetailModal } from './components/Modal/DashboardDetailModal';
import { createIcons, Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, History, RefreshCcw } from 'lucide'; import { initGuide } from './components/Guide';
import { createIcons, Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, History, RefreshCcw, BookOpen } from 'lucide';
// --- DB 저장을 위한 헬퍼 함수 --- // --- DB 저장을 위한 세분화된 헬퍼 함수 ---
async function saveAllHwToDB(assets: HardwareAsset[]) { async function apiBatchSave(url: string, data: any[], label: string) {
try { try {
const response = await fetch('http://localhost:3000/api/hw/batch', { const response = await fetch(url, {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(assets) body: JSON.stringify(data)
}); });
if (!response.ok) throw new Error('HW DB 저장 실패'); if (!response.ok) throw new Error(`${label} DB 저장 실패`);
console.log('✅ HW DB 저장 완료'); console.log(`${label} DB 저장 완료`);
} catch (err) { } catch (err) {
console.error('❌ HW DB 저장 실패:', err); console.error(`${label} DB 저장 오류:`, err);
} }
} }
async function saveAllSwToDB(assets: SoftwareAsset[]) { const savePcToDB = () => apiBatchSave('http://localhost:3000/api/pc/batch', state.masterData.pc, '개인PC');
try { const saveServerToDB = () => apiBatchSave('http://localhost:3000/api/server/batch', state.masterData.server, '서버');
const response = await fetch('http://localhost:3000/api/sw/batch', { const saveStorageToDB = () => apiBatchSave('http://localhost:3000/api/storage/batch', state.masterData.storage, '스토리지');
method: 'POST', const saveEquipToDB = () => apiBatchSave('http://localhost:3000/api/equip/batch', state.masterData.equip, '전산비품');
headers: { 'Content-Type': 'application/json' }, const saveMobileToDB = () => apiBatchSave('http://localhost:3000/api/mobile/batch', state.masterData.mobile, '모바일기기');
body: JSON.stringify(assets) const saveSubSwToDB = () => apiBatchSave('http://localhost:3000/api/sw/sub/batch', state.masterData.subSw, '구독SW');
}); const savePermSwToDB = () => apiBatchSave('http://localhost:3000/api/sw/perm/batch', state.masterData.permSw, '영구SW');
if (!response.ok) throw new Error('SW DB 저장 실패'); const saveCloudToDB = () => apiBatchSave('http://localhost:3000/api/cloud/batch', state.masterData.cloud, '클라우드');
console.log('✅ SW DB 저장 완료'); const saveSwUsersToDB = () => apiBatchSave('http://localhost:3000/api/sw-users/batch', state.masterData.swUsers, 'SW사용자');
} catch (err) {
console.error('❌ SW DB 저장 실패:', err); // 모든 하드웨어 DB 동기화
} async function saveAllHardwareToDB() {
await Promise.all([
savePcToDB(),
saveServerToDB(),
saveStorageToDB(),
saveEquipToDB(),
saveMobileToDB()
]);
} }
async function saveAllSwUsersToDB(users: SWUser[]) { // 모든 소프트웨어 DB 동기화
try { async function saveAllSoftwareToDB() {
const response = await fetch('http://localhost:3000/api/sw-users/batch', { await Promise.all([
method: 'POST', saveSubSwToDB(),
headers: { 'Content-Type': 'application/json' }, savePermSwToDB(),
body: JSON.stringify(users) saveCloudToDB(),
}); saveSwUsersToDB()
if (!response.ok) throw new Error('SW User DB 저장 실패'); ]);
console.log('✅ SW User DB 저장 완료');
} catch (err) {
console.error('❌ SW User DB 저장 실패:', err);
}
} }
// --- App Initialization --- // --- App Initialization ---
function initApp() { function initApp() {
console.log('🚀 ITAM System Initializing...'); console.log('🚀 ITAM Dedicated System Initializing...');
const mainContent = document.getElementById('main-content')!; const mainContent = document.getElementById('main-content')!;
if (!mainContent) return; if (!mainContent) return;
// 1. 전역 모달 및 내비게이션 초기화
const { closeAllModals } = initBaseModal(); const { closeAllModals } = initBaseModal();
try { try {
@@ -74,45 +75,28 @@ function initApp() {
} }
}); });
initPcModal(() => { // 모달 초기화
saveAllHwToDB(state.masterData.hw); initPcModal(() => { saveAllHardwareToDB(); renderSWTable(mainContent); }, closeAllModals);
renderSWTable(mainContent); initHwModal(() => { saveAllHardwareToDB(); renderSWTable(mainContent); }, closeAllModals);
}, closeAllModals);
initHwModal(() => {
saveAllHwToDB(state.masterData.hw);
renderSWTable(mainContent);
}, closeAllModals);
initStorageModal(() => {
saveAllHwToDB(state.masterData.hw);
renderSWTable(mainContent);
}, closeAllModals);
initSwModal(() => { initSwModal(() => {
saveAllSwToDB(state.masterData.sw); saveAllSoftwareToDB();
renderSWTable(mainContent); renderSWTable(mainContent);
}, closeAllModals); }, closeAllModals);
initCloudModal(() => { initSwUserModal(() => {
saveAllSwToDB(state.masterData.sw); saveSwUsersToDB();
renderSWTable(mainContent); renderSWTable(mainContent);
}, closeAllModals);
initSwUserModal(() => {
saveAllSwUsersToDB(state.masterData.swUsers);
renderSWTable(mainContent);
}, closeAllModals); }, closeAllModals);
initDashboardDetailModal(); initDashboardDetailModal();
} catch (e) { initGuide();
console.error('❌ Initialization failed:', e); } catch (e) { console.error('❌ Initialization failed:', e); }
}
// 2. 초기 렌더링 // 초기 로드 시 대시보드 렌더링
renderDashboard(mainContent); renderDashboard(mainContent);
// 3. 비동기 데이터 로드 // DB에서 데이터 로드 후 화면 갱신
loadMasterDataFromDB().then((success) => { loadMasterDataFromDB().then((success) => {
if (success) { if (success) {
if (state.activeSubTab === '대시보드') renderDashboard(mainContent); if (state.activeSubTab === '대시보드') renderDashboard(mainContent);
@@ -120,7 +104,7 @@ function initApp() {
} }
}); });
// 4. 이벤트 바인딩 // 버튼 이벤트 바인딩
document.getElementById('btn-download-template')?.addEventListener('click', () => downloadTemplate()); document.getElementById('btn-download-template')?.addEventListener('click', () => downloadTemplate());
document.getElementById('btn-export-excel')?.addEventListener('click', () => exportToExcel(state.masterData)); document.getElementById('btn-export-excel')?.addEventListener('click', () => exportToExcel(state.masterData));
@@ -130,32 +114,40 @@ function initApp() {
if (file) { if (file) {
const data = await parseExcel(file); const data = await parseExcel(file);
state.masterData = data; state.masterData = data;
// 엑셀 업로드 시 모든 카테고리 일괄 덮어쓰기 저장
await Promise.all([ await Promise.all([
saveAllHwToDB(data.hw), saveAllHardwareToDB(),
saveAllSwToDB(data.sw), saveAllSoftwareToDB()
saveAllSwUsersToDB(data.swUsers)
]); ]);
renderSWTable(mainContent); renderSWTable(mainContent);
} }
}); });
document.getElementById('btn-add-asset')?.addEventListener('click', () => { document.getElementById('btn-add-asset')?.addEventListener('click', () => {
if (['개인PC', '서버', '전산비품', '스토리지'].includes(state.activeSubTab)) { const tab = state.activeSubTab;
const cat = state.activeCategory;
if (cat === 'hw') {
// 하드웨어 대시보드 또는 개별 탭에서 추가
const defaultType = (tab === '대시보드') ? '' : tab;
openHwModal({ openHwModal({
id: Math.random().toString(36).substring(2, 9), id: Math.random().toString(36).substring(2, 9),
type: state.activeSubTab, type: defaultType,
: '한맥', : '', : '', : '', : '', IP주소: '', MACaddress: '', HW사양: '', OS: '', : '', : '' : '한맥', : '', : '', : '', MACaddress: '', HW사양: '', OS: '', : '', : ''
} as any); } as any, 'add');
} else if (state.activeSubTab === '클라우드') { } else if (cat === 'sw') {
openCloudModal({ type: '클라우드', : '', : '', 수량: 1, : '', : '', : '', : '한맥', : '' } as any); // 소프트웨어 대시보드 또는 개별 탭에서 추가
} else if (state.activeSubTab === '구독SW' || state.activeSubTab === '영구SW') { let defaultType = tab;
openSwModal({ type: state.activeSubTab, : '', : '', 수량: 1, : '', : '', : '', : '한맥' } as any); if (tab === '대시보드') defaultType = '구독SW'; // SW는 기본 레이아웃을 위해 하나 지정하되 필드는 빈값
openSwModal({
id: Math.random().toString(36).substring(2, 9),
type: defaultType, : '', : '', 수량: 1, : '', : '', : '', : '한맥'
} as any, 'add');
} }
}); });
createIcons({ createIcons({
icons: { Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, History, RefreshCcw } icons: { Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, History, RefreshCcw, BookOpen }
}); });
} }

View File

@@ -156,15 +156,16 @@ body {
/* --- Layout Frame --- */ /* --- Layout Frame --- */
.content-area { .content-area {
flex: 1; flex: 1;
padding: 2rem; padding: 1.25rem 1.5rem;
overflow-y: auto; overflow: hidden;
} }
.view-container { .view-container {
width: 100%; width: 100%;
height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 1.5rem; gap: 0.75rem;
} }
.hidden { display: none !important; } .hidden { display: none !important; }

349
src/styles/guide.css Normal file
View File

@@ -0,0 +1,349 @@
/* ITAM Guide Modal Styles */
:root {
--guide-modal-width: 1060px;
--guide-modal-height: 92vh;
--guide-primary: #1E5149;
--guide-accent: #6cc020;
}
/* Floating Trigger Button - REMOVED (now in header) */
.guide-trigger {
display: none;
}
/* Modal Overlay */
.guide-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.guide-overlay.active {
opacity: 1;
visibility: visible;
}
/* Guide Modal */
.guide-modal {
width: var(--guide-modal-width);
max-width: 94vw;
height: var(--guide-modal-height);
background-color: #ffffff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 24px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
transform: translateY(20px) scale(0.97);
opacity: 0;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.guide-overlay.active .guide-modal {
transform: translateY(0) scale(1);
opacity: 1;
}
/* Header */
.guide-header {
padding: 1.1rem 1.5rem;
border-bottom: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
background: linear-gradient(135deg, var(--guide-primary), #2a6d63);
color: white;
flex-shrink: 0;
}
.guide-header h2 {
font-size: 1.15rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 10px;
margin: 0;
}
.btn-close-guide {
background: rgba(255, 255, 255, 0.12);
border: none;
color: white;
cursor: pointer;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s;
}
.btn-close-guide:hover {
background: rgba(255, 255, 255, 0.3);
}
/* ===== Tab Navigation ===== */
.guide-tabs {
display: flex;
border-bottom: 1px solid var(--border-color);
background: #f8faf9;
padding: 0 1.5rem;
flex-shrink: 0;
gap: 2px;
overflow-x: auto;
}
.guide-tab {
padding: 0.7rem 1rem;
font-size: 13px;
font-weight: 600;
color: var(--text-muted);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s ease;
white-space: nowrap;
position: relative;
top: 1px;
}
.guide-tab:hover {
color: var(--guide-primary);
background: rgba(30, 81, 73, 0.04);
}
.guide-tab.active {
color: var(--guide-primary);
border-bottom-color: var(--guide-primary);
background: white;
}
/* ===== Content Area ===== */
.guide-body {
flex: 1;
overflow-y: auto;
padding: 0;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
}
.guide-body::-webkit-scrollbar {
display: none; /* Chrome/Safari */
}
.guide-tab-panel {
display: none;
padding: 1.5rem 2rem 2rem;
animation: guideFadeIn 0.3s ease;
}
.guide-tab-panel.active {
display: block;
}
@keyframes guideFadeIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}
/* ===== Section Styles ===== */
.guide-section {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.guide-section:last-child {
margin-bottom: 0;
}
.guide-section h3 {
font-size: 1rem;
padding-bottom: 0.4rem;
border-bottom: 2px solid var(--guide-primary);
color: var(--guide-primary);
margin: 0;
display: flex;
align-items: center;
gap: 8px;
}
.guide-section h4 {
font-size: 0.9rem;
color: var(--text-main);
margin: 0.6rem 0 0.2rem;
font-weight: 700;
}
.guide-text {
font-size: 13px;
color: var(--text-muted);
line-height: 1.7;
margin: 0;
}
.guide-text strong {
color: var(--text-main);
}
/* ===== Flowchart ===== */
.flow-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 1.25rem;
background-color: #f8faf9;
border-radius: 12px;
border: 1px dashed #d0d7d5;
}
.flow-row {
display: flex;
width: 100%;
gap: 0.75rem;
align-items: stretch;
}
.flow-step {
flex: 1;
background: white;
padding: 0.65rem 0.9rem;
border-radius: 8px;
border: 1px solid var(--border-color);
display: flex;
align-items: flex-start;
gap: 10px;
transition: transform 0.2s, box-shadow 0.2s;
}
.flow-step:hover {
transform: translateY(-2px);
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
border-color: var(--guide-primary);
}
.flow-step .step-number {
width: 22px;
height: 22px;
min-width: 22px;
border-radius: 50%;
background-color: var(--guide-primary);
color: white;
font-size: 11px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.flow-step .step-label {
font-weight: 700;
color: var(--text-main);
font-size: 13px;
display: block;
}
.flow-step .step-desc {
font-size: 11.5px;
color: var(--text-muted);
line-height: 1.5;
margin-top: 2px;
}
.flow-arrow {
color: #b5c4c0;
width: 16px !important;
height: 16px !important;
}
.flow-arrow-right {
color: #b5c4c0;
width: 16px !important;
height: 16px !important;
display: flex;
align-items: center;
flex-shrink: 0;
}
/* ===== Info Table ===== */
.guide-info-table {
width: 100%;
border-collapse: collapse;
font-size: 12.5px;
margin-top: 0.5rem;
}
.guide-info-table th {
background: #f0f4f3;
color: var(--guide-primary);
font-weight: 700;
padding: 0.5rem 0.75rem;
text-align: left;
border-bottom: 2px solid var(--guide-primary);
}
.guide-info-table td {
padding: 0.45rem 0.75rem;
border-bottom: 1px solid var(--border-color);
color: var(--text-main);
line-height: 1.5;
}
.guide-info-table tr:hover td {
background: #f8faf9;
}
/* ===== Tip Box ===== */
.guide-tip {
background: linear-gradient(135deg, #f0f9eb, #e8f5e0);
border-left: 4px solid var(--guide-accent);
border-radius: 0 8px 8px 0;
padding: 0.75rem 1rem;
font-size: 12.5px;
color: #2d5016;
line-height: 1.6;
}
.guide-tip strong {
color: #1a3a0a;
}
/* ===== Warning Box ===== */
.guide-warn {
background: linear-gradient(135deg, #fff8ed, #fff3e0);
border-left: 4px solid #ff9800;
border-radius: 0 8px 8px 0;
padding: 0.75rem 1rem;
font-size: 12.5px;
color: #7a4a00;
line-height: 1.6;
}
/* ===== Badge ===== */
.guide-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
}
.guide-badge.green { background: #e6f4ea; color: #137333; }
.guide-badge.orange { background: #fff4e5; color: #b45309; }
.guide-badge.blue { background: #e8f0fe; color: #1a56db; }
.guide-badge.red { background: #fce8e6; color: #c5221f; }

View File

@@ -102,14 +102,23 @@
/* Modal Readonly/Edit Mode Interaction */ /* Modal Readonly/Edit Mode Interaction */
.grid-form.is-view-mode input, .grid-form.is-view-mode input,
.grid-form.is-view-mode select, .grid-form.is-view-mode select,
.grid-form.is-view-mode textarea { .grid-form.is-view-mode textarea,
border-color: transparent !important; .grid-form.is-view-mode button {
border: none !important;
background-color: transparent !important; background-color: transparent !important;
padding-left: 0; padding-left: 0 !important;
padding-right: 0; padding-right: 0 !important;
pointer-events: none; pointer-events: none !important;
color: var(--text-main); color: var(--text-main) !important;
font-weight: 500; font-weight: 500 !important;
appearance: none !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
box-shadow: none !important;
}
.grid-form.is-view-mode select::-ms-expand {
display: none !important;
} }
.grid-form.is-edit-mode input, .grid-form.is-edit-mode input,
@@ -119,6 +128,16 @@
border: 1px solid var(--border-color); border: 1px solid var(--border-color);
} }
/* 수동 수정 불가 필드 (자산번호 등) 전용 스타일 */
.grid-form input[readonly] {
border-color: transparent !important;
background-color: transparent !important;
pointer-events: none !important;
color: var(--text-main) !important;
font-weight: 500 !important;
cursor: default;
}
.grid-form.is-edit-mode input:focus, .grid-form.is-edit-mode input:focus,
.grid-form.is-edit-mode select:focus, .grid-form.is-edit-mode select:focus,
.grid-form.is-edit-mode textarea:focus { .grid-form.is-edit-mode textarea:focus {

View File

@@ -62,7 +62,8 @@
border-left: none; border-left: none;
border-right: none; border-right: none;
overflow: auto; overflow: auto;
max-height: calc(100vh - 240px); flex: 1;
min-height: 0;
} }
table { table {

View File

@@ -50,7 +50,7 @@ export function renderHwDashboard(container: HTMLElement) {
<canvas id="chart-hw-types"></canvas> <canvas id="chart-hw-types"></canvas>
</div> </div>
<div class="dashboard-card"> <div class="dashboard-card">
<h4 style="margin-bottom:1rem; font-size:0.9rem; color:var(--text-muted);">법인별 자산 분포</h4> <h4 style="margin-bottom:1rem; font-size:0.9rem; color:var(--text-muted);">구매법인별 자산 분포</h4>
<canvas id="chart-hw-corps"></canvas> <canvas id="chart-hw-corps"></canvas>
</div> </div>
</div> </div>

View File

@@ -1,6 +1,6 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { SoftwareAsset } from '../../core/excelHandler'; import { SoftwareAsset } from '../../core/excelHandler';
import { openSwDashboardDetail, openSwUsageDetail } from '../../components/Modal/DashboardDetailModal'; import { openSwDashboardDetail, openSwUsageDetail, openCloudDashboardDetail } from '../../components/Modal/DashboardDetailModal';
import { normalizeDate } from '../../core/utils'; import { normalizeDate } from '../../core/utils';
declare var Chart: any; declare var Chart: any;
@@ -8,8 +8,9 @@ declare var Chart: any;
export function renderSwDashboard(container: HTMLElement) { export function renderSwDashboard(container: HTMLElement) {
let subQty = 0, subUsed = 0, subExp = 0, subTotal = 0; let subQty = 0, subUsed = 0, subExp = 0, subTotal = 0;
let permQty = 0, permUsed = 0, permExp = 0, permTotal = 0; let permQty = 0, permUsed = 0, permExp = 0, permTotal = 0;
const currentYear = new Date().getFullYear().toString(); const currentYear = new Date().getFullYear();
const corps = ['한맥', '삼안', '바론']; const corps = ['한맥', '삼안', '바론'];
const categories = ['업무공통', '개발S/W', '디자인', '설계S/W']; const categories = ['업무공통', '개발S/W', '디자인', '설계S/W'];
@@ -17,8 +18,12 @@ export function renderSwDashboard(container: HTMLElement) {
const costByCat: Record<string, number> = {}; const costByCat: Record<string, number> = {};
categories.forEach(c => costByCat[c] = 0); categories.forEach(c => costByCat[c] = 0);
state.masterData.sw.forEach(sw => { // 통합 SW 데이터
const assigned = state.masterData.swUsers.filter(u => u.swId === sw.id).length; const allSw = [...state.masterData.subSw, ...state.masterData.permSw];
allSw.forEach(sw => {
const userMapping = state.masterData.swUsers.find(u => u.sw_id === sw.id);
const assigned = userMapping ? (userMapping.userData ? userMapping.userData.length : 0) : 0;
const qty = typeof sw. === 'number' ? sw.수량 : parseInt(sw.||'0', 10); const qty = typeof sw. === 'number' ? sw.수량 : parseInt(sw.||'0', 10);
const priceStr = sw. ? String(sw.).replace(/,/g, '') : '0'; const priceStr = sw. ? String(sw.).replace(/,/g, '') : '0';
const price = parseInt(priceStr, 10) || 0; const price = parseInt(priceStr, 10) || 0;
@@ -26,12 +31,12 @@ export function renderSwDashboard(container: HTMLElement) {
if (sw.type === '구독SW') { if (sw.type === '구독SW') {
subQty += qty; subUsed += assigned; subTotal++; subQty += qty; subUsed += assigned; subTotal++;
if (isSWExpiring(sw)) subExp++; if (isSWExpiring(sw)) subExp++;
} else { } else if (sw.type === '영구SW') {
permQty += qty; permUsed += assigned; permTotal++; permQty += qty; permUsed += assigned; permTotal++;
if (isSWExpiring(sw)) permExp++; if (isSWExpiring(sw)) permExp++;
} }
if (sw. && sw..startsWith(currentYear)) { if (sw. && sw..startsWith(String(currentYear))) {
if (costByCorp[sw.] !== undefined) costByCorp[sw.] += price; if (costByCorp[sw.] !== undefined) costByCorp[sw.] += price;
if (sw. && costByCat[sw.] !== undefined) costByCat[sw.] += price; if (sw. && costByCat[sw.] !== undefined) costByCat[sw.] += price;
} }
@@ -45,6 +50,7 @@ export function renderSwDashboard(container: HTMLElement) {
container.innerHTML = ` container.innerHTML = `
<div class="view-container"> <div class="view-container">
<h3 class="dashboard-section-title">소프트웨어 라이선스 현황</h3> <h3 class="dashboard-section-title">소프트웨어 라이선스 현황</h3>
<div class="dashboard-layout-2col" style="margin-bottom: 1.5rem;"> <div class="dashboard-layout-2col" style="margin-bottom: 1.5rem;">
<div class="dashboard-card" data-action="sub-usage" style="cursor:pointer; min-height:auto;"> <div class="dashboard-card" data-action="sub-usage" style="cursor:pointer; min-height:auto;">
<span style="font-size:1rem; font-weight:700; color:var(--text-main);">구독 소프트웨어 사용율</span> <span style="font-size:1rem; font-weight:700; color:var(--text-main);">구독 소프트웨어 사용율</span>
@@ -67,23 +73,23 @@ export function renderSwDashboard(container: HTMLElement) {
<div class="dashboard-layout-2col" style="margin-bottom: 1.5rem;"> <div class="dashboard-layout-2col" style="margin-bottom: 1.5rem;">
<div class="dashboard-card" data-action="sub-exp" style="flex-direction:row; justify-content:space-between; align-items:center; cursor:pointer; min-height:auto;"> <div class="dashboard-card" data-action="sub-exp" style="flex-direction:row; justify-content:space-between; align-items:center; cursor:pointer; min-height:auto;">
<div style="flex:1;"> <div style="flex:1;">
<span style="font-size:1rem; font-weight:700; color:var(--text-main);">구독 SW 만료 예정 (30일 이내)</span> <span style="font-size:1rem; font-weight:700; color:var(--text-main);">구독 SW 만료 예정<br><span style="font-size:0.8rem;font-weight:400;color:var(--text-muted);">(30일 이내)</span></span>
<div style="font-size: 1.5rem; font-weight:700; color:${subExp > 0 ? 'var(--dash-danger)' : 'var(--text-main)'}; margin-top:0.5rem;">${subExp}개 제품</div> <div style="font-size: 1.5rem; font-weight:700; color:${subExp > 0 ? 'var(--dash-danger)' : 'var(--text-main)'}; margin-top:0.5rem;">${subExp}개 제품</div>
</div> </div>
<div style="width: 60px; height: 60px; border-radius: 50%; background: conic-gradient(var(--dash-danger) ${subExpPer}%, var(--border-color) 0); display:flex; justify-content:center; align-items:center;"> <div style="width: 50px; height: 50px; border-radius: 50%; background: conic-gradient(var(--dash-danger) ${subExpPer}%, var(--border-color) 0); display:flex; justify-content:center; align-items:center;">
<div style="width: 48px; height: 48px; border-radius: 50%; background: var(--white); display:flex; justify-content:center; align-items:center;"> <div style="width: 40px; height: 40px; border-radius: 50%; background: var(--white); display:flex; justify-content:center; align-items:center;">
<span style="font-size: 0.875rem; color:var(--text-muted); font-weight:600;">${subExpPer}%</span> <span style="font-size: 0.75rem; color:var(--text-muted); font-weight:600;">${subExpPer}%</span>
</div> </div>
</div> </div>
</div> </div>
<div class="dashboard-card" data-action="perm-exp" style="flex-direction:row; justify-content:space-between; align-items:center; cursor:pointer; min-height:auto;"> <div class="dashboard-card" data-action="perm-exp" style="flex-direction:row; justify-content:space-between; align-items:center; cursor:pointer; min-height:auto;">
<div style="flex:1;"> <div style="flex:1;">
<span style="font-size:1rem; font-weight:700; color:var(--text-main);">유지보수 만료 예정 (30일 이내)</span> <span style="font-size:1rem; font-weight:700; color:var(--text-main);">유지보수 만료 예정<br><span style="font-size:0.8rem;font-weight:400;color:var(--text-muted);">(30일 이내)</span></span>
<div style="font-size: 1.5rem; font-weight:700; color:${permExp > 0 ? 'var(--dash-danger)' : 'var(--text-main)'}; margin-top:0.5rem;">${permExp}개 제품</div> <div style="font-size: 1.5rem; font-weight:700; color:${permExp > 0 ? 'var(--dash-danger)' : 'var(--text-main)'}; margin-top:0.5rem;">${permExp}개 제품</div>
</div> </div>
<div style="width: 60px; height: 60px; border-radius: 50%; background: conic-gradient(var(--dash-danger) ${permExpPer}%, var(--border-color) 0); display:flex; justify-content:center; align-items:center;"> <div style="width: 50px; height: 50px; border-radius: 50%; background: conic-gradient(var(--dash-danger) ${permExpPer}%, var(--border-color) 0); display:flex; justify-content:center; align-items:center;">
<div style="width: 48px; height: 48px; border-radius: 50%; background: var(--white); display:flex; justify-content:center; align-items:center;"> <div style="width: 40px; height: 40px; border-radius: 50%; background: var(--white); display:flex; justify-content:center; align-items:center;">
<span style="font-size: 0.875rem; color:var(--text-muted); font-weight:600;">${permExpPer}%</span> <span style="font-size: 0.75rem; color:var(--text-muted); font-weight:600;">${permExpPer}%</span>
</div> </div>
</div> </div>
</div> </div>
@@ -92,7 +98,7 @@ export function renderSwDashboard(container: HTMLElement) {
<h3 class="dashboard-section-title">${currentYear}년 도입 비용 분석</h3> <h3 class="dashboard-section-title">${currentYear}년 도입 비용 분석</h3>
<div class="dashboard-layout-2col"> <div class="dashboard-layout-2col">
<div class="dashboard-card"> <div class="dashboard-card">
<h4 style="margin-bottom:1rem; font-size:0.9rem; color:var(--text-muted);">법인별 도입 금액 (원)</h4> <h4 style="margin-bottom:1rem; font-size:0.9rem; color:var(--text-muted);">구매법인별 도입 금액 (원)</h4>
<canvas id="chart-sw-corp"></canvas> <canvas id="chart-sw-corp"></canvas>
</div> </div>
<div class="dashboard-card"> <div class="dashboard-card">
@@ -105,45 +111,45 @@ export function renderSwDashboard(container: HTMLElement) {
setTimeout(() => { setTimeout(() => {
if (typeof Chart === 'undefined') return; if (typeof Chart === 'undefined') return;
const ctxCorp = (document.getElementById('chart-sw-corp') as HTMLCanvasElement)?.getContext('2d'); const ctxCorp = (document.getElementById('chart-sw-corp') as HTMLCanvasElement)?.getContext('2d');
const ctxCat = (document.getElementById('chart-sw-cat') as HTMLCanvasElement)?.getContext('2d');
if (ctxCorp) { if (ctxCorp) {
const chart = new Chart(ctxCorp, { new Chart(ctxCorp, {
type: 'bar', type: 'bar',
data: { labels: corps, datasets: [{ data: corps.map(c => costByCorp[c]), backgroundColor: 'rgba(30, 81, 73, 0.8)', borderRadius: 4 }] }, data: { labels: corps, datasets: [{ data: corps.map(c => costByCorp[c]), backgroundColor: 'rgba(30, 81, 73, 0.8)', borderRadius: 4 }] },
options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } } } options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } } }
}); });
state.activeCharts.push(chart);
} }
const ctxCat = (document.getElementById('chart-sw-cat') as HTMLCanvasElement)?.getContext('2d');
if (ctxCat) { if (ctxCat) {
const chart = new Chart(ctxCat, { new Chart(ctxCat, {
type: 'bar', type: 'bar',
data: { labels: categories, datasets: [{ data: categories.map(c => costByCat[c]), backgroundColor: 'rgba(59, 130, 246, 0.8)', borderRadius: 4 }] }, data: { labels: categories, datasets: [{ data: categories.map(c => costByCat[c]), backgroundColor: 'rgba(59, 130, 246, 0.8)', borderRadius: 4 }] },
options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } } } options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false } } }
}); });
state.activeCharts.push(chart);
} }
}, 100); }, 100);
container.querySelector('[data-action="sub-usage"]')?.addEventListener('click', () => openSwUsageDetail('구독 소프트웨어 사용 목록', state.masterData.sw.filter(sw => sw.type === '구독SW'))); container.querySelector('[data-action="sub-usage"]')?.addEventListener('click', () => openSwUsageDetail('구독 소프트웨어 사용 목록', state.masterData.subSw));
container.querySelector('[data-action="perm-usage"]')?.addEventListener('click', () => openSwUsageDetail('영구 소프트웨어 사용 목록', state.masterData.sw.filter(sw => sw.type === '영구SW'))); container.querySelector('[data-action="perm-usage"]')?.addEventListener('click', () => openSwUsageDetail('영구 소프트웨어 사용 목록', state.masterData.permSw));
container.querySelector('[data-action="sub-exp"]')?.addEventListener('click', () => openSwDashboardDetail('구독 SW 만료 예정 목록', state.masterData.sw.filter(sw => sw.type === '구독SW' && isSWExpiring(sw)))); container.querySelector('[data-action="sub-exp"]')?.addEventListener('click', () => openSwDashboardDetail('구독 SW 만료 예정 목록', state.masterData.subSw.filter(sw => isSWExpiring(sw))));
container.querySelector('[data-action="perm-exp"]')?.addEventListener('click', () => openSwDashboardDetail('유지보수 만료 예정 목록', state.masterData.sw.filter(sw => sw.type === '영구SW' && isSWExpiring(sw)))); container.querySelector('[data-action="perm-exp"]')?.addEventListener('click', () => openSwDashboardDetail('유지보수 만료 예정 목록', state.masterData.permSw.filter(sw => isSWExpiring(sw))));
} }
function isSWExpiring(sw: SoftwareAsset) { function isSWExpiring(sw: SoftwareAsset) {
if (sw.type === '구독SW' && sw.) { if (sw.type === '구독SW' && sw.) {
const parts = sw..split('~'); const endMs = new Date(normalizeDate(sw.)).getTime();
if (parts.length > 1) { const diffDays = (endMs - Date.now()) / (1000 * 60 * 60 * 24);
const endMs = new Date(normalizeDate(parts[1])).getTime(); return diffDays >= 0 && diffDays <= 30;
const diffDays = (endMs - Date.now()) / (1000 * 60 * 60 * 24);
return diffDays >= 0 && diffDays <= 30;
}
} else if (sw.type === '영구SW' && sw. && sw..includes('유지보수: ~')) { } else if (sw.type === '영구SW' && sw. && sw..includes('유지보수: ~')) {
try { try {
const endMs = new Date(normalizeDate(sw..split('~')[1])).getTime(); const parts = sw..split('~');
const diffDays = (endMs - Date.now()) / (1000 * 60 * 60 * 24); if (parts.length > 1) {
return diffDays >= 0 && diffDays <= 30; const endMs = new Date(normalizeDate(parts[1].trim())).getTime();
const diffDays = (endMs - Date.now()) / (1000 * 60 * 60 * 24);
return diffDays >= 0 && diffDays <= 30;
}
} catch { return false; } } catch { return false; }
} }
return false; return false;

View File

@@ -0,0 +1,116 @@
import { state } from '../../core/state';
import { openSwModal } from '../../components/Modal/SWModal';
import { formatPrice } from '../../core/utils';
import { createIcons, Cloud, CreditCard, DollarSign } from 'lucide';
export function renderCloudList(container: HTMLElement) {
// DB에서 직접 로드된 전용 배열을 사용하여 데이터 소스를 일원화함
const getFullList = () => state.masterData.cloud || [];
const filterBar = document.createElement('div');
filterBar.className = 'search-bar';
filterBar.innerHTML = `
<div class="search-item flex-1">
<label>통합 검색 (제품명/부서/계정명)</label>
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div>
<div class="search-item">
<label>결제수단</label>
<select id="filter-payment">
<option value="">전체 결제수단</option>
<option value="법인카드">법인카드</option>
<option value="인보이스">인보이스 (월별송금)</option>
</select>
</div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset">
<i data-lucide="refresh-ccw"></i> 필터 초기화
</button>
`;
container.appendChild(filterBar);
const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container';
const table = document.createElement('table');
table.innerHTML = `
<thead>
<tr>
<th style="text-align:center;">No.</th>
<th style="text-align:center;">플랫폼명</th>
<th style="text-align:center;">법인</th>
<th style="text-align:center;">담당부서</th>
<th style="text-align:center;">진행 프로젝트(사용용도)</th>
<th style="text-align:center;">계정명(관리자)</th>
<th style="text-align:center;">결제수단</th>
<th style="text-align:center;">결제일</th>
<th style="text-align:center;">당월 청구액</th>
<th style="text-align:center;">비고</th>
</tr>
</thead>
<tbody id="cloud-tbody"></tbody>
`;
tableWrapper.appendChild(table);
container.appendChild(tableWrapper);
const tbody = table.querySelector('tbody')!;
const updateTable = () => {
const keywordInput = document.getElementById('filter-keyword') as HTMLInputElement;
const paymentSelect = document.getElementById('filter-payment') as HTMLSelectElement;
const keyword = keywordInput ? keywordInput.value.toLowerCase().trim() : '';
const payment = paymentSelect ? paymentSelect.value : '';
const filtered = getFullList().filter(asset => {
const kwMatch = !keyword ||
(asset. || '').toLowerCase().includes(keyword) ||
(asset. || '').toLowerCase().includes(keyword) ||
(asset. || '').toLowerCase().includes(keyword);
const payMatch = !payment || asset. === payment;
return kwMatch && payMatch;
});
tbody.innerHTML = '';
if (filtered.length === 0) {
tbody.innerHTML = '<tr><td colspan="10" style="text-align:center; padding: 3rem; color: var(--text-muted);">등록된 클라우드 서비스가 없습니다.</td></tr>';
return;
}
filtered.forEach((asset, idx) => {
const tr = document.createElement('tr');
tr.style.cursor = 'pointer';
const paymentBadge = asset. === '법인카드'
? '<span style="color:#6366f1; font-weight:600;"><i data-lucide="credit-card" style="width:14px; height:14px; vertical-align:middle; margin-right:4px;"></i>법인카드 (' + (asset.||'미상') + ')</span>'
: (asset. === '인보이스'
? '<span style="color:#10b981; font-weight:600;"><i data-lucide="dollar-sign" style="width:14px; height:14px; vertical-align:middle; margin-right:4px;"></i>인보이스</span>'
: '<span style="color:var(--text-muted)">미설정</span>');
tr.innerHTML = `
<td style="text-align:center;">${idx+1}</td>
<td style="font-weight:600; color:var(--primary-color)"><i data-lucide="cloud" style="width:14px; height:14px; vertical-align:middle; margin-right:4px;"></i> ${asset.||'미지정'}</td>
<td style="text-align:center;">${asset.||''}</td>
<td style="text-align:center;">${asset.||''}</td>
<td>${asset.||''}</td>
<td>${asset.||''}</td>
<td style="text-align:center;">${paymentBadge}</td>
<td style="text-align:center;">${asset. ? asset. + '일' : ''}</td>
<td style="text-align:right; font-weight:600;">${asset. ? '₩ ' + formatPrice(asset.) : '₩ 0'}</td>
<td>${asset.||''}</td>
`;
tr.addEventListener('click', () => openSwModal(asset, 'view'));
tbody.appendChild(tr);
});
createIcons({ icons: { Cloud, CreditCard, DollarSign } });
};
document.getElementById('filter-keyword')?.addEventListener('input', updateTable);
document.getElementById('filter-payment')?.addEventListener('change', updateTable);
document.getElementById('btn-reset-filters')?.addEventListener('click', () => {
if (document.getElementById('filter-keyword')) (document.getElementById('filter-keyword') as HTMLInputElement).value = '';
if (document.getElementById('filter-payment')) (document.getElementById('filter-payment') as HTMLSelectElement).value = '';
updateTable();
});
updateTable();
}

View File

@@ -1,10 +1,10 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { openHwModal } from '../../components/Modal/HWModal'; import { openHwModal } from '../../components/Modal/HWModal';
import { formatInline } from '../../core/utils'; import { formatInline, sortAssets, formatPrice } from '../../core/utils';
import { createIcons, RefreshCcw } from 'lucide'; import { createIcons, RefreshCcw } from 'lucide';
export function renderEquipmentList(container: HTMLElement) { export function renderEquipmentList(container: HTMLElement) {
const fullList = state.masterData.hw.filter(a => a.type === '전산비품'); const fullList = sortAssets(state.masterData.equip);
const filterBar = document.createElement('div'); const filterBar = document.createElement('div');
filterBar.className = 'search-bar'; filterBar.className = 'search-bar';
@@ -16,7 +16,7 @@ export function renderEquipmentList(container: HTMLElement) {
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off"> <input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div> </div>
<div class="search-item"> <div class="search-item">
<label>법인</label> <label>구매법인</label>
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select> <select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
</div> </div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset"> <button id="btn-reset-filters" class="btn btn-outline btn-reset">
@@ -28,7 +28,7 @@ export function renderEquipmentList(container: HTMLElement) {
const tableWrapper = document.createElement('div'); const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container'; tableWrapper.className = 'table-container';
const table = document.createElement('table'); const table = document.createElement('table');
table.innerHTML = `<thead><tr><th>No</th><th>법인</th><th>유형</th><th>자산코드</th><th>명칭</th><th>위치</th><th>관리자</th><th>구매일</th><th>금액</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`; table.innerHTML = `<thead><tr><th>No</th><th>구매법인</th><th>현 사용조직</th><th>유형</th><th>자산번호</th><th>모델명</th><th>관리자</th><th>구매일</th><th>금액</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`;
tableWrapper.appendChild(table); tableWrapper.appendChild(table);
container.appendChild(tableWrapper); container.appendChild(tableWrapper);
@@ -42,7 +42,7 @@ export function renderEquipmentList(container: HTMLElement) {
const corp = corpSelect ? corpSelect.value : ''; const corp = corpSelect ? corpSelect.value : '';
const filtered = fullList.filter(asset => { const filtered = fullList.filter(asset => {
const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword); const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword);
const matchCorp = !corp || asset. === corp; const matchCorp = !corp || asset. === corp;
return matchKeyword && matchCorp; return matchKeyword && matchCorp;
}); });
@@ -59,16 +59,16 @@ export function renderEquipmentList(container: HTMLElement) {
tr.innerHTML = ` tr.innerHTML = `
<td>${idx+1}</td> <td>${idx+1}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${asset.||'-'}</td> <td>${asset.||''}</td>
<td>${asset.type}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${formatInline(asset.)}</td> <td>${formatInline(asset.)}</td>
<td>${formatInline(asset.)}</td> <td>${formatInline(asset._정 || asset.)}</td>
<td>${formatInline(asset.)}</td>
<td>${asset.||''}</td> <td>${asset.||''}</td>
<td>${asset.||''}</td> <td>${formatPrice(asset.)}</td>
<td><button class="btn btn-outline btn-sm">수정</button></td> <td><button class="btn btn-outline btn-sm">수정</button></td>
`; `;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset); }); tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view'); });
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
}; };

View File

@@ -0,0 +1,85 @@
import { state } from '../../core/state';
import { openHwModal } from '../../components/Modal/HWModal';
import { formatInline, sortAssets, formatPrice } from '../../core/utils';
import { createIcons, RefreshCcw } from 'lucide';
export function renderMobileList(container: HTMLElement) {
const fullList = sortAssets(state.masterData.mobile);
const filterBar = document.createElement('div');
filterBar.className = 'search-bar';
const corps = Array.from(new Set(fullList.map(a => a.))).filter(Boolean).sort();
filterBar.innerHTML = `
<div class="search-item flex-1">
<label>통합 검색 (자산코드/명칭)</label>
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div>
<div class="search-item">
<label>구매법인</label>
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
</div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset">
<i data-lucide="refresh-ccw"></i> 필터 초기화
</button>
`;
container.appendChild(filterBar);
const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container';
const table = document.createElement('table');
table.innerHTML = `<thead><tr><th>No</th><th>구매법인</th><th>현 사용조직</th><th>유형</th><th>자산번호</th><th>모델명</th><th>관리자</th><th>구매일</th><th>금액</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`;
tableWrapper.appendChild(table);
container.appendChild(tableWrapper);
const tbody = table.querySelector('tbody')!;
const updateTable = () => {
const keywordInput = document.getElementById('filter-keyword') as HTMLInputElement;
const corpSelect = document.getElementById('filter-corp') as HTMLSelectElement;
const keyword = keywordInput ? keywordInput.value.toLowerCase().trim() : '';
const corp = corpSelect ? corpSelect.value : '';
const filtered = fullList.filter(asset => {
const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword);
const matchCorp = !corp || asset. === corp;
return matchKeyword && matchCorp;
});
tbody.innerHTML = '';
if (filtered.length === 0) {
tbody.innerHTML = `<tr><td colspan="10" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`;
return;
}
filtered.forEach((asset, idx) => {
const tr = document.createElement('tr');
tr.style.cursor = 'pointer';
tr.innerHTML = `
<td>${idx+1}</td>
<td>${asset.}</td>
<td>${asset.||''}</td>
<td>${asset.type}</td>
<td>${asset.}</td>
<td>${formatInline(asset.)}</td>
<td>${formatInline(asset._정 || asset.)}</td>
<td>${asset.||''}</td>
<td>${formatPrice(asset.)}</td>
<td><button class="btn btn-outline btn-sm">수정</button></td>
`;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view'); });
tbody.appendChild(tr);
});
};
document.getElementById('filter-keyword')?.addEventListener('input', updateTable);
document.getElementById('filter-corp')?.addEventListener('change', updateTable);
document.getElementById('btn-reset-filters')?.addEventListener('click', () => {
(document.getElementById('filter-keyword') as HTMLInputElement).value = '';
(document.getElementById('filter-corp') as HTMLSelectElement).value = '';
updateTable();
});
updateTable();
}

View File

@@ -1,10 +1,10 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { openPcModal } from '../../components/Modal/PCModal'; import { openPcModal } from '../../components/Modal/PCModal';
import { formatInline } from '../../core/utils'; import { formatInline, sortAssets, formatPrice } from '../../core/utils';
import { createIcons, Paperclip, RefreshCcw } from 'lucide'; import { createIcons, Paperclip, RefreshCcw } from 'lucide';
export function renderPcList(container: HTMLElement) { export function renderPcList(container: HTMLElement) {
const fullList = state.masterData.hw.filter(a => a.type === '개인PC'); const fullList = sortAssets(state.masterData.pc);
const filterBar = document.createElement('div'); const filterBar = document.createElement('div');
filterBar.className = 'search-bar'; filterBar.className = 'search-bar';
@@ -16,11 +16,8 @@ export function renderPcList(container: HTMLElement) {
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off"> <input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div> </div>
<div class="search-item"> <div class="search-item">
<label>법인</label> <label>구매법인</label>
<select id="filter-corp"> <select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
<option value="">전체 법인</option>
${corps.map(c => `<option value="${c}">${c}</option>`).join('')}
</select>
</div> </div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset"> <button id="btn-reset-filters" class="btn btn-outline btn-reset">
<i data-lucide="refresh-ccw"></i> 필터 초기화 <i data-lucide="refresh-ccw"></i> 필터 초기화
@@ -31,7 +28,7 @@ export function renderPcList(container: HTMLElement) {
const tableWrapper = document.createElement('div'); const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container'; tableWrapper.className = 'table-container';
const table = document.createElement('table'); const table = document.createElement('table');
table.innerHTML = `<thead><tr><th>No</th><th>법인</th><th>자산코드</th><th>사용자</th><th>위치</th><th>CPU</th><th>RAM</th><th>Storage</th><th>구매일</th><th>금액</th><th>품의서</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`; table.innerHTML = `<thead><tr><th>No</th><th>구매법인</th><th>현 사용조직</th><th>자산코드</th><th>사용자</th><th>위치</th><th>CPU</th><th>RAM</th><th>Storage</th><th>구매일</th><th>금액</th><th>품의서</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`;
tableWrapper.appendChild(table); tableWrapper.appendChild(table);
container.appendChild(tableWrapper); container.appendChild(tableWrapper);
@@ -46,14 +43,14 @@ export function renderPcList(container: HTMLElement) {
const corp = corpSelect ? corpSelect.value : ''; const corp = corpSelect ? corpSelect.value : '';
const filtered = fullList.filter(asset => { const filtered = fullList.filter(asset => {
const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword); const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword);
const matchCorp = !corp || asset. === corp; const matchCorp = !corp || asset. === corp;
return matchKeyword && matchCorp; return matchKeyword && matchCorp;
}); });
tbody.innerHTML = ''; tbody.innerHTML = '';
if (filtered.length === 0) { if (filtered.length === 0) {
tbody.innerHTML = `<tr><td colspan="12" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`; tbody.innerHTML = `<tr><td colspan="13" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`;
return; return;
} }
@@ -65,6 +62,7 @@ export function renderPcList(container: HTMLElement) {
tr.innerHTML = ` tr.innerHTML = `
<td>${idx+1}</td> <td>${idx+1}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${asset.||''}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${asset.||''}</td> <td>${asset.||''}</td>
<td>${asset.||''}</td> <td>${asset.||''}</td>
@@ -72,11 +70,11 @@ export function renderPcList(container: HTMLElement) {
<td>${asset.RAM||''}</td> <td>${asset.RAM||''}</td>
<td>${formatInline(storage)}</td> <td>${formatInline(storage)}</td>
<td>${asset.||''}</td> <td>${asset.||''}</td>
<td>${asset.||''}</td> <td>${formatPrice(asset.)}</td>
<td style="text-align:center;">${asset. ? '<i data-lucide="paperclip" class="text-primary"></i>' : '-'}</td> <td style="text-align:center;">${asset. ? '<i data-lucide="paperclip" class="text-primary"></i>' : '-'}</td>
<td><button class="btn btn-outline btn-sm">수정</button></td> <td><button class="btn btn-outline btn-sm">수정</button></td>
`; `;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openPcModal(asset); }); tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openPcModal(asset, 'view'); });
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
createIcons({ icons: { Paperclip } }); createIcons({ icons: { Paperclip } });

View File

@@ -1,10 +1,10 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { openHwModal } from '../../components/Modal/HWModal'; import { openHwModal } from '../../components/Modal/HWModal';
import { formatInline, createBadge } from '../../core/utils'; import { formatInline, createBadge, sortAssets } from '../../core/utils';
import { createIcons, RefreshCcw } from 'lucide'; import { createIcons, RefreshCcw } from 'lucide';
export function renderServerList(container: HTMLElement) { export function renderServerList(container: HTMLElement) {
const fullList = state.masterData.hw.filter(a => a.type === '서버'); const fullList = sortAssets(state.masterData.server);
const filterBar = document.createElement('div'); const filterBar = document.createElement('div');
filterBar.className = 'search-bar'; filterBar.className = 'search-bar';
@@ -17,7 +17,7 @@ export function renderServerList(container: HTMLElement) {
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off"> <input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div> </div>
<div class="search-item"> <div class="search-item">
<label>법인</label> <label>구매법인</label>
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select> <select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
</div> </div>
<div class="search-item"> <div class="search-item">
@@ -33,7 +33,7 @@ export function renderServerList(container: HTMLElement) {
const tableWrapper = document.createElement('div'); const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container'; tableWrapper.className = 'table-container';
const table = document.createElement('table'); const table = document.createElement('table');
table.innerHTML = `<thead><tr><th>No</th><th>법인</th><th>현 사용조직</th><th>자산번호</th><th>용도</th><th>상세</th><th>설치위치</th><th>담당자</th><th>IP주소</th><th>모델명</th><th>OS</th><th>CPU/RAM</th><th>Storage</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`; table.innerHTML = `<thead><tr><th>No</th><th>구매법인</th><th>현 사용조직</th><th>자산번호</th><th>용도</th><th>상세</th><th>설치위치</th><th>담당자</th><th>IP주소</th><th>모델명</th><th>OS</th><th>CPU/RAM</th><th>Storage</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`;
tableWrapper.appendChild(table); tableWrapper.appendChild(table);
container.appendChild(tableWrapper); container.appendChild(tableWrapper);
@@ -89,7 +89,7 @@ export function renderServerList(container: HTMLElement) {
<td>${formatInline(storage)}</td> <td>${formatInline(storage)}</td>
<td><button class="btn btn-outline btn-sm">수정</button></td> <td><button class="btn btn-outline btn-sm">수정</button></td>
`; `;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset); }); tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view'); });
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
}; };

View File

@@ -1,24 +1,29 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { openStorageModal } from '../../components/Modal/StorageModal'; import { openHwModal } from '../../components/Modal/HWModal';
import { formatInline } from '../../core/utils'; import { formatInline, createBadge, sortAssets } from '../../core/utils';
import { createIcons, RefreshCcw } from 'lucide'; import { createIcons, RefreshCcw } from 'lucide';
export function renderStorageList(container: HTMLElement) { export function renderStorageList(container: HTMLElement) {
const fullList = state.masterData.hw.filter(a => a.type === '스토리지'); const fullList = sortAssets(state.masterData.storage);
const filterBar = document.createElement('div'); const filterBar = document.createElement('div');
filterBar.className = 'search-bar'; filterBar.className = 'search-bar';
const corps = Array.from(new Set(fullList.map(a => a.))).filter(Boolean).sort(); const corps = Array.from(new Set(fullList.map(a => a.))).filter(Boolean).sort();
const orgUnits = Array.from(new Set(fullList.map(a => a.))).filter(Boolean).sort();
filterBar.innerHTML = ` filterBar.innerHTML = `
<div class="search-item flex-1"> <div class="search-item flex-1">
<label>통합 검색 (자산코드/명칭/모델명)</label> <label>통합 검색 (자산번호/조직/모델명)</label>
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off"> <input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div> </div>
<div class="search-item"> <div class="search-item">
<label>법인</label> <label>구매법인</label>
<select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select> <select id="filter-corp"><option value="">전체 법인</option>${corps.map(c => `<option value="${c}">${c}</option>`).join('')}</select>
</div> </div>
<div class="search-item">
<label>현 사용조직</label>
<select id="filter-org-unit"><option value="">전체 조직</option>${orgUnits.map(o => `<option value="${o}">${o}</option>`).join('')}</select>
</div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset"> <button id="btn-reset-filters" class="btn btn-outline btn-reset">
<i data-lucide="refresh-ccw"></i> 필터 초기화 <i data-lucide="refresh-ccw"></i> 필터 초기화
</button> </button>
@@ -28,7 +33,7 @@ export function renderStorageList(container: HTMLElement) {
const tableWrapper = document.createElement('div'); const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-container'; tableWrapper.className = 'table-container';
const table = document.createElement('table'); const table = document.createElement('table');
table.innerHTML = `<thead><tr><th>No</th><th>법인</th><th>유형</th><th>자산코드</th><th>명칭</th><th>위치</th><th>모델명</th><th>용량</th><th>IP주소</th><th>구매일</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`; table.innerHTML = `<thead><tr><th>No</th><th>구매법인</th><th>현 사용조직</th><th>자산번호</th><th>용도</th><th>상세</th><th>설치위치</th><th>담당자</th><th>모델명</th><th>Storage</th><th>관리</th></tr></thead><tbody id="dynamic-tbody"></tbody>`;
tableWrapper.appendChild(table); tableWrapper.appendChild(table);
container.appendChild(tableWrapper); container.appendChild(tableWrapper);
@@ -37,14 +42,17 @@ export function renderStorageList(container: HTMLElement) {
const updateTable = () => { const updateTable = () => {
const keywordInput = document.getElementById('filter-keyword') as HTMLInputElement; const keywordInput = document.getElementById('filter-keyword') as HTMLInputElement;
const corpSelect = document.getElementById('filter-corp') as HTMLSelectElement; const corpSelect = document.getElementById('filter-corp') as HTMLSelectElement;
const orgSelect = document.getElementById('filter-org-unit') as HTMLSelectElement;
const keyword = keywordInput ? keywordInput.value.toLowerCase().trim() : ''; const keyword = keywordInput ? keywordInput.value.toLowerCase().trim() : '';
const corp = corpSelect ? corpSelect.value : ''; const corp = corpSelect ? corpSelect.value : '';
const orgUnit = orgSelect ? orgSelect.value : '';
const filtered = fullList.filter(asset => { const filtered = fullList.filter(asset => {
const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword); const matchKeyword = !keyword || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword) || String(asset.||'').toLowerCase().includes(keyword);
const matchCorp = !corp || asset. === corp; const matchCorp = !corp || asset. === corp;
return matchKeyword && matchCorp; const matchOrg = !orgUnit || asset. === orgUnit;
return matchKeyword && matchCorp && matchOrg;
}); });
tbody.innerHTML = ''; tbody.innerHTML = '';
@@ -56,29 +64,38 @@ export function renderStorageList(container: HTMLElement) {
filtered.forEach((asset, idx) => { filtered.forEach((asset, idx) => {
const tr = document.createElement('tr'); const tr = document.createElement('tr');
tr.style.cursor = 'pointer'; tr.style.cursor = 'pointer';
const mainManager = asset._정 || asset. || '';
const subManager = asset._부 || '';
const managerHtml = [mainManager ? `${createBadge('정', '#1E5149')} ${mainManager}` : '', subManager ? `${createBadge('부', '#9CA3AF')} ${subManager}` : ''].filter(v => v !== '').join(' / ');
const storage = [asset.SSD1, asset.SSD2, asset.].filter(v => v).join(' / ');
tr.innerHTML = ` tr.innerHTML = `
<td>${idx+1}</td> <td>${idx+1}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${asset.storage유형||''}</td> <td>${asset.||''}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td>${formatInline(asset.)}</td> <td>${formatInline(asset.)}</td>
<td>${formatInline(asset.)}</td>
<td>${formatInline(asset.)}</td> <td>${formatInline(asset.)}</td>
<td>${formatInline(asset.)}</td> <td>${managerHtml}</td>
<td>${asset.||''}</td> <td>${asset.||''}</td>
<td>${asset.IP주소||''}</td> <td>${formatInline(storage)}</td>
<td>${asset.||''}</td>
<td><button class="btn btn-outline btn-sm">수정</button></td> <td><button class="btn btn-outline btn-sm">수정</button></td>
`; `;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openStorageModal(asset); }); tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view'); });
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
}; };
document.getElementById('filter-keyword')?.addEventListener('input', updateTable); document.getElementById('filter-keyword')?.addEventListener('input', updateTable);
document.getElementById('filter-corp')?.addEventListener('change', updateTable); document.getElementById('filter-corp')?.addEventListener('change', updateTable);
document.getElementById('filter-org-unit')?.addEventListener('change', updateTable);
document.getElementById('btn-reset-filters')?.addEventListener('click', () => { document.getElementById('btn-reset-filters')?.addEventListener('click', () => {
(document.getElementById('filter-keyword') as HTMLInputElement).value = ''; (document.getElementById('filter-keyword') as HTMLInputElement).value = '';
(document.getElementById('filter-corp') as HTMLSelectElement).value = ''; (document.getElementById('filter-corp') as HTMLSelectElement).value = '';
(document.getElementById('filter-org-unit') as HTMLSelectElement).value = '';
updateTable(); updateTable();
}); });

View File

@@ -1,11 +1,14 @@
import { state } from '../../core/state'; import { state } from '../../core/state';
import { openSwModal } from '../../components/Modal/SWModal'; import { openSwModal } from '../../components/Modal/SWModal';
import { openSwUserModal } from '../../components/Modal/SWUserModal'; import { openSwUserModal } from '../../components/Modal/SWUserModal';
import { sortAssets, formatPrice } from '../../core/utils';
import { CORP_LIST } from '../../components/Modal/SharedData';
import { generateOptionsHTML } from '../../components/Modal/ModalUtils';
import { createIcons, Edit2, Users, RefreshCcw } from 'lucide'; import { createIcons, Edit2, Users, RefreshCcw } from 'lucide';
export function renderSwList(container: HTMLElement) { export function renderSwList(container: HTMLElement) {
const fullList = state.masterData.sw.filter(a => a.type === state.activeSubTab);
const isSub = state.activeSubTab === '구독SW'; const isSub = state.activeSubTab === '구독SW';
const fullList = sortAssets(isSub ? state.masterData.subSw : state.masterData.permSw);
const filterBar = document.createElement('div'); const filterBar = document.createElement('div');
filterBar.className = 'search-bar'; filterBar.className = 'search-bar';
@@ -26,10 +29,7 @@ export function renderSwList(container: HTMLElement) {
</div> </div>
<div class="search-item"> <div class="search-item">
<label>법인</label> <label>법인</label>
<select id="filter-corp"> <select id="filter-corp">${generateOptionsHTML(CORP_LIST, '', true)}</select>
<option value="">전체 법인</option>
<option value="한맥">한맥</option><option value="삼안">삼안</option><option value="바론">바론</option>
</select>
</div> </div>
<button id="btn-reset-filters" class="btn btn-outline btn-reset"> <button id="btn-reset-filters" class="btn btn-outline btn-reset">
<i data-lucide="refresh-ccw"></i> 필터 초기화 <i data-lucide="refresh-ccw"></i> 필터 초기화
@@ -50,7 +50,8 @@ export function renderSwList(container: HTMLElement) {
<th style="text-align:center;">부서</th> <th style="text-align:center;">부서</th>
<th style="text-align:center;">제품명</th> <th style="text-align:center;">제품명</th>
<th style="text-align:center;">구매일</th> <th style="text-align:center;">구매일</th>
${isSub ? '<th style="text-align:center;">구독일</th>' : ''} <th style="text-align:center;">시작일</th>
<th style="text-align:center;">만료일</th>
<th style="text-align:center;">금액</th> <th style="text-align:center;">금액</th>
<th style="text-align:center;">수량</th> <th style="text-align:center;">수량</th>
<th style="text-align:center;">사용가능</th> <th style="text-align:center;">사용가능</th>
@@ -82,40 +83,31 @@ export function renderSwList(container: HTMLElement) {
tbody.innerHTML = ''; tbody.innerHTML = '';
if (filtered.length === 0) { if (filtered.length === 0) {
tbody.innerHTML = `<tr><td colspan="${isSub ? 12 : 11}" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`; tbody.innerHTML = `<tr><td colspan="13" style="text-align:center; padding: 3rem; color: var(--text-muted);">검색 결과가 없습니다.</td></tr>`;
return; return;
} }
filtered.forEach((asset, idx) => { filtered.forEach((asset, idx) => {
const assigned = state.masterData.swUsers.filter(u => u.swId === asset.id).length; const assigned = state.masterData.swUsers.filter(u => u.sw_id === asset.id).length;
const qty = typeof asset. === 'number' ? asset.수량 : parseInt(asset.||'0', 10); const qty = typeof asset. === 'number' ? asset.수량 : parseInt(asset.||'0', 10);
const avail = qty - assigned; const avail = qty - assigned;
let statusHtml = ''; let statusHtml = '';
if (isSub) { if (isSub) {
let isExpired = false; let isExpired = false;
if (asset.) { if (asset.) {
const parts = asset..split('~'); const endDateStr = asset..replace(/\./g, '-');
const endDateStr = parts[parts.length - 1].trim().replace(/\./g, '-');
const endDate = new Date(endDateStr); const endDate = new Date(endDateStr);
if (!isNaN(endDate.getTime())) { if (!isNaN(endDate.getTime())) {
endDate.setHours(23, 59, 59, 999); endDate.setHours(23, 59, 59, 999);
if (endDate < new Date()) { if (endDate < new Date()) isExpired = true;
isExpired = true;
}
} }
} }
if (isExpired) { if (isExpired) statusHtml = `<span style="background: var(--danger, #ef4444); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">만료</span>`;
statusHtml = `<span style="background: var(--danger, #ef4444); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">만료</span>`; else statusHtml = `<span style="background: var(--primary-color, #1E5149); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">사용중</span>`;
} else {
statusHtml = `<span style="background: var(--primary-color, #1E5149); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">사용중</span>`;
}
} else { } else {
if (asset.) { if (asset.) statusHtml = `<span style="background: #3b82f6; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">유효</span>`;
statusHtml = `<span style="background: #3b82f6; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">유효</span>`; else statusHtml = `<span style="background: #6b7280; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">없음</span>`;
} else {
statusHtml = `<span style="background: #6b7280; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; white-space: nowrap;">없음</span>`;
}
} }
const tr = document.createElement('tr'); const tr = document.createElement('tr');
@@ -129,8 +121,9 @@ export function renderSwList(container: HTMLElement) {
<td>${asset.||''}</td> <td>${asset.||''}</td>
<td>${asset.}</td> <td>${asset.}</td>
<td style="text-align:center;">${asset.||''}</td> <td style="text-align:center;">${asset.||''}</td>
${isSub ? `<td style="text-align:center;">${asset.||''}</td>` : ''} <td style="text-align:center;">${asset.||''}</td>
<td style="text-align:right;">${asset.||'0'}</td> <td style="text-align:center;">${asset.||''}</td>
<td style="text-align:right;">${formatPrice(asset.)}</td>
<td style="text-align:center;">${qty}</td> <td style="text-align:center;">${qty}</td>
<td style="text-align:center;"><strong style="color: ${avail > 0 ? 'var(--primary-color)' : 'var(--danger)'}">${avail}</strong></td> <td style="text-align:center;"><strong style="color: ${avail > 0 ? 'var(--primary-color)' : 'var(--danger)'}">${avail}</strong></td>
<td style="display:flex; justify-content:center; align-items:center; gap:0.5rem;"> <td style="display:flex; justify-content:center; align-items:center; gap:0.5rem;">
@@ -139,12 +132,19 @@ export function renderSwList(container: HTMLElement) {
</td> </td>
`; `;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openSwModal(asset); }); tr.addEventListener('click', (e) => {
tr.querySelector('.btn-edit')?.addEventListener('click', (e) => { e.stopPropagation(); openSwModal(asset); }); if (!(e.target as HTMLElement).closest('button')) {
openSwModal(asset, 'view');
}
});
tr.querySelector('.btn-edit')?.addEventListener('click', (e) => {
e.stopPropagation();
openSwModal(asset, 'edit');
});
tr.querySelector('.btn-users')?.addEventListener('click', (e) => { e.stopPropagation(); openSwUserModal(asset); }); tr.querySelector('.btn-users')?.addEventListener('click', (e) => { e.stopPropagation(); openSwUserModal(asset); });
tbody.appendChild(tr); tbody.appendChild(tr);
}); });
createIcons({ icons: { Edit2, Users } }); createIcons({ icons: { Edit2, Users, RefreshCcw } });
}; };
document.getElementById('filter-keyword')?.addEventListener('input', updateTable); document.getElementById('filter-keyword')?.addEventListener('input', updateTable);

View File

@@ -3,6 +3,7 @@ import { renderPcList } from './List/PcListView';
import { renderServerList } from './List/ServerListView'; import { renderServerList } from './List/ServerListView';
import { renderStorageList } from './List/StorageListView'; import { renderStorageList } from './List/StorageListView';
import { renderEquipmentList } from './List/EquipmentListView'; import { renderEquipmentList } from './List/EquipmentListView';
import { renderMobileList } from './List/MobileListView';
import { renderSwList } from './List/SwListView'; import { renderSwList } from './List/SwListView';
import { renderCloudList } from './List/CloudListView'; import { renderCloudList } from './List/CloudListView';
import { createIcons, Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, RefreshCcw } from 'lucide'; import { createIcons, Download, Upload, FileSpreadsheet, Plus, X, LayoutDashboard, Monitor, Server, Database, Laptop, CalendarClock, Key, Cpu, Layers, Users, Paperclip, Edit2, RefreshCcw } from 'lucide';
@@ -26,6 +27,7 @@ export function renderSWTable(mainContent: HTMLElement) {
else if (tab === '서버') renderServerList(container); else if (tab === '서버') renderServerList(container);
else if (tab === '스토리지') renderStorageList(container); else if (tab === '스토리지') renderStorageList(container);
else if (tab === '전산비품') renderEquipmentList(container); else if (tab === '전산비품') renderEquipmentList(container);
else if (tab === '모바일기기') renderMobileList(container);
else { else {
container.innerHTML = `<div style="padding:2rem; color:var(--text-muted);">"${tab}" 탭에 대한 하드웨어 리스트 뷰가 정의되지 않았습니다.</div>`; container.innerHTML = `<div style="padding:2rem; color:var(--text-muted);">"${tab}" 탭에 대한 하드웨어 리스트 뷰가 정의되지 않았습니다.</div>`;
} }

View File

@@ -1,24 +1,4 @@
@echo off @echo off
chcp 65001 >nul chcp 65001 >nul
title HM ITAM 서버
echo ============================================
echo HM ITAM 개발 서버 시작
echo ============================================
echo.
cd /d "%~dp0" cd /d "%~dp0"
powershell -ExecutionPolicy Bypass -File "%~dp0start_server.ps1"
:: node_modules 존재 여부 확인
if not exist "node_modules" (
echo [INFO] node_modules가 없습니다. 패키지를 설치합니다...
echo.
call npm install
echo.
)
echo [INFO] 개발 서버를 시작합니다...
echo [INFO] 종료하려면 stop_server.bat을 실행하거나 이 창에서 Ctrl+C를 누르세요.
echo.
npm run dev

47
start_server.ps1 Normal file
View File

@@ -0,0 +1,47 @@
# HM ITAM Server Start Script
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
Write-Host "============================================" -ForegroundColor Cyan
Write-Host " HM ITAM System Start" -ForegroundColor Cyan
Write-Host "============================================" -ForegroundColor Cyan
Write-Host ""
Write-Host "[INFO] Checking Node.js and npm..."
if (-not (Get-Command node -ErrorAction SilentlyContinue)) {
Write-Host "[ERROR] Node.js not found." -ForegroundColor Red
Read-Host "Press Enter to exit"
exit
}
if (-not (Test-Path "node_modules")) {
Write-Host "[INFO] Installing dependencies..."
npm install
}
Write-Host "[INFO] Checking ports..."
$backendPort = 3000
$frontendPort = 8080
if (Get-NetTCPConnection -LocalPort $backendPort -ErrorAction SilentlyContinue) {
Write-Host "[WARNING] Port $backendPort [Backend] is already in use." -ForegroundColor Yellow
}
if (Get-NetTCPConnection -LocalPort $frontendPort -ErrorAction SilentlyContinue) {
Write-Host "[WARNING] Port $frontendPort [Frontend] is already in use." -ForegroundColor Yellow
}
Write-Host ""
Write-Host "[INFO] Starting Backend [Port: 3000]..."
Start-Process cmd -ArgumentList "/k npm run server"
Write-Host "[INFO] Starting Frontend [Port: 8080]..."
Start-Process cmd -ArgumentList "/k npm run dev"
Write-Host ""
Write-Host "============================================" -ForegroundColor Green
Write-Host " [OK] Server commands issued successfully." -ForegroundColor Green
Write-Host " [INFO] Please check the new windows for logs."
Write-Host "============================================" -ForegroundColor Green
Write-Host ""
Read-Host "Press Enter to continue..."

View File

@@ -1,35 +1,31 @@
@echo off @echo off
chcp 65001 >nul chcp 65001 >nul
title HM ITAM 서버 종료 title HM ITAM 서버 통합 종료 (강력 모드)
echo ============================================ echo ============================================
echo HM ITAM 개발 서버 종료 echo HM ITAM 통합 개발 환경 종료
echo ============================================ echo ============================================
echo. echo.
:: Vite 개발 서버가 사용하는 node 프로세스 찾기 set "frontend_port=8080"
set "found=0" set "backend_port=3000"
for /f "tokens=2" %%a in ('netstat -ano ^| findstr ":5173" ^| findstr "LISTENING" 2^>nul') do ( echo [INFO] 서버 프로세스를 정밀 검색 중...
set "found=1"
)
if "%found%"=="0" (
echo [INFO] 실행 중인 Vite 개발 서버를 찾을 수 없습니다.
echo.
pause
exit /b 0
)
echo [INFO] 포트 5173에서 실행 중인 서버를 종료합니다...
echo. echo.
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":5173" ^| findstr "LISTENING"') do ( :: 백엔드 종료 (3000)
echo [INFO] PID %%a 프로세스를 종료합니다... echo [INFO] 백엔드 서버(Port: %backend_port%) 종료 시도...
taskkill /PID %%a /F >nul 2>&1 powershell -Command "$pids = Get-NetTCPConnection -LocalPort %backend_port% -ErrorAction SilentlyContinue | Select-Object -ExpandProperty OwningProcess -Unique; if ($pids) { foreach ($pid in $pids) { Stop-Process -Id $pid -Force -ErrorAction SilentlyContinue; Write-Host '[OK] PID'$pid' 종료됨.' } } else { Write-Host '[INFO] 실행 중인 백엔드 서버가 없습니다.' }"
)
:: 프론트엔드 종료 (8080)
echo.
echo [INFO] 프론트엔드 서버(Port: %frontend_port%) 종료 시도...
powershell -Command "$pids = Get-NetTCPConnection -LocalPort %frontend_port% -ErrorAction SilentlyContinue | Select-Object -ExpandProperty OwningProcess -Unique; if ($pids) { foreach ($pid in $pids) { Stop-Process -Id $pid -Force -ErrorAction SilentlyContinue; Write-Host '[OK] PID'$pid' 종료됨.' } } else { Write-Host '[INFO] 실행 중인 프론트엔드 서버가 없습니다.' }"
echo. echo.
echo [OK] 서버가 종료되었습니다. echo ============================================
echo [OK] 모든 종료 명령을 전달했습니다.
echo [HINT] 여전히 종료되지 않는다면 '관리자 권한'으로 실행하세요.
echo ============================================
echo. echo.
pause pause

BIN
temp_sw.txt Normal file

Binary file not shown.