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 {

View File

@@ -3427,6 +3427,7 @@
MH.BEFORE_DATA,
MH.AFTER_DATA,
MH.CHANGE_USER,
USER_NAME(MH.CHANGE_USER) AS CHANGE_USER_NAME,
TO_CHAR(MH.CHANGE_DATE, 'YYYY-MM-DD HH24:MI:SS') AS CHANGE_DATE,
-- MBOM_HEADER 정보 조인
MHD.MBOM_NO AS MBOM_PART_NO,