Procházet zdrojové kódy

활동회원목록 - 기본정보탭 최종로그인일시 수정

ChoiSooHwan před 5 roky
rodič
revize
79dd17a08b

+ 7 - 7
src/main/webapp/WEB-INF/views/customer/CustomerDetailForm.html

@@ -192,7 +192,7 @@
 										<th class="dashR">가입일시</th>
 										<td class="dashR" id="joinDt" name="joinDt"></td>
 										<th class="dashR">최종로그인일시</th>
-										<td class="dashR" id="loginDt" name="loginDt"></td>
+										<td class="dashR" id="loginLdt" name="loginLdt"></td>
 									</tr>
 									<tr>
 										<th class="dashR">내외국인</th>
@@ -839,7 +839,7 @@
 			}
 		},
 		{headerName: "삭제", field: "delYn", width: 50, cellClass: 'text-center'},
-		{headerName: "수정자", field: "updNo", width: 100, cellClass: 'text-center'},
+		{headerName: "수정자", field: "regNm", width: 100, cellClass: 'text-center'},
 		{
 			headerName: "수정일시", field: "updDt", width: 150, cellClass: 'text-center',
 			cellRenderer: function (params) {
@@ -1212,8 +1212,8 @@
 					$('#managedDt').text(gagaAgGrid.toDateTimeFormat(data.managedDt));
 					$('#joinDt').text(gagaAgGrid.toDateTimeFormat(data.joinDt));
 
-					let loginDt = fnGetLoginDt(data.loginDt);
-					$('#loginDt').text(loginDt);
+					let loginLdt = fnGetloginLdt(data.loginLdt);
+					$('#loginLdt').text(loginLdt);
 
 					let foreignerYn = data.foreignerYn === 'Y' ? '외국인' : '내국인';
 					$('#foreignerYn').text(foreignerYn);
@@ -1425,10 +1425,10 @@
 	};
 
 	// 최종로그인 일시
-	var fnGetLoginDt = function (loginDt) {
+	var fnGetloginLdt = function (loginLdt) {
 		let result = '로그인 이력이 없습니다.';
-		if (!gagajf.isNull(loginDt)) {
-			result = gagaAgGrid.toDateTimeFormat(loginDt);
+		if (!gagajf.isNull(loginLdt)) {
+			result = gagaAgGrid.toDateTimeFormat(loginLdt);
 		}
 		return result;
 	};