로그인 차단 관련 메세지 변경
This commit is contained in:
@@ -92,7 +92,8 @@
|
||||
'<%= localeMessage.getString("portalUser.roleName") %>',
|
||||
'<%= localeMessage.getString("portalUser.userStatus") %>',
|
||||
'<%= localeMessage.getString("portalUser.createOn") %>',
|
||||
'<%= localeMessage.getString("portalUser.approvalStatus") %>'
|
||||
'<%= localeMessage.getString("portalUser.approvalStatus") %>',
|
||||
'<%= localeMessage.getString("portalUser.accountLockYn") %>'
|
||||
],
|
||||
colModel: [
|
||||
{name: 'rowNum', align: 'center', width: '30', sortable: false},
|
||||
@@ -104,7 +105,8 @@
|
||||
{name: 'roleCodeDescription', align: 'center', width: "80"},
|
||||
{name: 'userStatusDescription', align: 'center', width: "50"},
|
||||
{name: 'createdDate', align: 'center', width: "100", formatter: timeStampFormat},
|
||||
{name: 'approvalStatusDescription', align: 'center', width: "50"}
|
||||
{name: 'approvalStatusDescription', align: 'center', width: "50"},
|
||||
{name: 'accountLockYn', align: 'center', width: "50"}
|
||||
],
|
||||
jsonReader: {
|
||||
repeatitems: false
|
||||
|
||||
@@ -184,6 +184,9 @@
|
||||
} else {
|
||||
$('#orgInfoSection').hide();
|
||||
}
|
||||
|
||||
$("select[name=accountLockYn]").val(data.accountLockYn);
|
||||
|
||||
|
||||
// 25.09.23 - 마스킹 해제 상태를 기본으로 적용 / Rinjae
|
||||
updateButtonStates($("#userStatus").val(), true);
|
||||
@@ -633,6 +636,19 @@
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><%= getRequiredLabel(localeMessage.getString("portalUser.accountLockYn")) %></th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="accountLockYn" id="accountLockYn">
|
||||
<option value="Y">Y</option>
|
||||
<option value="N">N</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<th></th>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
|
||||
@@ -50,4 +50,5 @@ public class PortalUserUI {
|
||||
@DateTimeFormat(pattern = "yyyyMMddHHmmss")
|
||||
private LocalDateTime lastModifiedDate;
|
||||
|
||||
private String accountLockYn;
|
||||
}
|
||||
|
||||
@@ -2728,6 +2728,7 @@ portalUser.mobile = \uD734\uB300\uD3F0\uBC88\uD638
|
||||
portalUser.roleName = \uAD8C\uD55C
|
||||
portalUser.emailAddr =\uC774\uBA54\uC77C \uC544\uC774\uB514
|
||||
portalUser.approvalStatus =\uC2B9\uC778\uC0C1\uD0DC
|
||||
portalUser.accountLockYn =\uCC28\uB2E8\uC5EC\uBD80
|
||||
|
||||
portalUserDetail.title =\uAC00\uC785\uC790\uC815\uBCF4
|
||||
portalOrgDetail.title=\uBC95\uC778 \uC815\uBCF4
|
||||
|
||||
Reference in New Issue
Block a user