미사용 화면 제거(면제차량 csv업로드)

main
이범준 6 months ago
parent 35649fe23c
commit 29b39b3dc5

@ -1,590 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:w2="http://www.inswave.com/websquare" xmlns:xf="http://www.w3.org/2002/xforms">
<head>
<w2:type>DEFAULT</w2:type>
<w2:buildDate/>
<xf:model>
<xf:instance>
<data xmlns="" />
</xf:instance>
<w2:dataCollection baseNode="map">
<w2:dataList baseNode="list" repeatNode="map" id="resCode" saveRemovedData="true">
<w2:columnInfo>
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
<w2:column id="enforceDate" name="시행일자" dataType="text"></w2:column>
<w2:column id="endDate" name="종료일자" dataType="text"></w2:column>
<w2:column id="carNo" name="차량번호" dataType="text"></w2:column>
<w2:column id="carTypeId" name="차종코드" dataType="text"></w2:column>
<w2:column id="carTypeName" name="차종명" dataType="text"></w2:column>
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
<w2:column id="documentNo" name="공문번호" dataType="text"></w2:column>
<w2:column id="documentDate" name="공문작성일자" dataType="text"></w2:column>
<w2:column id="tempcarNum" name="대체차량번호" dataType="text"></w2:column>
<w2:column id="replaceKbn" name="대체구분" dataType="text"></w2:column>
<w2:column id="exemptKbn" name="면제차량구분" dataType="text"></w2:column>
<w2:column id="endKbn" name="종료구분" dataType="text"></w2:column>
<w2:column id="companyKbn" name="소속기관구분" dataType="text"></w2:column>
<w2:column id="useRemark" name="용도" dataType="text"></w2:column>
<w2:column id="positionBody" name="소속기관" dataType="text"></w2:column>
<w2:column id="remarks" name="비고" dataType="text"></w2:column>
<w2:column id="length" name="차량번호길이" dataType="text"></w2:column>
<w2:column id="kbn" name="처리구분" dataType="text"></w2:column>
<w2:column id="duplicate" name="중복여부" dataType="text"></w2:column>
<w2:column id="sessionUserId" name="로그인ID" dataType="text"></w2:column>
</w2:columnInfo>
</w2:dataList>
<w2:dataMap baseNode="map" id="csvFileCode">
<w2:keyInfo>
<w2:key id="csvFile" name="엑셀 내용" dataType="text"></w2:key>
</w2:keyInfo>
</w2:dataMap>
</w2:dataCollection>
<w2:workflowCollection></w2:workflowCollection>
<xf:submission id="sub_csv" ref='data:json,{"id":"csvFileCode","key":"param"}'
target='data:json,{"id":"resCode","key":"result"}' action="/cfs/standard/findCsvFile.do" method="post"
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
processMsg="" ev:submit="" ev:submitdone="scwin.sub_csv_submitdone" ev:submiterror="" abortTrigger="">
</xf:submission>
<xf:submission id="sub_search" ref='data:json,{"id":"reqCode","key":"param"}'
target='data:json,{"id":"reqUpdate","key":"result"}' action="/cfs/fine/findPenaltySeizure.do" method="post"
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
processMsg="" ev:submit="" ev:submitdone="scwin.sub_search_submitdone" ev:submiterror="" abortTrigger="">
</xf:submission>
<xf:submission id="sub_update" ref='data:json,{"id":"resCode","key":"paramList"}' target=''
action="/cfs/standard/insertStandardExemptCarNo.do" method="post" mediatype="application/json" encoding="UTF-8" instance="" replace=""
errorHandler="" customHandler="" mode="asynchronous" processMsg="" ev:submit="" ev:submitdone="scwin.sub_update_submitdone"
ev:submiterror="" abortTrigger="">
</xf:submission>
</xf:model>
<script type="text/javascript" lazy="false"><![CDATA[
//load
scwin.onpageload = function() {
scwin.param = com.getParameter();
// reqCode.setJSON( scwin.param.data );
scwin.closeCallbackFncName = scwin.param.callbackFn;
rad_exemptKbn.setValue( "0" ); //면제차량구분
sbx_companyKbn.setValue( "0" ); //소속기관구분
btn_save.setDisabled( true ); //면제차량등록
};
scwin.onpageunload = function() {
};
//일괄등록(엑셀)
scwin.btn_upload_onclick = function(e) {
//초기화
if (grd_gridView.getTotalRow() > 0){
resCode.removeAll();
}
var input = document.createElement("input");
input.type = "file";
input.accept = ".csv"; // 확장자가 xxx, yyy 일때, ".xxx, .yyy"
input.onchange = function (event) {
processFile(event.target.files[0]);
};
input.click();
}
//일괄등록(엑셀)-엑셀 내용 읽어 드리기
function processFile(file) {
var reader = new FileReader();
reader.onload = function () {
var result = reader.result;
csvFileCode.set("csvFile",result);
com.executeSubmission(sub_csv);
};
reader.readAsText(file, /* optional */ "euc-kr");
};
//엑셀upload - 후
scwin.sub_csv_submitdone = function(e) {
var bSave = false;
for(var i = 0; i<resCode.getRowCount(); i++){
//중복여부 체크
if(resCode.getCellData( i , "duplicate" ).trim() != ""){ //중복여부
grd_gridView.setCellBackgroundColor( i, "duplicate", "#80FFFF" );
grd_gridView.setCellColor( i, "duplicate", "#FF0000" );
resCode.setCellData( i, "kbn", "duplicate"); //처리구분(중복)
}
//길이 체크
if(resCode.getCellData( i , "carNo" ).length > 20){ //차량번호
//grd_gridView.setCellBackgroundColor( i, "carNo", "#FF0000" );
grd_gridView.setCellColor( i, "carNo", "#FF0000" );
resCode.setCellData( i, "kbn", "length"); //처리구분(길이초과)
bSave = true;
}
if(resCode.getCellData( i , "carTypeName" ).length > 50){ //차종명
grd_gridView.setCellColor( i, "carTypeName", "#FF0000" );
resCode.setCellData( i, "kbn", "length"); //처리구분(길이초과)
bSave = true;
}
if(resCode.getCellData( i , "owner" ).length > 50){ //소유주
grd_gridView.setCellColor( i, "owner", "#FF0000" );
resCode.setCellData( i, "kbn", "length"); //처리구분(길이초과)
bSave = true;
}
if(resCode.getCellData( i , "documentNo" ).length > 50){ //공문번호
grd_gridView.setCellColor( i, "documentNo", "#FF0000" );
resCode.setCellData( i, "kbn", "length"); //처리구분(길이초과)
bSave = true;
}
//시행일자 > 종료일자 인지 체크
if(resCode.getCellData( i , "enforceDate" ).trim() > resCode.getCellData( i , "endDate" ).trim()){
grd_gridView.setCellColor( i, "enforceDate", "#FF0000" );
grd_gridView.setCellColor( i, "endDate", "#FF0000" );
resCode.setCellData( i, "kbn", "erroe"); //처리구분(일자오류)
bSave = true;
}
//값 입력여부
if(resCode.getCellData( i , "enforceDate" ).trim() == ""){ //시행일자
grd_gridView.setCellBackgroundColor( i, "enforceDate", "#80FFFF" );
grd_gridView.setCellColor( i, "enforceDate", "#FF0000" );
resCode.setCellData( i, "enforceDate", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "endDate" ).trim() == ""){ //종료일자
grd_gridView.setCellBackgroundColor( i, "endDate", "#80FFFF" );
grd_gridView.setCellColor( i, "endDate", "#FF0000" );
resCode.setCellData( i, "endDate", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "carNo" ).trim() == ""){ //차량번호
grd_gridView.setCellBackgroundColor( i, "carNo", "#80FFFF" );
grd_gridView.setCellColor( i, "carNo", "#FF0000" );
resCode.setCellData( i, "carNo", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "carTypeId" ).trim() == ""){ //차종코드
grd_gridView.setCellBackgroundColor( i, "carTypeId", "#80FFFF" );
grd_gridView.setCellColor( i, "carTypeId", "#FF0000" );
resCode.setCellData( i, "carTypeId", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "carTypeName" ).trim() == ""){ //차종명
resCode.setCellData( i, "carTypeName", "장애인차"); //
}
if(resCode.getCellData( i , "owner" ).trim() == ""){ //소유자
grd_gridView.setCellBackgroundColor( i, "owner", "#80FFFF" );
grd_gridView.setCellColor( i, "owner", "#FF0000" );
resCode.setCellData( i, "owner", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "documentNo" ).trim() == ""){ //공문번호
grd_gridView.setCellBackgroundColor( i, "documentNo", "#80FFFF" );
grd_gridView.setCellColor( i, "documentNo", "#FF0000" );
resCode.setCellData( i, "documentNo", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
if(resCode.getCellData( i , "documentDate" ).trim() == ""){ //공문작성일자
grd_gridView.setCellBackgroundColor( i, "documentDate", "#80FFFF" );
grd_gridView.setCellColor( i, "documentDate", "#FF0000" );
resCode.setCellData( i, "documentDate", "필수입력항목"); //필수입력항목
resCode.setCellData( i, "kbn", "empty"); //처리구분(빈값)
bSave = true;
}
}
btn_save.setDisabled( bSave ); //면제차량등록(저장가능여부 판단)
if (bSave == true){
com.alert('조회된 자료의 색상이 있는 부분을 수정 후 다시 처리하십시오.');
}else{
com.alert('검증을 완료하였습니다.<br/>'+
'[면제차량등록] 버튼을 클릭하여 저장하십시오.');
}
};
//면제차량구분 변경 시
scwin.rad_exemptKbn_onchange = function() {
if (rad_exemptKbn.getValue() == "0"){ //일반
sbx_companyKbn.setDisabled( false ); //소속기관구분
}else{
sbx_companyKbn.setDisabled( true ); //소속기관구분
}
};
//저장
scwin.btn_save_onclick = function(e) {
//파일 load한 자료가 있는지 체크
if (grd_gridView.getTotalRow() == 0){
com.alert('등록할 정보가 없습니다.<br/>'+
'등록할 csv 자료를 load하고 처리하십시오.');
return false;
}
var exemptKbn = ""; //면제차량구분
var companyKbn = ""; //소속기관구분
var sessionUserId = com.getLoginUserId(); //로그인 작업자
var bconfirm = false;
//면제차량구분
if (rad_exemptKbn.getValue().trim() == ""){
com.alert('면제차량구분을 선택하고 처리하십시오.');
return false;
}
exemptKbn = rad_exemptKbn.getValue().trim(); //면제차량구분
//일반
if (rad_exemptKbn.getValue() == "0"){
//소속기관구분
if (sbx_companyKbn.getValue().trim() == ""){
com.alert('소속기관구분을 선택하고 처리하십시오.');
return false;
}
companyKbn = sbx_companyKbn.getValue().trim(); //소속기관구분
com.confirm("일반 면제차량 등록이 맞습니까?", function(rtn) {
if (rtn) {
for(var i = 0; i<resCode.getRowCount(); i++){
resCode.setCellData( i, "exemptKbn", exemptKbn); //면제차량구분
resCode.setCellData( i, "companyKbn", companyKbn); //소속기관구분
resCode.setCellData( i, "sessionUserId", sessionUserId); //로그인 작업자
}
com.confirm("load된 화면의 자료를 등록하시겠습니까?", "scwin.ConfirmCallback");
}
});
//장애인
}else if (rad_exemptKbn.getValue() == "1"){
companyKbn = "9"; //소속기관구분 - 장애인
com.confirm("장애인 면제차량 등록이 맞습니까?", function(rtn) {
if (rtn) {
for(var i = 0; i<resCode.getRowCount(); i++){
resCode.setCellData( i, "exemptKbn", exemptKbn); //면제차량구분
resCode.setCellData( i, "companyKbn", companyKbn); //소속기관구분
resCode.setCellData( i, "sessionUserId", sessionUserId); //로그인 작업자
}
com.confirm("load된 화면의 자료를 등록하시겠습니까?", "scwin.ConfirmCallback");
}
});
//저공해
}else if (rad_exemptKbn.getValue() == "2"){
companyKbn = "0"; //소속기관구분 - 기타
com.confirm("저공해 면제차량 등록이 맞습니까?", function(rtn) {
if (rtn) {
for(var i = 0; i<resCode.getRowCount(); i++){
resCode.setCellData( i, "exemptKbn", exemptKbn); //면제차량구분
resCode.setCellData( i, "companyKbn", companyKbn); //소속기관구분
resCode.setCellData( i, "sessionUserId", sessionUserId); //로그인 작업자
}
com.confirm("load된 화면의 자료를 등록하시겠습니까?", "scwin.ConfirmCallback");
}
});
}
};
//저장 - 확인
scwin.ConfirmCallback = function(isReturnVal) {
if(isReturnVal){
com.executeSubmission(sub_update);
}
};
//저장 - 후
scwin.sub_update_submitdone = function(e) {
com.closePopup(scwin.closeCallbackFncName);
};
//엑셀다운로드
scwin.btn_excel_down_onclick = function(e) {
var info = {};
var options = {};
var totalCnt = grd_gridView.getTotalRow();
if (totalCnt > 0) {
//엑셀다운로드 실행
} else {
com.alert("엑셀다운로드할 정보가 없습니다.");
return false;
}
options.fileName = "면제지침차량 엑셀 등록_"+com.getCurDtime()+".xlsx";
options.sheetName = "면제지침차량 엑셀 등록";
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
options.useDataFormat ="true"; //다운로드시 format의 값을 유지할지 여부(true:유지)
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
options.printSet = {
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
};
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
grd_gridView.advancedExcelDownload( options , info );
};
//닫기
scwin.btn_close_onclick = function(e) {
com.closePopup();
};
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group class="pop" id="" style="">
<xf:group class="pop_con" id="" style="">
<xf:group class="tbl_search" id="grp_search" style="">
<xf:group class="w2tb tbl_sc" id="" style="" tagname="table">
<w2:attributes>
<w2:summary></w2:summary>
</w2:attributes>
<xf:group tagname="colgroup">
<xf:group style="width:*;" tagname="col"></xf:group>
</xf:group>
<xf:group style="" tagname="tr">
<xf:group class="w2tb_td" style="" tagname="td">
<xf:group class="fr" id="">
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_upload_onclick" id="btn_upload" style=""
type="button">
<xf:label><![CDATA[파일 Load(csv)]]></xf:label>
</xf:trigger>
<xf:trigger class="btn_cm" ev:onclick="scwin.btn_save_onclick" id="btn_save" style="" type="button" >
<xf:label><![CDATA[면제차량등록]]></xf:label>
</xf:trigger>
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_excel_down_onclick" id="btn_excel_down" style=""
type="button">
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
</xf:trigger>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="" id="" style="">
<xf:group class="w2tb" id="" style="" tagname="table">
<w2:attributes>
<w2:summary></w2:summary>
</w2:attributes>
<xf:group tagname="colgroup">
<xf:group style="width:100.00px;" tagname="col"></xf:group>
<xf:group style="width:200.00px;" tagname="col"></xf:group>
<xf:group style="width:100.00px;" tagname="col"></xf:group>
<xf:group style="width:200.00px;" tagname="col"></xf:group>
</xf:group>
<xf:group style="" tagname="tr">
<xf:group class="w2tb_th" style="" tagname="th">
면제차량구분
<w2:attributes>
<w2:scope>row</w2:scope>
</w2:attributes>
</xf:group>
<xf:group class="w2tb_td" style="" tagname="td">
<w2:attributes>
<w2:colspan>1</w2:colspan>
<w2:rowspan>1</w2:rowspan>
</w2:attributes>
<xf:select1 appearance="full" cols="" id="rad_exemptKbn" ref="" rows="1" selectedIndex="0" style=""
renderType="table" ev:onchange="scwin.rad_exemptKbn_onchange">
<xf:choices>
<xf:item>
<xf:label><![CDATA[일반]]></xf:label>
<xf:value><![CDATA[0]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[장애인]]></xf:label>
<xf:value><![CDATA[1]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[저공해]]></xf:label>
<xf:value><![CDATA[2]]></xf:value>
</xf:item>
</xf:choices>
</xf:select1>
</xf:group>
<xf:group class="w2tb_th" style="" tagname="th">
소속기관구분
<w2:attributes>
<w2:scope>row</w2:scope>
</w2:attributes>
</xf:group>
<xf:group class="w2tb_td" tagname="td">
<w2:attributes></w2:attributes>
<xf:select1 allOption="false" appearance="minimal" chooseOption="true" direction="auto" disabled="false"
disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_companyKbn" ref="" style="width: 120px;" submenuSize="auto"
chooseOptionLabel="">
<xf:choices>
<xf:item>
<xf:label><![CDATA[검찰]]></xf:label>
<xf:value><![CDATA[1]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[경찰]]></xf:label>
<xf:value><![CDATA[2]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[국방]]></xf:label>
<xf:value><![CDATA[3]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[기타]]></xf:label>
<xf:value><![CDATA[0]]></xf:value>
</xf:item>
</xf:choices>
</xf:select1>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<w2:gridView autoFit="allColumn" autoFitMinWidth="900" class="cm_grid" dataList="data:resCode" fixedColumnWithHidden="true"
focusMode="row" id="grd_gridView" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
scrollByColumnAdaptive="false" style="height:300px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" ev:oncellclick=""
readOnly="true">
<w2:header id="header1" style="">
<w2:row id="row1" style="">
<w2:column removeBorderStyle="false" width="50" inputType="text" id="column12" value="순번" blockSelect="false"
displayMode="label" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column17" value="중복여부" blockSelect="false"
displayMode="label" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column10" value="시행일자" blockSelect="false"
displayMode="label" style="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" value="종료일자" width="70"
removeBorderStyle="false" style="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column9" inputType="text" removeBorderStyle="false"
value="차량번호" width="100" style="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column7" inputType="text" removeBorderStyle="false"
value="차종" width="100" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column15" value="차종코드" blockSelect="false"
displayMode="label" style="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column5" inputType="text" removeBorderStyle="false"
value="소유자" width="120" style="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column3" inputType="text" removeBorderStyle="false"
value="공문번호" width="100" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column14" value="공문작성일자"
blockSelect="false" displayMode="label" style="">
</w2:column>
</w2:row>
</w2:header>
<w2:gBody id="gBody1" style="">
<w2:row id="row2" style="">
<w2:column removeBorderStyle="false" width="50" inputType="text" style="height:25px;" id="seqNo"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="duplicate" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="enforceDate" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="endDate" inputType="text" width="70"
removeBorderStyle="false">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="carNo" inputType="text" removeBorderStyle="false"
width="100" style="text-align:left;">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="carTypeName" inputType="text" removeBorderStyle="false"
width="100" style="text-align:left;">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="carTypeId" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="owner" inputType="text" removeBorderStyle="false"
width="120" style="text-align:left;">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="documentNo" inputType="text" removeBorderStyle="false"
width="100" dataType="text">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="documentDate" blockSelect="false"
displayMode="label">
</w2:column>
</w2:row>
</w2:gBody>
</w2:gridView>
<xf:group class="tac" id="" style="">
<xf:group class="" id="" style="">
<xf:group class="w2tb tbl_sc" id="" style="" tagname="table">
<w2:attributes>
<w2:summary></w2:summary>
</w2:attributes>
<xf:group tagname="colgroup">
<xf:group style="width:*;" tagname="col"></xf:group>
</xf:group>
<xf:group style="" tagname="tr">
<xf:group class="w2tb_td" style="" tagname="td">
<xf:group class="fl" id=""></xf:group>
<w2:span id=""
label="엑셀파일(csv) 포멧 : 순서, 시행일자(2012-01-01), 종료일자(2012-01-01), 차량번호, 차종, 소유주, 공문번호, 공문작성일자(2012-01-01)"
style="text-align:left;color:#0000FF;font-weight:bold;">
</w2:span>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="" id="" style="">
<xf:group class="w2tb tbl_sc" id="" style="" tagname="table">
<w2:attributes>
<w2:summary></w2:summary>
</w2:attributes>
<xf:group tagname="colgroup">
<xf:group style="width:*;" tagname="col"></xf:group>
</xf:group>
<xf:group style="" tagname="tr">
<xf:group class="w2tb_td" style="" tagname="td">
<xf:group class="fl" id=""></xf:group>
<w2:span id=""
label="주의사항! : 엑셀파일(csv) 1개당 1개의 Sheet로 Load해야 합니다. (자료에 쉼표(,)사용 불가)"
style="text-align:left;color:#FF0000;font-weight:bold;">
</w2:span>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_close_onclick" id="btn_close" style="" type="button">
<xf:label><![CDATA[닫기]]></xf:label>
</xf:trigger>
</xf:group>
</xf:group>
<xf:group class="btn_fix" id="" style=""></xf:group>
</xf:group>
</body>
</html>
Loading…
Cancel
Save