일괄 메뉴별 화면 상의 비정상적인 작동 및 오류 부분 수정
This commit is contained in:
@@ -214,7 +214,7 @@ $(document).ready(function() {
|
||||
</div><!-- end content_top -->
|
||||
<div class="content_middle" id="content_middle">
|
||||
<div class="search_wrap">
|
||||
<img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/>
|
||||
<%-- <img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/> --%>
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
</div>
|
||||
<div class="title">진행작업 관리</div>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -13,97 +13,96 @@
|
||||
<jsp:include page="/jsp/common/include/css.jsp"/>
|
||||
<jsp:include page="/jsp/common/include/script.jsp"/>
|
||||
<script language="javascript" >
|
||||
var url = '<c:url value="/bap/transaction/transactionTraceMan.json" />';
|
||||
var url_view = '<c:url value="/bap/transaction/transactionTraceMan.view" />';
|
||||
var url_excel = '<c:url value="/common/noauth/excel/listGridToExcel.json" />';
|
||||
|
||||
function init( callback ) {
|
||||
|
||||
// $("input[name=searchStartYYYYMMDD],input[name=searchEndYYYYMMDD]").inputmask({ alias: "datetime",autoUnmask: true, inputFormat : "yyyy-mm-dd",outputFormat : "yyyymmdd" });
|
||||
// $("input[name=searchStartHHMM],input[name=searchEndHHMM]").inputmask({ alias: "datetime",autoUnmask: true, inputFormat : "HH:MM:ss",outputFormat : "HHMMss" });
|
||||
var url = '<c:url value="/bap/transaction/transactionTraceMan.json" />';
|
||||
var url_view = '<c:url value="/bap/transaction/transactionTraceMan.view" />';
|
||||
|
||||
$("input[name=searchStartYYYYMMDD],input[name=searchEndYYYYMMDD]").inputmask("yyyy-mm-dd",{'autoUnmask':true});
|
||||
$("input[name=searchStartHHMM],input[name=searchEndHHMM]").inputmask("hh:mm:ss",{'autoUnmask':true});
|
||||
function init( callback ) {
|
||||
|
||||
/* $("input[name=searchStartYYYYMMDD],input[name=searchEndYYYYMMDD]").inputmask({ alias: "datetime",autoUnmask: true, inputFormat : "yyyy-mm-dd",outputFormat : "yyyymmdd" });
|
||||
$("input[name=searchStartHHMM],input[name=searchEndHHMM]").inputmask({ alias: "datetime",autoUnmask: true, inputFormat : "HH:MM:ss",outputFormat : "HHMMss" }); */
|
||||
|
||||
|
||||
var searchStartYYYYMMDD = "${param.searchStartYYYYMMDD}";
|
||||
var searchEndYYYYMMDD = "${param.searchEndYYYYMMDD}";
|
||||
var searchStartHHMM = "${param.searchStartHHMM}";
|
||||
var searchEndHHMM = "${param.searchEndHHMM}";
|
||||
|
||||
if ( searchStartYYYYMMDD == null || searchStartYYYYMMDD == '') {
|
||||
$("input[name=searchStartYYYYMMDD]").val(getToday());
|
||||
}
|
||||
|
||||
if ( searchEndYYYYMMDD == null || searchEndYYYYMMDD == '') {
|
||||
$("input[name=searchEndYYYYMMDD]").val(getToday());
|
||||
}
|
||||
|
||||
if ( searchStartHHMM == null || searchStartHHMM == '') {
|
||||
$("input[name=searchStartHHMM]").val('000000');
|
||||
}
|
||||
|
||||
if ( searchEndHHMM == null || searchEndHHMM == '') {
|
||||
$("input[name=searchEndHHMM]").val('235959');
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:url,
|
||||
dataType:"json",
|
||||
data:{cmd: 'LIST_INIT_COMBO'},
|
||||
success:function(json) {
|
||||
new makeOptions("CODE","NAME").setObj($("select[name=searchBjobBzwkDstcd]")).setNoValueInclude(true).setNoValue('','전체').setData(json.bjobBzwkDstcd).rendering();
|
||||
$("select[name=searchEaiBzwkDstcd]").searchable();
|
||||
putSelectFromParam();
|
||||
if (typeof callback === 'function') {
|
||||
callback();
|
||||
$("input[name=searchStartYYYYMMDD],input[name=searchEndYYYYMMDD]").inputmask("yyyy-mm-dd",{'autoUnmask':true});
|
||||
$("input[name=searchStartHHMM],input[name=searchEndHHMM]").inputmask("hh:mm:ss",{'autoUnmask':true});
|
||||
var searchStartYYYYMMDD = "${param.searchStartYYYYMMDD}";
|
||||
var searchEndYYYYMMDD = "${param.searchEndYYYYMMDD}";
|
||||
var searchStartHHMM = "${param.searchStartHHMM}";
|
||||
var searchEndHHMM = "${param.searchEndHHMM}";
|
||||
|
||||
if ( searchStartYYYYMMDD == null || searchStartYYYYMMDD == ''){
|
||||
$("input[name=searchStartYYYYMMDD]").val(getToday());
|
||||
}
|
||||
|
||||
if ( searchEndYYYYMMDD == null || searchEndYYYYMMDD == ''){
|
||||
$("input[name=searchEndYYYYMMDD]").val(getToday());
|
||||
}
|
||||
|
||||
if ( searchStartHHMM == null || searchStartHHMM == ''){
|
||||
$("input[name=searchStartHHMM]").val('000000');
|
||||
}
|
||||
|
||||
if ( searchEndHHMM == null || searchEndHHMM == ''){
|
||||
$("input[name=searchEndHHMM]").val('235959');
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:url,
|
||||
dataType:"json",
|
||||
data:{cmd: 'LIST_INIT_COMBO'},
|
||||
success:function(json){
|
||||
new makeOptions("CODE","NAME").setObj($("select[name=searchBjobBzwkDstcd]")).setNoValueInclude(true).setNoValue('','전체').setData(json.bjobBzwkDstcd).rendering();
|
||||
$("select[name=searchEaiBzwkDstcd]").searchable();
|
||||
putSelectFromParam();
|
||||
if (typeof callback === 'function') {
|
||||
callback();
|
||||
}
|
||||
},
|
||||
error:function(e){
|
||||
// alert(e.responseText);
|
||||
}
|
||||
},
|
||||
error:function(e){
|
||||
alert(e.responseText);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function detail() {
|
||||
var start = $("input[name=searchStartYYYYMMDD]").val().replace("-","")+$("input[name=searchStartHHMM]").val().replace(":","");
|
||||
var end = $("input[name=searchEndYYYYMMDD]").val().replace("-","")+$("input[name=searchEndHHMM]").val().replace(":","");
|
||||
$("input[name=searchStartTime]").val(start);
|
||||
$("input[name=searchEndTime]").val(end);
|
||||
function detail(){
|
||||
var start = $("input[name=searchStartYYYYMMDD]").val().replace("-","")+$("input[name=searchStartHHMM]").val().replace(":","");
|
||||
var end = $("input[name=searchEndYYYYMMDD]").val().replace("-","")+$("input[name=searchEndHHMM]").val().replace(":","");
|
||||
$("input[name=searchStartTime]").val(start);
|
||||
$("input[name=searchEndTime]").val(end);
|
||||
|
||||
var postData = getSearchForJqgrid("cmd","LIST"); //jqgrid에서는 object 로
|
||||
$("#grid").setGridParam({ url:url,postData: postData }).trigger("reloadGrid");
|
||||
}
|
||||
|
||||
function resend(bjobDmndMsgID, bjobDmndSubMsgID, fileTrsmtLogID, sndRecvFileName){
|
||||
|
||||
if ( confirm( "해당 건을 재 전송 하시겠습니까?" ) != true ){
|
||||
return;
|
||||
}
|
||||
|
||||
var postData = new Array();
|
||||
postData.push({ name: "cmd" , value:"TRANSACTION_RESEND"});
|
||||
postData.push({ name: "bjobDmndMsgID" , value:bjobDmndMsgID});
|
||||
postData.push({ name: "bjobDmndSubMsgID" , value:bjobDmndSubMsgID});
|
||||
postData.push({ name: "fileTrsmtLogID" , value:fileTrsmtLogID});
|
||||
postData.push({ name: "sndRecvFileName" , value:sndRecvFileName});
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:url,
|
||||
data:postData,
|
||||
success:function(args){
|
||||
debugger;
|
||||
$("#grid").trigger("reloadGrid");
|
||||
alert( args.result );
|
||||
},
|
||||
error:function(e){
|
||||
// alert(e.responseText);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var postData = getSearchForJqgrid("cmd","LIST"); //jqgrid에서는 object 로
|
||||
$("#grid").setGridParam({ url:url,postData: postData }).trigger("reloadGrid");
|
||||
}
|
||||
|
||||
function resend(bjobDmndMsgID, bjobDmndSubMsgID, fileTrsmtLogID, sndRecvFileName, bjobMsgDstcd) {
|
||||
|
||||
if ( confirm( "해당 건을 재 전송 하시겠습니까?" ) != true ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var postData = new Array();
|
||||
postData.push({ name: "cmd" , value:"TRANSACTION_RESEND"});
|
||||
postData.push({ name: "bjobDmndMsgID" , value:bjobDmndMsgID});
|
||||
postData.push({ name: "bjobDmndSubMsgID" , value:bjobDmndSubMsgID});
|
||||
postData.push({ name: "fileTrsmtLogID" , value:fileTrsmtLogID});
|
||||
postData.push({ name: "sndRecvFileName" , value:sndRecvFileName});
|
||||
postData.push({ name: "bjobMsgDstcd" , value:bjobMsgDstcd});
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:url,
|
||||
data:postData,
|
||||
success:function(args){
|
||||
$("#grid").trigger("reloadGrid");
|
||||
alert( args.result );
|
||||
},
|
||||
error:function(e){
|
||||
alert(e.responseText);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
$(document).ready(function() {
|
||||
init( detail);
|
||||
$('#grid').jqGrid({
|
||||
datatype:"json",
|
||||
@@ -114,7 +113,6 @@ $(document).ready(function() {
|
||||
'SUBUUID',
|
||||
'전송로그ID',
|
||||
'프레임웍구분',
|
||||
'인터페이스ID',
|
||||
'업무구분',
|
||||
'기관명',
|
||||
'파일명',
|
||||
@@ -131,7 +129,6 @@ $(document).ready(function() {
|
||||
{ name : 'BJOBDMNDSUBMSGID' , align : 'left' , hidden:true },
|
||||
{ name : 'FILETRSMTLOGID' , align : 'left' , hidden:true },
|
||||
{ name : 'FRAMEWORKGB' , align : 'center' , width:40 },
|
||||
{ name : 'BJOBMSGDSTCD' , align : 'left' , width:60 },
|
||||
{ name : 'BJOBBZWKNAME' , align : 'left' , width:60 },
|
||||
{ name : 'OSIDINSTINAME' , align : 'left' , width:60 },
|
||||
{ name : 'SNDRCVFILENAME' , align : 'left' , width:60 },
|
||||
@@ -147,6 +144,7 @@ $(document).ready(function() {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
},
|
||||
{ name : 'FILETRSMTSTARTHMS' , align:'center' , width:'80' , formatter: timeStampFormat },
|
||||
{ name : 'FILETRSMTENDHMS' , align:'center' , width:'80' , formatter: timeStampFormat },
|
||||
@@ -194,13 +192,15 @@ $(document).ready(function() {
|
||||
url2 = url2 + "&bjobDmndSubMsgID=" + bjobDmndSubMsgID;
|
||||
goNav(url2);
|
||||
},
|
||||
loadComplete:function (d) {
|
||||
loadComplete:function (d){
|
||||
var colModel = $(this).getGridParam("colModel");
|
||||
for(var i = 0 ; i< colModel.length; i++){
|
||||
$(this).setColProp(colModel[i].name, {sortable : false});
|
||||
$(this).setColProp(colModel[i].name, {sortable : false});
|
||||
}
|
||||
},
|
||||
gridComplete: function() {
|
||||
|
||||
},
|
||||
gridComplete: function(){
|
||||
debugger;
|
||||
var ids = $(this).getDataIDs();
|
||||
for(var i=0;i<ids.length;i++){
|
||||
var cl = ids[i];
|
||||
@@ -209,20 +209,19 @@ $(document).ready(function() {
|
||||
var bjobDmndSubMsgID = rowData['BJOBDMNDSUBMSGID'];
|
||||
var fileTrsmtLogID = rowData['FILETRSMTLOGID'];
|
||||
var sndRecvFileName = rowData['SNDRCVFILENAME'];
|
||||
var bjobMsgDstcd = rowData['BJOBMSGDSTCD'];
|
||||
|
||||
var sndRcv = rowData['SNDRCV'];
|
||||
if ( sndRcv == '송신' || fileTrsmtLogID.trim() != '' ) {
|
||||
var be = "<input style='height:22px;width:60px;' type='button' value='재전송' onclick=\"resend('"+bjobDmndMsgID+"','"+bjobDmndSubMsgID+"','"+fileTrsmtLogID+"','"+sndRecvFileName+"','"+bjobMsgDstcd+"');\" />";
|
||||
if ( sndRcv == '송신' || fileTrsmtLogID.trim() != '' ){
|
||||
var be = "<input style='height:22px;width:60px;' type='button' value='재전송' onclick=\"resend('"+bjobDmndMsgID+"','"+bjobDmndSubMsgID+"','"+fileTrsmtLogID+"','"+sndRecvFileName+"');\" />";
|
||||
$(this).setRowData(ids[i],{RESEND:be});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
resizeJqGridWidth('grid','content_middle','1000');
|
||||
|
||||
$("#btn_search").click(function() {
|
||||
$("#btn_search").click(function(){
|
||||
var start = $("input[name=searchStartYYYYMMDD]").val().replace("-","")+$("input[name=searchStartHHMM]").val().replace(":","");
|
||||
var end = $("input[name=searchEndYYYYMMDD]").val().replace("-","")+$("input[name=searchEndHHMM]").val().replace(":","");
|
||||
$("input[name=searchStartTime]").val(start);
|
||||
@@ -231,106 +230,99 @@ $(document).ready(function() {
|
||||
$("#grid").setGridParam({ postData: postData ,page : "1" }).trigger("reloadGrid");
|
||||
});
|
||||
|
||||
$("input[name^=search]").keydown(function(key) {
|
||||
$("input[name^=search]").keydown(function(key){
|
||||
if (key.keyCode == 13){
|
||||
$("#btn_search").click();
|
||||
}
|
||||
});
|
||||
|
||||
$("#btn_excel").click(function(event) {
|
||||
event.stopPropagation(); // Do not propagate the event.
|
||||
// Create an object that will manage to download the file.
|
||||
var merge = new Array();
|
||||
gridToExcelSubmit(url_excel, "LIST_GRID_TO_EXCEL", $("#grid"), $("#ajaxForm"), "거래 추적", merge);
|
||||
return false;
|
||||
});
|
||||
|
||||
buttonControl();
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="right_box">
|
||||
<div class="content_top">
|
||||
<ul class="path">
|
||||
<li><a href="#">${rmsMenuPath}</a></li>
|
||||
</ul>
|
||||
</div><!-- end content_top -->
|
||||
<div class="content_middle" id="content_middle">
|
||||
<div class="search_wrap">
|
||||
<img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/>
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
</div>
|
||||
<div class="title">거래 추적</div>
|
||||
|
||||
<table class="search_condition" cellspacing=0;>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width:100px;">프레임웍구분</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchFrameWorkGb" value="${param.searchFrameWorkGb}">
|
||||
<option value="2">전체</option>
|
||||
<option value="0">내부</option>
|
||||
<option value="1">대외</option>
|
||||
</select>
|
||||
</div><!-- end.select-style -->
|
||||
</td>
|
||||
<th style="width:100px;">업무구분명</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchBjobBzwkDstcd" value="${param.searchBjobBzwkDstcd}">
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<th style="width:100px;">송수신구분</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchSndRcv" value="${param.searchSndRcv}">
|
||||
<option value="A">전체</option>
|
||||
<option value="S">송신</option>
|
||||
<option value="R">수신</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<th style="width:100px;">상태</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchThisStgePrcssRsultCd" value="${param.searchThisStgePrcssRsultCd}">
|
||||
<option value="">전체</option>
|
||||
<option value="T">정상</option>
|
||||
<option value="E">에러</option>
|
||||
<option value="S">전송중</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th style="width:100px;">파일명</th>
|
||||
<td>
|
||||
<input type="text" name="searchSndrcvFileName" value="${param.searchSndrcvFileName}">
|
||||
</td>
|
||||
<th style="width:100px;">기관명</th>
|
||||
<td>
|
||||
<input type="text" name="searchOsidInstiName" value="${param.searchOsidInstiName}">
|
||||
</td>
|
||||
<th style="width:100px;">거래기간</th>
|
||||
<td colspan="3">
|
||||
<input type="text" name="searchStartYYYYMMDD" maxlength="10" value="" size="10" style="width:80px;">
|
||||
<input type="text" name="searchStartHHMM" maxlength="8" value="" size="8" style="width:80px;"> ~
|
||||
<input type="text" name="searchEndYYYYMMDD" maxlength="10" value="" size="10" style="width:80px;">
|
||||
<input type="text" name="searchEndHHMM" maxlength="8" value="" size="8" style="width:80px;">
|
||||
<input type="hidden" name="searchStartTime" value="20170201000000">
|
||||
<input type="hidden" name="searchEndTime" value="20170201235959">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table id="grid" ></table>
|
||||
<div id="pager"></div>
|
||||
</div><!-- end content_middle -->
|
||||
</div><!-- end right_box -->
|
||||
</body>
|
||||
<body>
|
||||
<div class="right_box">
|
||||
<div class="content_top">
|
||||
<ul class="path">
|
||||
<li><a href="#">${rmsMenuPath}</a></li>
|
||||
</ul>
|
||||
</div><!-- end content_top -->
|
||||
<div class="content_middle" id="content_middle">
|
||||
<div class="search_wrap">
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
</div>
|
||||
<div class="title">거래 추적</div>
|
||||
|
||||
<table class="search_condition" cellspacing=0;>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width:100px;">프레임웍구분</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchFrameWorkGb" value="${param.searchFrameWorkGb}">
|
||||
<option value="2">전체</option>
|
||||
<option value="0">내부</option>
|
||||
<option value="1">대외</option>
|
||||
</select>
|
||||
</div><!-- end.select-style -->
|
||||
</td>
|
||||
<th style="width:100px;">업무구분명</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchBjobBzwkDstcd" value="${param.searchBjobBzwkDstcd}">
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<th style="width:100px;">송수신구분</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchSndRcv" value="${param.searchSndRcv}">
|
||||
<option value="A">전체</option>
|
||||
<option value="S">송신</option>
|
||||
<option value="R">수신</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<th style="width:100px;">상태</th>
|
||||
<td>
|
||||
<div class="select-style">
|
||||
<select name="searchThisStgePrcssRsultCd" value="${param.searchThisStgePrcssRsultCd}">
|
||||
<option value="">전체</option>
|
||||
<option value="T">정상</option>
|
||||
<option value="E">에러</option>
|
||||
<option value="S">전송중</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th style="width:100px;">파일명</th>
|
||||
<td>
|
||||
<input type="text" name="searchSndrcvFileName" value="${param.searchSndrcvFileName}">
|
||||
</td>
|
||||
<th style="width:100px;">기관명</th>
|
||||
<td>
|
||||
<input type="text" name="searchOsidInstiName" value="${param.searchOsidInstiName}">
|
||||
</td>
|
||||
<th style="width:100px;">거래기간</th>
|
||||
<td colspan="3">
|
||||
<input type="text" name="searchStartYYYYMMDD" maxlength="10" value="" size="10" style="width:80px;">
|
||||
<input type="text" name="searchStartHHMM" maxlength="8" value="" size="8" style="width:80px;"> ~
|
||||
<input type="text" name="searchEndYYYYMMDD" maxlength="10" value="" size="10" style="width:80px;">
|
||||
<input type="text" name="searchEndHHMM" maxlength="8" value="" size="8" style="width:80px;">
|
||||
<input type="hidden" name="searchStartTime" value="20170201000000">
|
||||
<input type="hidden" name="searchEndTime" value="20170201235959">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<table id="grid" ></table>
|
||||
<div id="pager"></div>
|
||||
</div><!-- end content_middle -->
|
||||
</div><!-- end right_box -->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -144,7 +144,7 @@ $(document).ready(function() {
|
||||
autowidth: true,
|
||||
viewrecords: true,
|
||||
gridview: true,
|
||||
multiselect: true,
|
||||
/* multiselect: true, */
|
||||
rowList: eval('[${rmsDefaultRowList}]'),
|
||||
gridComplete: function (d) {
|
||||
var colModel = $(this).getGridParam("colModel");
|
||||
@@ -250,8 +250,8 @@ $(document).ready(function() {
|
||||
</div><!-- end content_top -->
|
||||
<div class="content_middle" id="content_middle">
|
||||
<div class="search_wrap">
|
||||
<img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/>
|
||||
<img src="<c:url value="/img/btn_delete.png"/>" alt="" id="btn_delete" level="W" status="DETAIL"/>
|
||||
<%-- <img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/>
|
||||
<img src="<c:url value="/img/btn_delete.png"/>" alt="" id="btn_delete" level="W" status="DETAIL"/> --%>
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
</div>
|
||||
<div class="title">작업대기 관리</div>
|
||||
|
||||
Reference in New Issue
Block a user