mbom변경이력 수정한 사람 id -> name으로 변경

This commit is contained in:
2026-01-07 10:40:26 +09:00
parent 4bbd0c1e4e
commit 2d836456c6
2 changed files with 3 additions and 1 deletions

View File

@@ -524,11 +524,12 @@ function generateHistoryHtml(historyList) {
var changeType = history.CHANGE_TYPE || "UNKNOWN";
var changeDate = history.CHANGE_DATE || history.REGDATE || "";
var changeUser = history.CHANGE_USER || "";
var changeUserName = history.CHANGE_USER_NAME || "";
// 이력 헤더
html += "<div style='margin-bottom: 40px;'>";
html += "<h3 style='background-color: #333; color: white; padding: 10px;'>";
html += "이력 #" + (i + 1) + " - " + changeType + " (" + changeDate + " / " + changeUser + ")";
html += "이력 #" + (i + 1) + " - " + changeType + " (" + changeDate + " / " + changeUserName + ")";
html += "</h3>";
try {