feat: restore database from backup and fix date formatting in restore script

This commit is contained in:
2026-04-23 13:37:45 +09:00
parent b996b18dbc
commit e5b4eb8295
26 changed files with 2027 additions and 1662 deletions

View File

@@ -1,78 +1,92 @@
import { state } from '../../core/state';
import { openHwModal } from '../../components/Modal/HWModal';
import { formatInline, sortAssets } from '../../core/utils';
import { createIcons, Paperclip, RefreshCcw } from 'lucide';
export function renderPcList(filterKeyword: string = '') {
const container = document.getElementById('view-container');
if (!container) return;
export function renderPcList(container: HTMLElement) {
const fullList = sortAssets(state.masterData.pc);
const filterBar = document.createElement('div');
filterBar.className = 'search-bar';
const corps = Array.from(new Set(fullList.map(a => a.))).filter(Boolean).sort();
const pcs = state.masterData.pc.filter(pc =>
pc.?.includes(filterKeyword) ||
pc.?.includes(filterKeyword) ||
pc.?.includes(filterKeyword) ||
pc.?.includes(filterKeyword)
);
container.innerHTML = `
<div class="view-header">
<div class="header-left">
<h2>개인PC 자산 현황</h2>
<span class="count-badge">총 ${pcs.length}대</span>
</div>
<div class="header-actions">
<button id="btn-add-pc" class="btn btn-primary"><i data-lucide="plus"></i> 신규 등록</button>
</div>
filterBar.innerHTML = `
<div class="search-item flex-1">
<label>통합 검색 (자산코드/사용자)</label>
<input type="text" id="filter-keyword" placeholder="검색어를 입력하세요..." autocomplete="off">
</div>
<div class="table-container">
<table class="itam-table">
<thead>
<tr>
<th>구매법인</th>
<th>자산번호</th>
<th>실사용조직</th>
<th>사용자</th>
<th>모델명</th>
<th>사양 (CPU/RAM)</th>
<th>도입일</th>
<th>관리</th>
</tr>
</thead>
<tbody>
${pcs.length === 0 ? '<tr><td colspan="8" class="empty-row">데이터가 없습니다.</td></tr>' :
pcs.map(pc => `
<tr class="asset-row" data-id="${pc.id}">
<td>${pc. || '-'}</td>
<td><span class="code-link">${pc. || pc. || '미부여'}</span></td>
<td>${pc. || pc. || '-'}</td>
<td>${pc. || '-'}</td>
<td>${pc. || '-'}</td>
<td><small>${pc.CPU || '-'} / ${pc.RAM || '-'}</small></td>
<td>${pc. || pc. || '-'}</td>
<td><button class="btn btn-sm btn-outline btn-detail" data-id="${pc.id}">상세</button></td>
</tr>
`).join('')}
</tbody>
</table>
<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);
// 이벤트 바인딩
container.querySelectorAll('.asset-row, .btn-detail').forEach(el => {
el.addEventListener('click', (e) => {
e.stopPropagation();
const id = (el as HTMLElement).getAttribute('data-id');
const asset = state.masterData.pc.find(a => a.id === id);
if (asset) openHwModal(asset, 'view');
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>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);
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="13" 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 storage = [asset.SSD1, asset.SSD2, asset.HDD1].filter(v => v).join(' / ');
tr.innerHTML = `
<td>${idx+1}</td>
<td>${asset.}</td>
<td>${asset.||''}</td>
<td>${asset.}</td>
<td>${asset.||''}</td>
<td>${asset.||''}</td>
<td>${asset.CPU||''}</td>
<td>${asset.RAM||''}</td>
<td>${formatInline(storage)}</td>
<td>${asset. || asset. || ''}</td>
<td>${asset.||''}</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>
`;
tr.addEventListener('click', (e) => { if (!(e.target as HTMLElement).closest('button')) openHwModal(asset, 'view'); });
tbody.appendChild(tr);
});
createIcons({ icons: { Paperclip } });
};
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();
});
document.getElementById('btn-add-pc')?.addEventListener('click', () => {
const newPc: any = {
id: Math.random().toString(36).substring(2, 9),
type: '개인PC',
: 'HM',
: '전산팀',
: '사용중'
};
openHwModal(newPc, 'add');
});
updateTable();
}