미사용 화면 제거
parent
c54c6ebc47
commit
987414d6cf
@ -1,300 +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:dataMap baseNode="map" id="searchParam">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="dateFrom" name="일자from" dataType="text"></w2:key>
|
||||
<w2:key id="dateTo" name="일자to" dataType="text"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="searchResultList" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="chk" name="체크박스선택" dataType="text"></w2:column>
|
||||
<w2:column id="residentDate" name="등록일자" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차량번호" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="발생요금소id" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeFullName" name="발생요금소" dataType="text"></w2:column>
|
||||
<w2:column id="passDate" name="발생일시" dataType="text"></w2:column>
|
||||
<w2:column id="noticeDate" name="고지일자" dataType="text"></w2:column>
|
||||
<w2:column id="fineAmount" name="고지금액" dataType="text"></w2:column>
|
||||
<w2:column id="rentCompany" name="업체명" dataType="text"></w2:column>
|
||||
<w2:column id="rentPerson" name="임차인성명" dataType="text"></w2:column>
|
||||
<w2:column id="addressName" name="임차인주소" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="telNo" name="임차인연락처" dataType="text"></w2:column>
|
||||
<w2:column id="rentPeriod1" name="임대시작일시" dataType="text"></w2:column>
|
||||
<w2:column id="rentPeriod2" name="임대종료일시" dataType="text"></w2:column>
|
||||
<w2:column id="workerId" name="관리자id" dataType="text"></w2:column>
|
||||
<w2:column id="workerName" name="관리자" dataType="text"></w2:column>
|
||||
<w2:column id="updateDate" name="수정일자" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_searchList" ref='data:json,{"id":"searchParam","key":"param"}'
|
||||
target='data:json,{"id":"searchResultList","key":"searchResultList"}' action="/cfs/fine/findFineRentCarList_3.do"
|
||||
method="post" mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler=""
|
||||
mode="asynchronous" processMsg="조회중입니다." ev:submit="scwin.sbm_searchList_submit" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
|
||||
com.setCfsCommonCode( sbxOptions );
|
||||
dateFrom.setValue( com.getToday() );
|
||||
dateTo.setValue( com.getToday() );
|
||||
};
|
||||
|
||||
scwin.onpageunload = function() {
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
scwin.btn_search_onclick = function(e) {
|
||||
if (com.validateGroup(grp_search) === false) {
|
||||
return false;
|
||||
|
||||
}else{
|
||||
if(ica_inEdDate.getValue() < ica_inStDate.getValue()){
|
||||
com.alert("시작 일자가 종료 일자보다 큽니다. 날짜 형식을 확인해 주세요.");
|
||||
return;
|
||||
}
|
||||
com.executeSubmission(sbm_searchList);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*
|
||||
scwin.btn_search_onclick = function(e) {
|
||||
var rowJSON = {};
|
||||
var data = { data : rowJSON };
|
||||
var opt = { id : "F81P01",
|
||||
popupName : "렌트카 임차인 수정",
|
||||
width : 452, height : 630};
|
||||
var popupUrl = "/ui/cfs/fine/FN081P01.xml";
|
||||
|
||||
com.openPopup(popupUrl, opt, data);
|
||||
};
|
||||
|
||||
*/
|
||||
|
||||
scwin.grd_search_oncelldblclick = function(row,col) {
|
||||
var rowJSON = searchResultList.getRowJSON(row);
|
||||
var data = { data : rowJSON, callbackFn : "scwin.btn_search_onclick()" };
|
||||
var opt = { id : "F81P01",
|
||||
popupName : "렌트카 임차인 수정",
|
||||
width : 452, height : 630};
|
||||
var popupUrl = "/ui/cfs/fine/FN081P01.xml";
|
||||
|
||||
com.openPopup(popupUrl, opt, data);
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" 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:270.00px;" tagname="col"></xf:group>
|
||||
<xf:group tagname="col" style="width:90.00px;"></xf:group><xf:group tagname="col" style="width:100.00px;"></xf:group><xf:group tagname="col" style="width:70.00px;"></xf:group><xf:group tagname="col" style="width:90.00px;"></xf:group><xf:group tagname="col" style="width:70.00px;"></xf:group><xf:group tagname="col" style="width:90.00px;"></xf:group><xf:group style="width:*;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th"><xf:select1 id="" chooseOption="" displayMode="label" style="width:90px;height: 21px;" submenuSize="auto"
|
||||
allOption="" disabled="false" direction="auto" appearance="minimal" disabledClass="w2selectbox_disabled" ref="data:searchParam.dateDiv">
|
||||
<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:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:searchParam.dateFrom" renderDiv="true" renderType="component" style="width: 115px;" weekStartsOn="0" validCheck="true" mandatory="true">
|
||||
</w2:inputCalendar><w2:span id="spa_span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:searchParam.dateTo" renderDiv="true" renderType="component" style="width: 115px;" weekStartsOn="0" validCheck="true" mandatory="true">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">발생요금소<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:select1 id="sbx_fareOfficeId" chooseOption="true" displayMode="label" style="width:90px;height: 21px;"
|
||||
submenuSize="auto" allOption="" disabled="false" direction="auto" appearance="minimal" disabledClass="w2selectbox_disabled"
|
||||
chooseOptionLabel="-전체-" ref="data:searchParam.fareOfficeId">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">차량번호<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_carNo" style="width: 80px;height: 21px;" ref="data:searchParam.carNo"></xf:input></xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">임차인<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_rentPerson" style="width: 80px;height: 21px;" ref="data:searchParam.rentPerson"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group></xf:group>
|
||||
</xf:group>
|
||||
<xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">업체명<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_rentCompany" style="width: 256px;height: 21px;" ref="data:searchParam.rentCompany"></xf:input></xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">주소명<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes>
|
||||
<w2:colspan>3</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_rentCompanyAddress" style="width: 250px;height: 21px;" ref="data:searchParam.rentCompanyAddress"></xf:input>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th"><w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group><xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="trigger1" style="" type="button">
|
||||
<xf:label><![CDATA[엑셀원장입력]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group></xf:group></xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="렌터카 등록" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act print" id="btn_prt" style="" type="button">
|
||||
<xf:label><![CDATA[인쇄]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_up" style="" type="button">
|
||||
<xf:label><![CDATA[엑셀업로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:searchResultList"
|
||||
fixedColumnWithHidden="true" focusMode="row" id="grd_search" ignoreCellClick="false" ignoreToggleOnDisabled="false"
|
||||
scrollByColumn="false" scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true"
|
||||
visibleRowNum="all" rowNumVisible="true" rowNumHeaderValue="순번" ev:oncelldblclick="scwin.grd_search_oncelldblclick" readOnly="true">
|
||||
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
|
||||
<w2:header style="" id="header1">
|
||||
<w2:row style="" id="row1">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="checkbox" style="" id="column35" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column33" value="등록일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column31" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column27" value="발생요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column25" value="발생일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column23" value="고지일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column21" value="고지금액"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column19" value="업체명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value="임차인성명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value="임차인주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value="우편번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="임차인연락처"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="임대시작일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="임대종료일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column3" value="관리자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column1" value="수정일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody style="" id="gBody1">
|
||||
<w2:row style="" id="row2">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="checkbox" style="" id="chk" value=""
|
||||
blockSelect="false" displayMode="label" readOnly="false">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="residentDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="carNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="fareOfficeFullName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="passDate" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="noticeDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="fineAmount" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentCompany" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPerson" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="telNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPeriod1" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPeriod2" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="workerName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="updateDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,199 +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:dataMap baseNode="map" id="searchResultMap">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="residentDate" name="등록일자" dataType="text"></w2:key>
|
||||
<w2:key id="carNo" name="차량번호" dataType="text"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="발생요금소id" dataType="text"></w2:key>
|
||||
<w2:key id="fareOfficeFullName" name="발생요금소" dataType="text"></w2:key>
|
||||
<w2:key id="passDate" name="발생일시" dataType="text"></w2:key>
|
||||
<w2:key id="noticeDate" name="고지일자" dataType="text"></w2:key>
|
||||
<w2:key id="fineAmount" name="고지금액" dataType="text"></w2:key>
|
||||
<w2:key id="penaltyAmount" name="미납금액" dataType="text"></w2:key>
|
||||
<w2:key id="rentCompany" name="업체명" dataType="text"></w2:key>
|
||||
<w2:key id="rentPerson" name="임차인성명" dataType="text"></w2:key>
|
||||
<w2:key id="addressName" name="임차인주소" dataType="text"></w2:key>
|
||||
<w2:key id="postNo" name="우편번호" dataType="text"></w2:key>
|
||||
<w2:key id="telNo" name="임차인연락처" dataType="text"></w2:key>
|
||||
<w2:key id="rentPeriod1" name="임대시작일시" dataType="text"></w2:key>
|
||||
<w2:key id="rentPeriod2" name="임대종료일시" dataType="text"></w2:key>
|
||||
<w2:key id="workerId" name="관리자id" dataType="text"></w2:key>
|
||||
<w2:key id="workerName" name="관리자" dataType="text"></w2:key>
|
||||
<w2:key id="updateDate" name="수정일자" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection>
|
||||
</w2:workflowCollection>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
|
||||
com.setCfsCommonCode( sbxOptions );
|
||||
};
|
||||
|
||||
scwin.onpageunload = function() {
|
||||
|
||||
};
|
||||
|
||||
|
||||
scwin.btn_close_onclick = function(e) {
|
||||
if (searchResultMap.getModifiedIndex().length > 0) {
|
||||
com.confirm("변경된 정보가 있습니다. 저장하지 않고 닫으시겠습니까?", "scwin.cancelCarsTransInfoConfirmCallback");
|
||||
} else {
|
||||
com.closePopup();
|
||||
}
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="pop" id="" style="">
|
||||
<xf:group class="tbl_search" id="tbl_search" style="padding: 10px;">
|
||||
<xf:group class="w2tb tbl_sc" id="grp_group32" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="caption"></xf:group>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:50.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:100px;" 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:inputCalendar footerDiv="false" id="ica_residentDate" style="width: 150px;height: 23px;" renderDiv="true"
|
||||
focusOnDateSelect="false" calendarValueType="yearMonthDate" rightAlign="false" renderType="component" ref="data:searchResultMap.residentDate">
|
||||
</w2:inputCalendar>
|
||||
</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:input adjustMaxLength="false" id="ibx_carNo" style="width: 144px;height: 21px;" ref="data:searchResultMap.carNo"></xf:input>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" tagname="th">발생요금소<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:colspan>1</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:select1 id="sbx_fareOfficeId" chooseOption="false" displayMode="label" style="width: 148px;height: 21px;" submenuSize="auto"
|
||||
allOption="false" disabled="false" direction="auto" appearance="minimal" disabledClass="w2selectbox_disabled" ref="data:searchResultMap.fareOfficeId">
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" tagname="th">발생일시<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" focusOnDateSelect="false" footerDiv="false"
|
||||
id="ica_passDate" renderDiv="true" renderType="component" rightAlign="false" style="width: 150px;height: 23px;" ref="data:searchResultMap.passDate">
|
||||
</w2:inputCalendar>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">미납금액<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_penaltyAmount" style="width: 144px;height: 21px;" ref="data:searchResultMap.penaltyAmount"></xf:input>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">업체명<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_rentCompany" style="width: 144px;height: 21px;" ref="data:searchResultMap.rentCompany"></xf:input>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">임차인성명<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_rentPerson" style="width: 144px;height: 21px;" ref="data:searchResultMap.rentPerson"></xf:input>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">임차인주소<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:textarea id="tbx_addressName" style="width:100%;height: 100px;" ref="data:searchResultMap.addressName"></xf:textarea>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">우편번호<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_postNo" style="width: 144px;height: 21px;" ref="data:searchResultMap.postNo"></xf:input>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">임차인연락처<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_telNo" style="width: 144px;height: 21px;" ref="data:searchResultMap.telNo"></xf:input>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">임대시작일시<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<w2:inputCalendar footerDiv="false" id="ica_rentPeriod1" style="width: 150px;height: 23px;" renderDiv="true" focusOnDateSelect="false"
|
||||
calendarValueType="yearMonthDate" rightAlign="false" renderType="component" ref="data:searchResultMap.rentPeriod1">
|
||||
</w2:inputCalendar>
|
||||
</xf:group></xf:group><xf:group tagname="tr" style=""><xf:group tagname="th" class="w2tb_th">임대종료일시<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<w2:inputCalendar footerDiv="false" id="ica_rentPeriod2" style="width: 150px;height: 23px;" renderDiv="true" focusOnDateSelect="false"
|
||||
calendarValueType="yearMonthDate" rightAlign="false" renderType="component" ref="data:searchResultMap.rentPeriod2">
|
||||
</w2:inputCalendar>
|
||||
</xf:group></xf:group></xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="tbl_search" id="grp_group37" style="float: left;">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="grp_group38" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="caption"></xf:group>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="" tagname="col"></xf:group>
|
||||
<xf:group style="width:80.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:80.00px;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" style="text-align: center;" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
<w2:colspan>1</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:trigger class="btn_com" id="btn_save" style="" type="button">
|
||||
<xf:label><![CDATA[저장]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" style="text-align: center;" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
<w2:colspan>1</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:trigger class="btn_com" id="btn_close" style="" type="button" ev:onclick="scwin.btn_close_onclick">
|
||||
<xf:label><![CDATA[닫기]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,427 +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:dataMap baseNode="map" id="searchParam2" style="">
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="carNo" name="차량번호"></w2:key>
|
||||
<w2:key dataType="text" id="telNo" name="전화번호"></w2:key>
|
||||
<w2:key dataType="text" id="postNo" name="우편번호"></w2:key>
|
||||
<w2:key dataType="text" id="addressName" name="주소"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="searchResultList1" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="chk" name="체크박스선택" dataType="text"></w2:column>
|
||||
<w2:column dataType="text" id="residentDate" name="등록일자"></w2:column>
|
||||
<w2:column dataType="text" id="carNo" name="차량번호"></w2:column>
|
||||
<w2:column dataType="text" id="fareOfficeId" name="발생요금소id"></w2:column>
|
||||
<w2:column dataType="text" id="fareOfficeFullName" name="발생요금소"></w2:column>
|
||||
<w2:column dataType="text" id="passDate" name="발생일시"></w2:column>
|
||||
<w2:column dataType="text" id="noticeDate" name="고지일자"></w2:column>
|
||||
<w2:column dataType="text" id="fineAmount" name="고지금액"></w2:column>
|
||||
<w2:column dataType="text" id="rentCompany" name="업체명"></w2:column>
|
||||
<w2:column dataType="text" id="rentPerson" name="임차인성명"></w2:column>
|
||||
<w2:column dataType="text" id="addressName" name="임차인주소"></w2:column>
|
||||
<w2:column dataType="text" id="postNo" name="우편번호"></w2:column>
|
||||
<w2:column dataType="text" id="telNo" name="임차인연락처"></w2:column>
|
||||
<w2:column dataType="text" id="rentPeriod1" name="임대시작일시"></w2:column>
|
||||
<w2:column dataType="text" id="rentPeriod2" name="임대종료일시"></w2:column>
|
||||
<w2:column dataType="text" id="workerId" name="관리자id"></w2:column>
|
||||
<w2:column dataType="text" id="workerName" name="관리자"></w2:column>
|
||||
<w2:column dataType="text" id="updateDate" name="수정일자"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="searchResultList2" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="carNo" name="차량번호" dataType="text"></w2:column>
|
||||
<w2:column id="workDate" name="근무일자" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="passDate" name="발생일시" dataType="text"></w2:column>
|
||||
<w2:column id="penaltySeqNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="noticeId" name="고지단계" dataType="text"></w2:column>
|
||||
<w2:column id="rentCompany" name="납부자" dataType="text"></w2:column>
|
||||
<w2:column id="addressName" name="주소" dataType="text"></w2:column>
|
||||
<w2:column id="createDate" name="렌터카처리일자" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="searchParam1">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="dateDiv" name="일자구분" dataType="text"></w2:key>
|
||||
<w2:key id="dateFrom" name="일자from" dataType="text"></w2:key>
|
||||
<w2:key id="dateTo" name="일자to" dataType="text"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
<w2:key id="carNo" name="차량번호" dataType="text"></w2:key>
|
||||
<w2:key id="rentPerson" name="임차인" dataType="text"></w2:key>
|
||||
<w2:key id="rentCompany" name="업체명" dataType="text"></w2:key>
|
||||
<w2:key id="rentCompanyAddress" name="주소명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection>
|
||||
</w2:workflowCollection>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
|
||||
};
|
||||
|
||||
scwin.onpageunload = function() {
|
||||
|
||||
};
|
||||
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" 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:270.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:90.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:100.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:70.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:90.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:70.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:90.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:*;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th"><xf:select1 allOption="" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
||||
disabledClass="w2selectbox_disabled" displayMode="label" id="" ref="data:searchParam1.dateDiv" style="width:90px;height: 21px;"
|
||||
submenuSize="auto">
|
||||
<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:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:searchParam1.dateFrom" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar><w2:span id="span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:searchParam1.dateTo" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">발생요금소<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td"><w2:attributes></w2:attributes><xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_fareOfficeId"
|
||||
ref="data:searchParam1.fareOfficeId" style="width:90px;height: 21px;" submenuSize="auto">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">차량번호<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_carNo" ref="data:searchParam1.carNo"
|
||||
style="width: 80px;height: 21px;" allowChar="" maxlength="20" ignoreChar="! ">
|
||||
</xf:input></xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">임차인<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_rentPerson" ref="data:searchParam1.rentPerson"
|
||||
style="width: 80px;height: 21px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group></xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" 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:input adjustMaxLength="false" id="ibx_rentCompany" ref="data:searchParam1.rentCompany"
|
||||
style="width: 256px;height: 21px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
주소명
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:colspan>3</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_rentCompanyAddress" ref="data:searchParam1.rentCompanyAddress"
|
||||
style="width: 250px;height: 21px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" 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:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_auto" style="" type="button">
|
||||
<xf:label><![CDATA[렌터카 자동처리]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="임차인 내역" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act print" id="btn_prt" style="" type="button">
|
||||
<xf:label><![CDATA[인쇄]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:searchResultList1"
|
||||
fixedColumnWithHidden="true" focusMode="row" id="" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;margin-bottom: 30px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all"
|
||||
readOnly="true" rowNumHeaderValue="순번" rowNumVisible="true">
|
||||
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
|
||||
<w2:header style="" id="header1">
|
||||
<w2:row style="" id="row1">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="checkbox" style="" id="column35" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column33" value="등록일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column31" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column27" value="발생요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column25" value="발생일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column23" value="고지일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column21" value="고지금액"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column19" value="업체명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value="임차인성명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value="임차인주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value="우편번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="임차인연락처"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="임대시작일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="임대종료일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column3" value="관리자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column1" value="수정일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody style="" id="gBody1">
|
||||
<w2:row style="" id="row2">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="checkbox" style="" id="chk" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="residentDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="carNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="fareOfficeFullName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="passDate" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="noticeDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="fineAmount" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentCompany" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPerson" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="telNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPeriod1" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentPeriod2" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="workerName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="updateDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:50.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:90px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:50.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:110.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:50.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:90.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:50.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:250.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:70px;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">차량번호</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:input adjustMaxLength="false" id="ibx_carNo2" ref="data:searchParam2.carNo"
|
||||
style="width: 90%;height: 21px;">
|
||||
</xf:input></xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">전화번호<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_telNo" style="width:90%;height: 21px;" ref="data:searchParam2.telNo"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">우편번호<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_postNo" style="width:90%;height: 21px;" ref="data:searchParam2.postNo"></xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">주소<w2:attributes></w2:attributes></xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="ibx_addressName2" ref="data:searchParam2.addressName" style="width: 90%;height: 21px;">
|
||||
</xf:input></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:group class="fr" id=""></xf:group><xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_manual" style="" type="button">
|
||||
<xf:label><![CDATA[렌터카 수동처리]]></xf:label>
|
||||
</xf:trigger></xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group><xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="미납 내역" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style=""></xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:searchResultList2"
|
||||
fixedColumnWithHidden="true" focusMode="row" id="" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true" rowNumVisible="true" rowNumHeaderValue="순번">
|
||||
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
|
||||
<w2:header style="" id="header1">
|
||||
<w2:row style="" id="row1">
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value="근무일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value="차로"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="발생일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="관리번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="고지단계"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column5" value="납부자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column3" value="주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column1" value="렌터카처리일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody style="" id="gBody1">
|
||||
<w2:row style="" id="row2">
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="carNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="workDate" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="boothId" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="passDate" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="penaltySeqNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="noticeId" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="rentCompany" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="createDate" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,373 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data>
|
||||
</w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="dateFrom" name="시작일"></w2:key>
|
||||
<w2:key dataType="text" id="dateTo" name="종료일"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
|
||||
<w2:column id="mngNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차번호" dataType="text"></w2:column>
|
||||
<w2:column id="carTypeName" name="차종" dataType="text"></w2:column>
|
||||
<w2:column id="passTime" name="통행일시" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="lavyAmount" name="과태료" dataType="text"></w2:column>
|
||||
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeNm" name="요금소명" dataType="text"></w2:column>
|
||||
<w2:column id="boothNm" name="차로명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/fine/findFineRentCarList_3.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="조회중입니다." ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_delete" ref='data:json,{"id":"delReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/deletePostNo.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="scwin.sub_delete_submitdone" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_codeSido" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "cfs01", compID : "cond_fareOfficeId", option : cond_fareOfficeId.getText()}];
|
||||
com.setCfsCommonCode( sbxOptions );
|
||||
dateFrom.setValue( com.getToday() );
|
||||
dateTo.setValue( com.getToday() );
|
||||
};
|
||||
|
||||
scwin.cond_fareOfficeId_onchange = function() {
|
||||
var vFareOfficeId = cond_fareOfficeId.getValue();
|
||||
var sbxOptions = [{ code : "booth"+vFareOfficeId, compID : "cond_boothId", fareOfficeId : vFareOfficeId }];
|
||||
com.setCfsCommonCode( sbxOptions );
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
//var adminCity = sbx_localAddress.getText();
|
||||
|
||||
//schReq.set("addrCtNm",adminCity);
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "findSystemPostNoPopup";
|
||||
options.popupName = "우편번호 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 850;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 우편번호 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemPostNoPopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.findSystemPostNoPopup = function(rowIdx) {
|
||||
// 우편번호 수정팝업
|
||||
var param = {
|
||||
'pCrudSe':'U'
|
||||
, 'postNo1':grd_statList.getCellData(rowIdx, 'postNo1')
|
||||
, 'postNo2':grd_statList.getCellData(rowIdx, 'postNo2')
|
||||
, 'addressSeqno':grd_statList.getCellData(rowIdx, 'addressSeqno')
|
||||
, 'addressCity':grd_statList.getCellData(rowIdx, 'addressCity')
|
||||
, 'addressDistrict':grd_statList.getCellData(rowIdx, 'addressDistrict')
|
||||
, 'addressSame':grd_statList.getCellData(rowIdx, 'addressSame')
|
||||
, 'addressTown':grd_statList.getCellData(rowIdx, 'addressTown')
|
||||
, 'addressBunji':grd_statList.getCellData(rowIdx, 'addressBunji')
|
||||
, 'stBunji':grd_statList.getCellData(rowIdx, 'stBunji')
|
||||
, 'edBunji':grd_statList.getCellData(rowIdx, 'edBunji')
|
||||
, 'stNumDong':grd_statList.getCellData(rowIdx, 'stNumDong')
|
||||
, 'edNumDong':grd_statList.getCellData(rowIdx, 'edNumDong')
|
||||
, 'stDong':grd_statList.getCellData(rowIdx, 'stDong')
|
||||
, 'edDong':grd_statList.getCellData(rowIdx, 'edDong')
|
||||
, 'stAfterBunji':grd_statList.getCellData(rowIdx, 'stAfterBunji')
|
||||
, 'edAfterBunji':grd_statList.getCellData(rowIdx, 'edAfterBunji')
|
||||
, 'addressAdminCode':grd_statList.getCellData(rowIdx, 'addressAdminCode')
|
||||
};
|
||||
|
||||
var options = {
|
||||
id : "findSystemPostNoPopup",
|
||||
popupName : "우편번호 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 850};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
scwin.btn_del_onclick = function() {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var postNo1 = grd_statList.getCellData(rowIdx, 'postNo1');
|
||||
var postNo2 = grd_statList.getCellData(rowIdx, 'postNo2');
|
||||
var addressSeqno = grd_statList.getCellData(rowIdx, 'addressSeqno');
|
||||
|
||||
delReq.set("postNo1",postNo1);
|
||||
delReq.set("postNo2",postNo2);
|
||||
delReq.set("addressSeqno",addressSeqno);
|
||||
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
}
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
|
||||
scwin.btn_excel_down_onclick = function(e) {
|
||||
var info = {};
|
||||
var options = {};
|
||||
options.fileName = "렌트대상부과대장_"+com.getCurDtime()+".xlsx";
|
||||
options.sheetName = "렌트대상부과대장";
|
||||
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
||||
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
||||
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
||||
options.useSubTotal = "false"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
||||
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
|
||||
options.printSet = {
|
||||
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
||||
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
||||
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
||||
};
|
||||
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
||||
grd_statList.advancedExcelDownload( options , info );
|
||||
//com.fncMakeExcelProvider("finePenaltyService", "findPenaltyList08", "cfs.fine.vo.PenaltyParamVO", search_cond, grd_penaltyList, options, info);
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">요금소</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" ev:onchange="scwin.cond_fareOfficeId_onchange"
|
||||
id="cond_fareOfficeId" mandatory="true" ref="data:schReq.fareOfficeId" style="width: 120px;" submenuSize="auto">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">변경일자</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:schReq.dateFrom" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar>
|
||||
<w2:span id="span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:schReq.dateTo" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style=""></xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="렌트대상 부과대장" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="" width="40" value="순번">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="" id="column3" value="관리번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column5" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="차종"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="180" inputType="text" style="" id="column9" value="통행일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column30" value="차로"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column28" value="과태료"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column26" value="소유자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column32" value="우편번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="300" inputType="text" style="" id="column34" value="주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column21" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column19" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column23" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column25" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="text-align:center;" id="seqNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="text-align:center;" id="mngNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="carNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="carTypeName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="180" inputType="text" style="text-align:center;" id="passTime"
|
||||
value="" displayFormat="####-##-## ##:##:##" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="fareOfficeNm"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="boothNm" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" displayFormat="#,##0" style="" id="lavyAmount" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="owner" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="300" inputType="text" style="" id="address" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo1" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo2" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressSeqno" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,329 +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 ev:submitdone="scwin.sbm_createSendInfo_submitdone">
|
||||
<xf:instance>
|
||||
<data xmlns="" />
|
||||
</xf:instance>
|
||||
<w2:dataCollection baseNode="map">
|
||||
<w2:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data>
|
||||
</w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="dateFrom" name="시작일"></w2:key>
|
||||
<w2:key dataType="text" id="dateTo" name="종료일"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
|
||||
<w2:column id="mngNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차번호" dataType="text"></w2:column>
|
||||
<w2:column id="carTypeName" name="차종" dataType="text"></w2:column>
|
||||
<w2:column id="passTime" name="통행일시" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="lavyAmount" name="과태료" dataType="text"></w2:column>
|
||||
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
||||
<w2:column id="motionId" name="진행상태" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}' target="data:json,statList"
|
||||
action="/cfs/fine/findFineRentCarList_4.do" method="post" mediatype="application/json" encoding="UTF-8" instance="" replace=""
|
||||
errorHandler="" customHandler="" mode="asynchronous" processMsg="조회중 입니다." ev:submit="" ev:submitdone="" ev:submiterror=""
|
||||
abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sbm_createSendInfo"
|
||||
ref='data:json,[{"id":"search_cond","key":"paramMap"},{"id":"penaltyList","key":"paramList"}]' target=""
|
||||
action="/cfs/fine/createSendInfo08.do" method="post" mediatype="application/json" encoding="UTF-8" instance="" replace=""
|
||||
errorHandler="" customHandler="" mode="asynchronous" processMsg="" ev:submit="" ev:submitdone="scwin.sbm_createSendInfo_submitdone"
|
||||
ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" src="/cm/js/cfs.js"></script>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
/*
|
||||
FN036M01
|
||||
과태료정보-압류 촉탁 관리-자동차 등록 압류 촉탁서
|
||||
|
||||
*/
|
||||
scwin.onpageload = function() {
|
||||
scwin.setInitSearchCond();
|
||||
};
|
||||
|
||||
scwin.setInitSearchCond = function() {
|
||||
sbx_motion.setValue( '1' );
|
||||
var ymd = com.getToday();
|
||||
dateFrom.setValue( ymd );
|
||||
dateTo.setValue( ymd );
|
||||
|
||||
ica_seisureDate.setValue(ymd);
|
||||
};
|
||||
|
||||
scwin.onpageunload = function() {
|
||||
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_excel_down_onclick = function(e) {
|
||||
var info = {};
|
||||
var options = {};
|
||||
options.fileName = "압류촉탁서 발행_"+com.getCurDtime()+".xlsx";
|
||||
options.sheetName = "압류촉탁서 발행";
|
||||
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
||||
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
||||
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
||||
options.useSubTotal = "false"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
||||
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
|
||||
options.printSet = {
|
||||
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
||||
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
||||
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
||||
};
|
||||
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
||||
grd_penaltyList.advancedExcelDownload( options , info );
|
||||
//com.fncMakeExcelProvider("finePenaltyService", "findPenaltyList08", "cfs.fine.vo.PenaltyParamVO", search_cond, grd_penaltyList, options, info);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function(e) {
|
||||
var checked = grd_penaltyList.getCheckedIndex("chk");
|
||||
|
||||
var rowJSON = penaltyList.getRowJSON(grd_penaltyList.getCheckedIndex("chk"));
|
||||
|
||||
if(checked.length < 1) {
|
||||
com.alert("한 건 이상을 선택해주세요.");
|
||||
} else {
|
||||
com.confirm("압류촉탁서를 출력 하시겠습니까?", "scwin.addConfirmCallback");
|
||||
//발송일자 : 2019/05/22
|
||||
//출력물하단 글 : 서울특별시 교통계획과 지방행정주사보 배 임 순 (인)
|
||||
}
|
||||
};
|
||||
|
||||
scwin.addConfirmCallback = function(e) {
|
||||
if(e) {
|
||||
com.executeSubmission(sbm_createSendInfo);
|
||||
}
|
||||
};
|
||||
|
||||
scwin.sbm_createSendInfo_submitdone = function(e) {
|
||||
com.alert(e.responseJSON.rsMsg.message , function() {
|
||||
com.executeSubmission(sbm_searchPenaltyList);
|
||||
});
|
||||
};
|
||||
|
||||
scwin.btn_prt_onclick = function(e) {
|
||||
var form_tag = document.getElementById("FN036M01");
|
||||
|
||||
form_tag.penaltyDateFrom.value = paramMap.get("penaltyDateFrom");
|
||||
form_tag.penaltyDateTo.value = paramMap.get("penaltyDateTo");
|
||||
form_tag.seisureDate.value = paramMap.get("seisureDate");
|
||||
form_tag.motion.value = paramMap.get("motion");
|
||||
|
||||
form_tag.crfName.value = "FN036M01";
|
||||
|
||||
var url = "/ClipReport4/reportView.jsp";
|
||||
|
||||
form_tag.action=url;
|
||||
form_tag.method ="post";
|
||||
form_tag.target="clipform";
|
||||
form_tag.submit();
|
||||
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<form id="FN036M01" method="post" action ="/ClipReport4/reportView.jsp">
|
||||
<input type ="hidden" name="crfName"></input>
|
||||
<input type ="hidden" name="penaltyDateFrom"></input>
|
||||
<input type ="hidden" name="penaltyDateTo"></input>
|
||||
<input type ="hidden" name="seisureDate"></input>
|
||||
<input type ="hidden" name="motion"></input>
|
||||
</form>
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:90.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:150.00px;" tagname="col"></xf:group><xf:group style="width:80.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:140.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:80.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:240.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:*;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">재고지구분</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_motion" ref="data:search_cond.motion" style=""
|
||||
submenuSize="auto">
|
||||
<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:choices>
|
||||
</xf:select1></xf:group><xf:group tagname="th" class="w2tb_th">압류일자<w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="ica_seisureDate" ref="data:search_cond.seisureDate" renderDiv="true" renderType="component" style=""
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">통행일자</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:schReq.dateFrom" renderDiv="true" renderType="component" style="" weekStartsOn="0">
|
||||
</w2:inputCalendar><w2:span id="spa_span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:schReq.dateTo" renderDiv="true" renderType="component" style="" weekStartsOn="0">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="압류촉탁서발행" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:penaltyList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_penaltyList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 54px;" summaryAuto="false" useShiftKey="true" visibleRowNum="20"
|
||||
rowStatusHeaderValue="순번" rowNumVisible="true" readOnly="true">
|
||||
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
|
||||
<w2:header style="" id="header1">
|
||||
<w2:row style="" id="row1">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="" id="column42" value="순번" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column25" value="관리번호" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column23" value="차량번호" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column21" value="대체차량번호" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column19" value="차종명" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column17" value="통행일자" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column15" value="통행시간" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column13" value="요금소" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column11" value="차로" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column9" value="소유자" blockSelect="false"
|
||||
displayMode="label" style="">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody style="" id="gBody1">
|
||||
<w2:row style="" id="row2">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="" id="column43" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="mngno" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="carNo" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="carNoAft" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="carTypeNm" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="penaltyDate" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="workTimes" blockSelect="false"
|
||||
displayMode="label" displayFormat="##:##:##">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="fareOfficeNm" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="booth" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" id="owner" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
<w2:footer style="" id="footer1">
|
||||
<w2:row style="" id="row3">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="" id="column44" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="totalCnt" value=""
|
||||
blockSelect="false" displayMode="label" expression="COUNT('mngno')">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column39" value="" blockSelect="false"
|
||||
displayMode="label" expression="" displayFormat="">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column38" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column37" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column36" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column35" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column34" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column33" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column32" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:footer>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,407 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data>
|
||||
</w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="dateFrom" name="시작일"></w2:key>
|
||||
<w2:key dataType="text" id="dateTo" name="종료일"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
|
||||
<w2:column id="mngNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차번호" dataType="text"></w2:column>
|
||||
<w2:column id="carTypeName" name="차종" dataType="text"></w2:column>
|
||||
<w2:column id="passTime" name="통행일시" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="lavyAmount" name="과태료" dataType="text"></w2:column>
|
||||
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/fine/findFineRentCarList_7.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="조회중입니다." ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_delete" ref='data:json,{"id":"delReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/deletePostNo.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="scwin.sub_delete_submitdone" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_codeSido" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
dateFrom.setValue( com.getToday() );
|
||||
dateTo.setValue( com.getToday() );
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "findSystemPostNoPopup";
|
||||
options.popupName = "우편번호 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 850;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 우편번호 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemPostNoPopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.findSystemPostNoPopup = function(rowIdx) {
|
||||
// 우편번호 수정팝업
|
||||
var param = {
|
||||
'pCrudSe':'U'
|
||||
, 'postNo1':grd_statList.getCellData(rowIdx, 'postNo1')
|
||||
, 'postNo2':grd_statList.getCellData(rowIdx, 'postNo2')
|
||||
, 'addressSeqno':grd_statList.getCellData(rowIdx, 'addressSeqno')
|
||||
, 'addressCity':grd_statList.getCellData(rowIdx, 'addressCity')
|
||||
, 'addressDistrict':grd_statList.getCellData(rowIdx, 'addressDistrict')
|
||||
, 'addressSame':grd_statList.getCellData(rowIdx, 'addressSame')
|
||||
, 'addressTown':grd_statList.getCellData(rowIdx, 'addressTown')
|
||||
, 'addressBunji':grd_statList.getCellData(rowIdx, 'addressBunji')
|
||||
, 'stBunji':grd_statList.getCellData(rowIdx, 'stBunji')
|
||||
, 'edBunji':grd_statList.getCellData(rowIdx, 'edBunji')
|
||||
, 'stNumDong':grd_statList.getCellData(rowIdx, 'stNumDong')
|
||||
, 'edNumDong':grd_statList.getCellData(rowIdx, 'edNumDong')
|
||||
, 'stDong':grd_statList.getCellData(rowIdx, 'stDong')
|
||||
, 'edDong':grd_statList.getCellData(rowIdx, 'edDong')
|
||||
, 'stAfterBunji':grd_statList.getCellData(rowIdx, 'stAfterBunji')
|
||||
, 'edAfterBunji':grd_statList.getCellData(rowIdx, 'edAfterBunji')
|
||||
, 'addressAdminCode':grd_statList.getCellData(rowIdx, 'addressAdminCode')
|
||||
};
|
||||
|
||||
var options = {
|
||||
id : "findSystemPostNoPopup",
|
||||
popupName : "우편번호 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 850};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
scwin.btn_del_onclick = function() {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var postNo1 = grd_statList.getCellData(rowIdx, 'postNo1');
|
||||
var postNo2 = grd_statList.getCellData(rowIdx, 'postNo2');
|
||||
var addressSeqno = grd_statList.getCellData(rowIdx, 'addressSeqno');
|
||||
|
||||
delReq.set("postNo1",postNo1);
|
||||
delReq.set("postNo2",postNo2);
|
||||
delReq.set("addressSeqno",addressSeqno);
|
||||
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
}
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
|
||||
scwin.btn_excel_down_onclick = function(e) {
|
||||
var info = {};
|
||||
var options = {};
|
||||
options.fileName = "미압류대상자명단_"+com.getCurDtime()+".xlsx";
|
||||
options.sheetName = "미압류대상자명단";
|
||||
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
||||
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
||||
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
||||
options.useSubTotal = "false"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
||||
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
|
||||
options.printSet = {
|
||||
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
||||
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
||||
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
||||
};
|
||||
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
||||
grd_statList.advancedExcelDownload( options , info );
|
||||
};
|
||||
|
||||
scwin.btn_err_print_onclick = function(e) {
|
||||
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<xf:group adaptive="" adaptiveThreshold="" 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_err_print_onclick" id="btn_err_print" style="" type="button">
|
||||
<xf:label><![CDATA[오류리스트 출력]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">단계</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_level"
|
||||
ref="data:schReq.motionId" style="width:108px;height:21px;" submenuSize="auto">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">생성구분</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_creSe"
|
||||
ref="data:schReq.creSe" style="width:108px;height:21px;" submenuSize="auto">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1>
|
||||
<xf:group tagname="td" class="w2tb_td" style=""><w2:attributes></w2:attributes><xf:select selectedindex="-1" id="cbx_today" appearance="full" style="width:90%;height: 21px;"
|
||||
ref="data:searchParam.dateDiv" cols="" rows="">
|
||||
<xf:choices>
|
||||
<xf:item>
|
||||
<xf:label><![CDATA[주민번호 보기]]></xf:label>
|
||||
<xf:value><![CDATA[1]]></xf:value>
|
||||
</xf:item>
|
||||
</xf:choices>
|
||||
</xf:select></xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">통행년월</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:attributes><w2:colspan>2</w2:colspan><w2:rowspan>1</w2:rowspan></w2:attributes>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:schReq.dateFrom" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0" validCheck="true" mandatory="true">
|
||||
</w2:inputCalendar>
|
||||
<w2:span id="span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:schReq.dateTo" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0" validCheck="true" mandatory="true">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style=""></xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="미압류대상자명단" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="20" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="" width="40" value="연번">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="" id="column3" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column5" value="주민번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="관리년도"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="관리번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="차종명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column30" value="통행일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column28" value="통행시간"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column26" value="요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column32" value="차로"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column36" value="과태료"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column38" value="납부자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="300" inputType="text" style="" id="column34" value="주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column40" value="현재상태" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column21" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column19" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column23" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column25" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="text-align:center;" id="seqNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="text-align:center;" id="carNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="text-align:right;" id="residentNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="penaltyManageYear" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="mngNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="carTypeName"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column31" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column29" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column27" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column33" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column37" displayFormat="#,##0" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column39" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="300" inputType="text" style="" id="column35" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column41" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo1" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo2" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressSeqno" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,319 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data></w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="dateFrom" name="시작일"></w2:key>
|
||||
<w2:key dataType="text" id="dateTo" name="종료일"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
|
||||
<w2:column id="mngNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차번호" dataType="text"></w2:column>
|
||||
<w2:column id="carTypeName" name="차종" dataType="text"></w2:column>
|
||||
<w2:column id="passTime" name="통행일시" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="lavyAmount" name="과태료" dataType="text"></w2:column>
|
||||
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/fine/findFineRentCarList_8.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="조회중입니다." ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
dateFrom.setValue( com.getToday() );
|
||||
dateTo.setValue( com.getToday() );
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "findSystemPostNoPopup";
|
||||
options.popupName = "우편번호 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 850;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 우편번호 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemPostNoPopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.findSystemPostNoPopup = function(rowIdx) {
|
||||
// 우편번호 수정팝업
|
||||
var param = {
|
||||
'pCrudSe':'U'
|
||||
, 'postNo1':grd_statList.getCellData(rowIdx, 'postNo1')
|
||||
, 'postNo2':grd_statList.getCellData(rowIdx, 'postNo2')
|
||||
, 'addressSeqno':grd_statList.getCellData(rowIdx, 'addressSeqno')
|
||||
, 'addressCity':grd_statList.getCellData(rowIdx, 'addressCity')
|
||||
, 'addressDistrict':grd_statList.getCellData(rowIdx, 'addressDistrict')
|
||||
, 'addressSame':grd_statList.getCellData(rowIdx, 'addressSame')
|
||||
, 'addressTown':grd_statList.getCellData(rowIdx, 'addressTown')
|
||||
, 'addressBunji':grd_statList.getCellData(rowIdx, 'addressBunji')
|
||||
, 'stBunji':grd_statList.getCellData(rowIdx, 'stBunji')
|
||||
, 'edBunji':grd_statList.getCellData(rowIdx, 'edBunji')
|
||||
, 'stNumDong':grd_statList.getCellData(rowIdx, 'stNumDong')
|
||||
, 'edNumDong':grd_statList.getCellData(rowIdx, 'edNumDong')
|
||||
, 'stDong':grd_statList.getCellData(rowIdx, 'stDong')
|
||||
, 'edDong':grd_statList.getCellData(rowIdx, 'edDong')
|
||||
, 'stAfterBunji':grd_statList.getCellData(rowIdx, 'stAfterBunji')
|
||||
, 'edAfterBunji':grd_statList.getCellData(rowIdx, 'edAfterBunji')
|
||||
, 'addressAdminCode':grd_statList.getCellData(rowIdx, 'addressAdminCode')
|
||||
};
|
||||
|
||||
var options = {
|
||||
id : "findSystemPostNoPopup",
|
||||
popupName : "우편번호 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 850};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
scwin.btn_del_onclick = function() {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var postNo1 = grd_statList.getCellData(rowIdx, 'postNo1');
|
||||
var postNo2 = grd_statList.getCellData(rowIdx, 'postNo2');
|
||||
var addressSeqno = grd_statList.getCellData(rowIdx, 'addressSeqno');
|
||||
|
||||
delReq.set("postNo1",postNo1);
|
||||
delReq.set("postNo2",postNo2);
|
||||
delReq.set("addressSeqno",addressSeqno);
|
||||
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
}
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
|
||||
scwin.btn_excel_down_onclick = function(e) {
|
||||
var info = {};
|
||||
var options = {};
|
||||
options.fileName = "공시송단파일생성및등록_"+com.getCurDtime()+".xlsx";
|
||||
options.sheetName = "공시송단파일생성및등록";
|
||||
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
||||
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
||||
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
||||
options.useSubTotal = "false"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
||||
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
|
||||
options.printSet = {
|
||||
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
||||
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
||||
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
||||
};
|
||||
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
||||
grd_statList.advancedExcelDownload( options , info );
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="text-align:left;clear:both;" tagname="th">대상&nbsp;:&nbsp;2차고지,&nbsp;2차반송,&nbsp;압류촉탁<br></br>제외&nbsp;:&nbsp;결손<w2:attributes><w2:colspan>2</w2:colspan><w2:rowspan>1</w2:rowspan></w2:attributes></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td" style=""><w2:attributes></w2:attributes><xf:select selectedindex="-1" id="cbx_today" appearance="full" style="width:90%;height: 21px;"
|
||||
ref="data:searchParam.dateDiv" cols="" rows="">
|
||||
<xf:choices>
|
||||
<xf:item>
|
||||
<xf:label><![CDATA[주민번호 보기]]></xf:label>
|
||||
<xf:value><![CDATA[1]]></xf:value>
|
||||
</xf:item>
|
||||
</xf:choices>
|
||||
</xf:select></xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td" style="">
|
||||
<xf:select1 appearance="full" cols="1" ev:onchange="scwin.rad_radio1_onchange" id="rad_dtType"
|
||||
ref="data:reqCode.dtType" rows="" selectedIndex="0" style="" renderType="table">
|
||||
<xf:choices>
|
||||
<xf:item>
|
||||
<xf:label><![CDATA[월 기간 조회]]></xf:label>
|
||||
<xf:value><![CDATA[01]]></xf:value>
|
||||
</xf:item>
|
||||
<xf:item>
|
||||
<xf:label><![CDATA[연 기간 조회]]></xf:label>
|
||||
<xf:value><![CDATA[02]]></xf:value>
|
||||
</xf:item>
|
||||
</xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">통행년월</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:attributes><w2:colspan>2</w2:colspan><w2:rowspan>1</w2:rowspan></w2:attributes>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:schReq.dateFrom" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar>
|
||||
<w2:span id="span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:schReq.dateTo" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style=""></xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="공시송달파일생성및등록" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="20" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="" width="40" value="순번">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="관리번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="80" inputType="text" style="" id="column11" value="요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="column30" value="통행일자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column28" value="통행시간"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column26" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="column32" value="주민번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="column36" value="소유자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="column38" value="진행상태"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column40" value="과태료" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="text-align:center;" id="seqNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="mngNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="80" inputType="text" style="text-align:center;" id="fareOfficeId"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="passDate" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="passTime" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="carNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="residentNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="owner" displayFormat="#,##0" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="150" inputType="text" style="" id="motionId" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="lavyAmount" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,328 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data></w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="dateFrom" name="시작일"></w2:key>
|
||||
<w2:key dataType="text" id="dateTo" name="종료일"></w2:key>
|
||||
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="seqNo" name="순번" dataType="text"></w2:column>
|
||||
<w2:column id="mngNo" name="관리번호" dataType="text"></w2:column>
|
||||
<w2:column id="carNo" name="차번호" dataType="text"></w2:column>
|
||||
<w2:column id="carTypeName" name="차종" dataType="text"></w2:column>
|
||||
<w2:column id="passTime" name="통행일시" dataType="text"></w2:column>
|
||||
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
|
||||
<w2:column id="boothId" name="차로" dataType="text"></w2:column>
|
||||
<w2:column id="lavyAmount" name="과태료" dataType="text"></w2:column>
|
||||
<w2:column id="owner" name="소유자" dataType="text"></w2:column>
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/fine/findFineRentCarList_9.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="조회중입니다." ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions1 = [{ code : "cfs10", compID : "sbx_stage" }];
|
||||
|
||||
com.setCfsCommonCode(sbxOptions1);
|
||||
|
||||
dateFrom.setValue( com.getToday() );
|
||||
dateTo.setValue( com.getToday() );
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "findSystemPostNoPopup";
|
||||
options.popupName = "우편번호 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 850;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 우편번호 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemPostNoPopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.findSystemPostNoPopup = function(rowIdx) {
|
||||
// 우편번호 수정팝업
|
||||
var param = {
|
||||
'pCrudSe':'U'
|
||||
, 'postNo1':grd_statList.getCellData(rowIdx, 'postNo1')
|
||||
, 'postNo2':grd_statList.getCellData(rowIdx, 'postNo2')
|
||||
, 'addressSeqno':grd_statList.getCellData(rowIdx, 'addressSeqno')
|
||||
, 'addressCity':grd_statList.getCellData(rowIdx, 'addressCity')
|
||||
, 'addressDistrict':grd_statList.getCellData(rowIdx, 'addressDistrict')
|
||||
, 'addressSame':grd_statList.getCellData(rowIdx, 'addressSame')
|
||||
, 'addressTown':grd_statList.getCellData(rowIdx, 'addressTown')
|
||||
, 'addressBunji':grd_statList.getCellData(rowIdx, 'addressBunji')
|
||||
, 'stBunji':grd_statList.getCellData(rowIdx, 'stBunji')
|
||||
, 'edBunji':grd_statList.getCellData(rowIdx, 'edBunji')
|
||||
, 'stNumDong':grd_statList.getCellData(rowIdx, 'stNumDong')
|
||||
, 'edNumDong':grd_statList.getCellData(rowIdx, 'edNumDong')
|
||||
, 'stDong':grd_statList.getCellData(rowIdx, 'stDong')
|
||||
, 'edDong':grd_statList.getCellData(rowIdx, 'edDong')
|
||||
, 'stAfterBunji':grd_statList.getCellData(rowIdx, 'stAfterBunji')
|
||||
, 'edAfterBunji':grd_statList.getCellData(rowIdx, 'edAfterBunji')
|
||||
, 'addressAdminCode':grd_statList.getCellData(rowIdx, 'addressAdminCode')
|
||||
};
|
||||
|
||||
var options = {
|
||||
id : "findSystemPostNoPopup",
|
||||
popupName : "우편번호 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 850};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
scwin.btn_del_onclick = function() {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var postNo1 = grd_statList.getCellData(rowIdx, 'postNo1');
|
||||
var postNo2 = grd_statList.getCellData(rowIdx, 'postNo2');
|
||||
var addressSeqno = grd_statList.getCellData(rowIdx, 'addressSeqno');
|
||||
|
||||
delReq.set("postNo1",postNo1);
|
||||
delReq.set("postNo2",postNo2);
|
||||
delReq.set("addressSeqno",addressSeqno);
|
||||
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
}
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
|
||||
scwin.btn_excel_down_onclick = function(e) {
|
||||
var info = {};
|
||||
var options = {};
|
||||
options.fileName = "공시송달자료생성_"+com.getCurDtime()+".xlsx";
|
||||
options.sheetName = "공시송달자료생성";
|
||||
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
||||
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
||||
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
||||
options.useSubTotal = "false"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
||||
options.useStyle = "true"; //화면의 서식을 그대로 사용한다.
|
||||
options.printSet = {
|
||||
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
||||
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
||||
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
||||
};
|
||||
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
||||
grd_statList.advancedExcelDownload( options , info );
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">반송단계</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="" chooseOptionLabel="-전체-" direction="auto"
|
||||
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_stage" ref="data:schReq.stage"
|
||||
style="" submenuSize="auto">
|
||||
<xf:choices></xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_data_create_onclick" id="btn_data_create" style="" type="button">
|
||||
<xf:label><![CDATA[자료생성]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">통행년월</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><w2:attributes><w2:colspan>2</w2:colspan><w2:rowspan>1</w2:rowspan></w2:attributes>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateFrom" ref="data:schReq.dateFrom" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar>
|
||||
<w2:span id="span1" label="~" style="padding-left: 5px;padding-right: 5px;"></w2:span>
|
||||
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
||||
footerDiv="false" id="dateTo" ref="data:schReq.dateTo" renderDiv="true" renderType="component" style="width: 115px;"
|
||||
weekStartsOn="0">
|
||||
</w2:inputCalendar></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style=""></xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="공시송달자료생성" style="" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act exceldown" id="btn_excel_down" style="" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
||||
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="20" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="" width="40" value="순번">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="" id="column3" value="관리번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column5" value="차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="차종명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="대체차량여부"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="대체차량번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column30" value="통행일시"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column28" value="요금소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column26" value="과태료"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column32" value="소유자"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column36" value="우편번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="column38" value="주소"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column34" value="주민/법인번호"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="40" inputType="text" style="text-align:center;" id="seqNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="text-align:center;" id="mngNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="120" inputType="text" style="text-align:right;" id="carNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="carTypeName" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="spYn" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="spCarNo"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="passTime" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="fareOfficeId" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="lavyAmount" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="owner" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo" displayFormat="#,##0" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="address" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="residentNo" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,343 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data>
|
||||
<addressCity><![CDATA[ ]]></addressCity>
|
||||
</w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="addressCity" name="시도코드"></w2:key>
|
||||
<w2:key dataType="text" id="addressDistrict" name="시군구명"></w2:key>
|
||||
<w2:key id="addressSame" name="읍면동명" dataType="text"></w2:key>
|
||||
<w2:key id="addrCtNm" name="시도명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
|
||||
<w2:column id="postNo" name="우편번호" dataType="text"></w2:column>
|
||||
<w2:column id="postNo1" name="우편번호1" dataType="text"></w2:column>
|
||||
<w2:column id="postNo2" name="우편번호2" dataType="text"></w2:column>
|
||||
<w2:column id="addressCity" name="시도명" dataType="text"></w2:column>
|
||||
<w2:column id="addressDistrict" name="시군구명" dataType="text"></w2:column>
|
||||
<w2:column id="addressSame" name="읍면동" dataType="text"></w2:column>
|
||||
<w2:column id="addressTown" name="리명" dataType="text"></w2:column>
|
||||
<w2:column id="addressBunji" name="번지" dataType="text"></w2:column>
|
||||
<w2:column id="stBunji" name="시작번지" dataType="text"></w2:column>
|
||||
<w2:column id="edBunji" name="종료번지" dataType="text"></w2:column>
|
||||
<w2:column id="stNumDong" name="건물시작동(숫자)" dataType="text"></w2:column>
|
||||
<w2:column id="edNumDong" name="건물종료동(숫자)" dataType="text"></w2:column>
|
||||
<w2:column id="stDong" name="건물시작동" dataType="text"></w2:column>
|
||||
<w2:column id="edDong" name="건물종료동" dataType="text"></w2:column>
|
||||
<w2:column id="stAfterBunji" name="번지이하시작" dataType="text"></w2:column>
|
||||
<w2:column id="edAfterBunji" name="번지이하종료" dataType="text"></w2:column>
|
||||
<w2:column id="addressAdminCode" name="행정코드" dataType="text"></w2:column>
|
||||
<w2:column id="createDate" name="작성일자" dataType="text"></w2:column>
|
||||
<w2:column id="updateDate" name="수정일자" dataType="text"></w2:column>
|
||||
<w2:column id="updater" name="수정자" dataType="text"></w2:column>
|
||||
<w2:column id="creater" name="작성자" dataType="text"></w2:column>
|
||||
<w2:column id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:column>
|
||||
<w2:column id="chk" name="체크" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/findSystemPostNoList.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_delete" ref='data:json,{"id":"delReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/deletePostNo.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="scwin.sub_delete_submitdone" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_codeSido" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
var adminCity = sbx_localAddress.getText();
|
||||
|
||||
schReq.set("addrCtNm",adminCity);
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "findSystemPostNoPopup";
|
||||
options.popupName = "우편번호 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 850;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 우편번호 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemPostNoPopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.findSystemPostNoPopup = function(rowIdx) {
|
||||
// 우편번호 수정팝업
|
||||
var param = {
|
||||
'pCrudSe':'U'
|
||||
, 'postNo1':grd_statList.getCellData(rowIdx, 'postNo1')
|
||||
, 'postNo2':grd_statList.getCellData(rowIdx, 'postNo2')
|
||||
, 'addressSeqno':grd_statList.getCellData(rowIdx, 'addressSeqno')
|
||||
, 'addressCity':grd_statList.getCellData(rowIdx, 'addressCity')
|
||||
, 'addressDistrict':grd_statList.getCellData(rowIdx, 'addressDistrict')
|
||||
, 'addressSame':grd_statList.getCellData(rowIdx, 'addressSame')
|
||||
, 'addressTown':grd_statList.getCellData(rowIdx, 'addressTown')
|
||||
, 'addressBunji':grd_statList.getCellData(rowIdx, 'addressBunji')
|
||||
, 'stBunji':grd_statList.getCellData(rowIdx, 'stBunji')
|
||||
, 'edBunji':grd_statList.getCellData(rowIdx, 'edBunji')
|
||||
, 'stNumDong':grd_statList.getCellData(rowIdx, 'stNumDong')
|
||||
, 'edNumDong':grd_statList.getCellData(rowIdx, 'edNumDong')
|
||||
, 'stDong':grd_statList.getCellData(rowIdx, 'stDong')
|
||||
, 'edDong':grd_statList.getCellData(rowIdx, 'edDong')
|
||||
, 'stAfterBunji':grd_statList.getCellData(rowIdx, 'stAfterBunji')
|
||||
, 'edAfterBunji':grd_statList.getCellData(rowIdx, 'edAfterBunji')
|
||||
, 'addressAdminCode':grd_statList.getCellData(rowIdx, 'addressAdminCode')
|
||||
};
|
||||
|
||||
var options = {
|
||||
id : "findSystemPostNoPopup",
|
||||
popupName : "우편번호 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 850};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST003P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
scwin.btn_del_onclick = function() {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 우편번호를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var postNo1 = grd_statList.getCellData(rowIdx, 'postNo1');
|
||||
var postNo2 = grd_statList.getCellData(rowIdx, 'postNo2');
|
||||
var addressSeqno = grd_statList.getCellData(rowIdx, 'addressSeqno');
|
||||
|
||||
delReq.set("postNo1",postNo1);
|
||||
delReq.set("postNo2",postNo2);
|
||||
delReq.set("addressSeqno",addressSeqno);
|
||||
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 우편번호를 체크하십시오. ');
|
||||
}
|
||||
}
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:70px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:150px;" tagname="col"></xf:group>
|
||||
<xf:group tagname="col" style="width:80px;"></xf:group><xf:group tagname="col" style="width:150px;"></xf:group><xf:group tagname="col" style="width:80px;"></xf:group><xf:group tagname="col" style="width:150px;"></xf:group><xf:group style="width:*;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">시도명</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:select1 allOption="" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
||||
disabledClass="w2selectbox_disabled" displayMode="label" ev:onchange="" id="sbx_localAddress" ref="data:schReq.addressCity"
|
||||
style="width:120px;" submenuSize="auto" visibleRowNum="16">
|
||||
<xf:choices>
|
||||
<xf:itemset nodeset="data:sidoCode">
|
||||
<xf:label ref="adminCity"></xf:label>
|
||||
<xf:value ref="adminCity"></xf:value>
|
||||
</xf:itemset>
|
||||
</xf:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">시/군/구</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="addressDistrict" readOnly="false" ref="data:schReq.addressDistrict" style="width:120px"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">읍/면/동</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" id="ibx_msg" readOnly="false" ref="data:schReq.addressSame" style="width:120px;margin-left:2px;"></xf:input>
|
||||
<xf:input style="display: none;" id="addrCtNm" ref="data:schReq.addrCtNm"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act add" id="btn_add" style="" type="button" ev:onclick="scwin.btn_add_onclick">
|
||||
<xf:label><![CDATA[추가]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act update" id="btn_mod" style="" type="button" ev:onclick="scwin.btn_mod_onclick">
|
||||
<xf:label><![CDATA[수정]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act del" id="btn_del" style="" type="button" ev:onclick="scwin.btn_del_onclick">
|
||||
<xf:label><![CDATA[삭제]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="text" style="" id="column26" value="선택" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="" width="80"
|
||||
value="우편번호">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="" id="column3" value="시/도"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column5" value="시/군/구"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column7" value="읍/면/동"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column9" value="리/건물"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column11" value="번지"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column21" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column19" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column17" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column15" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column13" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column23" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column25" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="35" inputType="checkbox" style="" id="chk" value=""
|
||||
blockSelect="false" displayMode="label" readOnly="false">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="postNo" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="60" inputType="text" style="text-align:center;" id="addressCity" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
<xf:input style="display: none;" id="pCrudSe"></xf:input>
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="addressDistrict" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="addressSame" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:right;" id="addressTown" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="addressBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo1" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="postNo2" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="addressSeqno" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edBunji" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="stAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="edAfterBunji" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,414 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet href="/cm/css/all.css" type="text/css"?>
|
||||
<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:dataMap baseNode="map" id="reqSave" style="">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="crudSe" name="입력구분" dataType="text"></w2:key>
|
||||
<w2:key id="postNo1" name="우편번호1" dataType="text"></w2:key>
|
||||
<w2:key id="postNo2" name="우편번호2" dataType="text"></w2:key>
|
||||
<w2:key id="addressSeqno" name="우편번호일련번호" dataType="text"></w2:key>
|
||||
<w2:key id="addressCity" name="시도명" dataType="text"></w2:key>
|
||||
<w2:key id="addressDistrict" name="시군구명" dataType="text"></w2:key>
|
||||
<w2:key id="addressSame" name="읍면동명" dataType="text"></w2:key>
|
||||
<w2:key id="addressTown" name="리명" dataType="text"></w2:key>
|
||||
<w2:key id="addressBunji" name="번지" dataType="text"></w2:key>
|
||||
<w2:key id="stBunji" name="시작번지" dataType="text"></w2:key>
|
||||
<w2:key id="edBunji" name="종료번지" dataType="text"></w2:key>
|
||||
<w2:key id="stNumDong" name="건물시작동(숫자)" dataType="text"></w2:key>
|
||||
<w2:key id="edNumDong" name="건물종료동(숫자)" dataType="text"></w2:key>
|
||||
<w2:key id="stDong" name="건물시작동" dataType="text"></w2:key>
|
||||
<w2:key id="edDong" name="건물종료동" dataType="text"></w2:key>
|
||||
<w2:key id="stAfterBunji" name="번지이하시작" dataType="text"></w2:key>
|
||||
<w2:key id="edAfterBunji" name="전지이하종료" dataType="text"></w2:key>
|
||||
<w2:key id="addressAdminCode" name="행정코드" dataType="text"></w2:key>
|
||||
<w2:key id="createDate" name="작성일자" dataType="text"></w2:key>
|
||||
<w2:key id="creater" name="작성자" dataType="text"></w2:key>
|
||||
<w2:key id="updateDate" name="수정일자" dataType="text"></w2:key>
|
||||
<w2:key id="updater" name="수정자" dataType="text"></w2:key>
|
||||
<w2:key id="addrCtNm" name="시도명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="sidoCode" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column dataType="number" id="sidoId" name="시도코드"></w2:column>
|
||||
<w2:column dataType="text" id="adminCity" name="시도명"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="reqAdminCode">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="addressCity" name="시도" dataType="text"></w2:key>
|
||||
<w2:key id="addressDistrict" name="시군" dataType="text"></w2:key>
|
||||
<w2:key id="addressSame" name="읍면동" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="resCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="addressAdminCode" name="행정코드" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
<w2:data>
|
||||
<w2:row></w2:row>
|
||||
</w2:data>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sub_create" ref='data:json,{"id":"reqSave","key":"param"}' target="" action="/cfs/system/createPostNo.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:submission id="sub_codeSido" ref='data:json,{"id":"reqSave","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_adminCode" ref='data:json,{"id":"reqSave","key":"param"}' target='data:json,resCode' action="/cfs/system/findSystemAddressAdimnCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="scwin.sub_adminCode_submitdone" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
|
||||
var crudSe = com.getParameter('data').pCrudSe;
|
||||
reqSave.set("crudSe",crudSe);
|
||||
|
||||
postNo1.setValue(com.getParameter('data').postNo1);
|
||||
postNo2.setValue(com.getParameter('data').postNo2);
|
||||
addressSeqno.setValue(com.getParameter('data').addressSeqno);
|
||||
sbx_localAddress.setValue(com.getParameter('data').addressCity);
|
||||
addressDistrict.setValue(com.getParameter('data').addressDistrict);
|
||||
addressSame.setValue(com.getParameter('data').addressSame);
|
||||
addressTown.setValue(com.getParameter('data').addressTown);
|
||||
stBunji.setValue(com.getParameter('data').stBunji);
|
||||
edBunji.setValue(com.getParameter('data').edBunji);
|
||||
stAfterBunji.setValue(com.getParameter('data').stAfterBunji);
|
||||
edAfterBunji.setValue(com.getParameter('data').edAfterBunji);
|
||||
addressAdminCode.setValue(com.getParameter('data').addressAdminCode);
|
||||
};
|
||||
|
||||
|
||||
scwin.btn_save_onclick = function(e) {
|
||||
|
||||
if (postNo1.getValue() == '') {
|
||||
com.alert('우편번호 앞자리를 입력하세요', function() {
|
||||
postNo1.focus();
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (postNo2.getValue() == '') {
|
||||
com.alert('우편번호 뒷자리를 입력하세요', function() {
|
||||
postNo2.focus();
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (sbx_localAddress.getValue() == '') {
|
||||
com.alert('시도명을 입력하세요', function() {
|
||||
sbx_localAddress.focus();
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
||||
if (addressDistrict.getValue() == '') {
|
||||
com.alert('시군구명을 입력하세요', function() {
|
||||
addressDistrict.focus();
|
||||
});
|
||||
return false;
|
||||
}
|
||||
if (addressSame.getValue() == '') {
|
||||
com.alert('읍면동명을 입력하세요', function() {
|
||||
addressSame.focus();
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
||||
var adminCity = sbx_localAddress.getText();
|
||||
|
||||
reqSave.set("addrCtNm",adminCity);
|
||||
|
||||
com.executeSubmission(sub_create);
|
||||
};
|
||||
|
||||
scwin.btn_close_onclick = function(e) {
|
||||
com.closePopup();
|
||||
};
|
||||
|
||||
scwin.btn_trigger12_onclick = function(e) {
|
||||
com.executeSubmission(sub_adminCode);
|
||||
|
||||
};
|
||||
|
||||
scwin.sub_adminCode_submitdone = function(e) {
|
||||
var arrayAddressAdminCode = resCode.getColData( 'addressAdminCode' );
|
||||
|
||||
var addressAdminCode = arrayAddressAdminCode[0];
|
||||
//alert(addressAdminCode);
|
||||
if(addressAdminCode == null){
|
||||
com.alert("행정동코드가 없습니다.");
|
||||
};
|
||||
|
||||
reqSave.set("addressAdminCode",addressAdminCode);
|
||||
};
|
||||
|
||||
scwin.sub_update_submitdone = function(e) {
|
||||
com.alert("저장되었습니다.");
|
||||
//com.closePopup();
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="padding-top: 10px;">
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="우편번호 등록" style="width:130px;" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act save" ev:onclick="scwin.btn_save_onclick" id="btn_save" style="margin-left:0px;"
|
||||
type="button">
|
||||
<xf:label><![CDATA[저장]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb" id="tbl_table1" style="width:100%" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="caption"></xf:group>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:100.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:150.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:100.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:150.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:100px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:192px;" 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">
|
||||
<xf:input adjustMaxLength="false" dataType="number" displayFormat="" id="postNo1" maxlength="3" readOnly=""
|
||||
ref="data:reqSave.postNo1" style="width: 30px;margin-left: 5px;">
|
||||
</xf:input>
|
||||
<w2:span id="spa_span11" label="-" style="margin-left: 5px;"></w2:span>
|
||||
<xf:input adjustMaxLength="false" dataType="number" displayFormat="" id="postNo2" maxlength="3" readOnly=""
|
||||
ref="data:reqSave.postNo2" style="width: 30px;margin-left: 5px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
시/도
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:select1 allOption="" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
||||
disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_localAddress" ref="data:reqSave.addressCity"
|
||||
style="width:120px;margin-left: 5px;" submenuSize="auto">
|
||||
<xf:choices>
|
||||
<xf:itemset nodeset="data:sidoCode">
|
||||
<xf:label ref="adminCity"></xf:label>
|
||||
<xf:value ref="adminCity"></xf:value>
|
||||
</xf:itemset>
|
||||
</xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
시/군/구
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="addressDistrict" maxlength="20"
|
||||
readOnly="" ref="data:reqSave.addressDistrict" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<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:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
예)서울특별시&nbsp;or&nbsp;경상남도
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</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:input dataType="text" id="addressSame" maxlength="30" readOnly="" ref="data:reqSave.addressSame"
|
||||
style="width:50;margin-left: 5px;">
|
||||
</xf:input>
|
||||
<xf:input id="addressSeqno" ref="data:reqSave.addressSeqno" style="display: none;"></xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
리/건물명
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="addressTown" maxlength="40" readOnly=""
|
||||
ref="data:reqSave.addressTown" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
<xf:input id="crudSe" ref="data:reqSave.crudSe" style="display: none;"></xf:input>
|
||||
<xf:input style="display: none;" id="addrCtNm" ref="data:reqSave.addrCtNm"></xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
예)화양읍&nbsp;or&nbsp;각남면
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
예)&nbsp;교촌리&nbsp;or&nbsp;강남아파트
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
번지/동
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:colspan>1</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="number" id="stBunji" maxlength="5" readOnly=""
|
||||
ref="data:reqSave.stBunji" style="width: 50px;margin-left: 5px;">
|
||||
</xf:input>
|
||||
<w2:span id="spa_span6" label="~" style="margin-left: 5px;"></w2:span>
|
||||
<xf:input adjustMaxLength="false" dataType="number" id="edBunji" maxlength="5" ref="data:reqSave.edBunji"
|
||||
style="width: 50px;margin-left: 5px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
번지이하
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="number" displayFormat="" id="stAfterBunji" maxlength="5" readOnly=""
|
||||
ref="data:reqSave.stAfterBunji" style="width:50px;margin-left: 5px;">
|
||||
</xf:input>
|
||||
<w2:span id="spa_span7" label="~" style="margin-left: 5px;"></w2:span>
|
||||
<xf:input adjustMaxLength="false" dataType="number" id="edAfterBunji" maxlength="5"
|
||||
ref="data:reqSave.edAfterBunji" style="width: 50px;margin-left: 5px">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_th" tagname="th">
|
||||
행정코드
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" disabled="true" displayFormat="" id="addressAdminCode"
|
||||
maxlength="8" readOnly="false" ref="data:reqSave.addressAdminCode" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_trigger12_onclick" id="btn_trigger12" style="margin-left: 5px"
|
||||
type="button">
|
||||
<xf:label><![CDATA[행정코드 검색]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group style="" tagname="tr">
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
예)&nbsp;100-120번지,&nbsp;1~10동
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
예)&nbsp;(1900&nbsp;~&nbsp;1910)
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb_td" tagname="td">
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="btn_fix" id="" style="">
|
||||
<xf:group class="tac" id="" style="">
|
||||
<xf:trigger class="btn_act close" ev:onclick="scwin.btn_close_onclick" id="btn_close" style="" type="button">
|
||||
<xf:label><![CDATA[닫기]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,320 +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:dataMap baseNode="map" id="schReq" style="">
|
||||
<w2:data>
|
||||
<adminCity><![CDATA[ ]]></adminCity>
|
||||
</w2:data>
|
||||
<w2:keyInfo>
|
||||
<w2:key dataType="text" id="adminCity" name="시도코드"></w2:key>
|
||||
<w2:key dataType="text" id="adminDistrict" name="시군구명"></w2:key>
|
||||
<w2:key id="adminSame" name="읍면동명" dataType="text"></w2:key>
|
||||
<w2:key id="addrCtNm" name="시도명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="statList" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="addressAdminCode" name="행정코드" dataType="text"></w2:column>
|
||||
<w2:column dataType="text" id="adminCity" name="시도명"></w2:column>
|
||||
<w2:column dataType="text" id="adminDistrict" name="행정동시군구명"></w2:column>
|
||||
<w2:column id="adminSame" name="행정동읍면동명" dataType="text"></w2:column>
|
||||
<w2:column id="adminTown" name="리명" dataType="text"></w2:column>
|
||||
<w2:column id="adminNewCode" name="신행정코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminInputDate" name="등록일자" dataType="text"></w2:column>
|
||||
<w2:column id="adminUpdateDate" name="주소변경일자" dataType="text"></w2:column>
|
||||
<w2:column id="statusKbn" name="상태코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCancelKbn" name="말소상태" dataType="text"></w2:column>
|
||||
<w2:column id="createDate" name="작성일자" dataType="text"></w2:column>
|
||||
<w2:column id="creater" name="작성자" dataType="text"></w2:column>
|
||||
<w2:column id="updater" name="수정자" dataType="text"></w2:column>
|
||||
<w2:column id="updateDate" name="수정일자" dataType="text"></w2:column>
|
||||
<w2:column id="chk" name="체크" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
<w2:dataMap baseNode="map" id="delReq">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="addressAdminCode" name="행정코드" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataMap baseNode="map" id="reqCode">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="sidoId" name="시도코드" dataType="text"></w2:key>
|
||||
<w2:key id="sidoName" name="시도명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" repeatNode="map" id="sidoCode" saveRemovedData="true">
|
||||
<w2:columnInfo>
|
||||
<w2:column id="sidoId" name="시도코드" dataType="text"></w2:column>
|
||||
<w2:column id="adminCity" name="시도명" dataType="text"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sbm_statList" ref='data:json,{"id":"schReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/findSystemAddressAdimnCodeList.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_delete" ref='data:json,{"id":"delReq","key":"param"}'
|
||||
target='data:json,{"id":"statList","key":"statList"}' action="/cfs/system/deleteAddressAdminCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="scwin.sub_delete_submitdone" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
<xf:submission id="sub_codeSido" ref='data:json,{"id":"reqCode","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
scwin.onpageload = function() {
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
};
|
||||
|
||||
scwin.btn_search_onclick = function() {
|
||||
var adminCity = sbx_localAddress.getText();
|
||||
//alert(adminCity);
|
||||
schReq.set("addrCtNm",adminCity);
|
||||
com.executeSubmission(sbm_statList);
|
||||
};
|
||||
|
||||
scwin.btn_add_onclick = function() {
|
||||
|
||||
var param = {'pCrudSe':'C'};
|
||||
var options = {};
|
||||
options.id = "SystemAddressAdminCodePopup";
|
||||
options.popupName = "행정동코드 등록/수정";
|
||||
options.modal = true;
|
||||
options.resizable = false;
|
||||
options.width = 800;
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST004P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 행정동코드 수정 버튼
|
||||
scwin.btn_mod_onclick = function(e) {
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");;
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("수정할 행정동코드를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
scwin.findSystemAddressAdminCodePopup(rowIdx);
|
||||
} else {
|
||||
com.alert('수정할 행정동코드를 체크하세요. ');
|
||||
}
|
||||
};
|
||||
|
||||
// 행정동코드 수정팝업
|
||||
scwin.findSystemAddressAdminCodePopup = function(rowIdx) {
|
||||
var addressAdminCode = grd_statList.getCellData(rowIdx, 'addressAdminCode');
|
||||
var adminCity = grd_statList.getCellData(rowIdx, 'adminCity');
|
||||
var adminDistrict = grd_statList.getCellData(rowIdx, 'adminDistrict');
|
||||
var adminSame = grd_statList.getCellData(rowIdx, 'adminSame');
|
||||
var adminTown = grd_statList.getCellData(rowIdx, 'adminTown');
|
||||
var adminNewCode = grd_statList.getCellData(rowIdx, 'adminNewCode');
|
||||
var adminInputDate = grd_statList.getCellData(rowIdx, 'adminInputDate');
|
||||
var adminCancelKbn = grd_statList.getCellData(rowIdx, 'adminCancelKbn');
|
||||
var statusKbn = grd_statList.getCellData(rowIdx, 'statusKbn');
|
||||
var createDate = grd_statList.getCellData(rowIdx, 'createDate');
|
||||
var creater = grd_statList.getCellData(rowIdx, 'creater');
|
||||
|
||||
var param = {'pCrudSe':'U'
|
||||
, 'addressAdminCode':addressAdminCode
|
||||
, 'adminCity':adminCity
|
||||
, 'adminDistrict':adminDistrict
|
||||
, 'adminSame':adminSame
|
||||
, 'adminTown':adminTown
|
||||
, 'adminNewCode':adminNewCode
|
||||
, 'adminInputDate':adminInputDate
|
||||
, 'adminCancelKbn':adminCancelKbn
|
||||
, 'statusKbn':statusKbn
|
||||
, 'createDate':createDate
|
||||
, 'creater':creater};
|
||||
|
||||
var options = {
|
||||
id : "SystemAddressAdminCodePopup",
|
||||
popupName : "행정동코드 등록/수정",
|
||||
modal : true,
|
||||
resizable : false,
|
||||
width : 800};
|
||||
|
||||
com.openPopup(com.getFullPath("/ui/cfs/system/ST004P01.xml"), options, {data:param, callbackFn:"scwin.btn_search_onclick"});
|
||||
};
|
||||
|
||||
// 행정동코드 삭제버튼
|
||||
scwin.btn_del_onclick = function(e) {
|
||||
if(!confirm("삭제하시겠습니까?")){return;};
|
||||
var rowIdx = grd_statList.getCheckedIndex("chk");
|
||||
|
||||
if(rowIdx !='') {
|
||||
var idxLen = grd_statList.getCheckedIndex("chk").length;
|
||||
if(idxLen > 1){
|
||||
alert("삭제할 행정동코드를 하나만 체크하세요");
|
||||
return false;
|
||||
};
|
||||
|
||||
var addressAdminCode = grd_statList.getCellData(rowIdx, 'addressAdminCode');
|
||||
|
||||
delReq.set("addressAdminCode",addressAdminCode);
|
||||
com.executeSubmission(sub_delete);
|
||||
} else {
|
||||
com.alert('삭제할 행정동코드를 체크하세요 ');
|
||||
}
|
||||
};
|
||||
|
||||
scwin.sub_delete_submitdone = function(e) {
|
||||
com.executeSubmission(sbm_statList);
|
||||
alert("삭제되었습니다.");
|
||||
};
|
||||
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="">
|
||||
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
||||
<xf:group class="tbl_search" id="grp_search" style="">
|
||||
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="colgroup">
|
||||
<xf:group style="width:70.00px;" tagname="col"></xf:group>
|
||||
<xf:group style="width:150px;" tagname="col"></xf:group>
|
||||
<xf:group tagname="col" style="width:7.33%;"></xf:group><xf:group tagname="col" style="width:150px;"></xf:group><xf:group tagname="col" style="width:8.16%;"></xf:group><xf:group tagname="col" style="width:150px;"></xf:group><xf:group style="width:*;" tagname="col"></xf:group>
|
||||
</xf:group>
|
||||
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
||||
<xf:group class="w2tb_th" style="" tagname="th">시도명</xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td"><xf:select1 allOption="" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
||||
disabledClass="w2selectbox_disabled" displayMode="label" ev:onchange="" id="sbx_localAddress" ref="data:schReq.adminCity"
|
||||
style="width:120px;" submenuSize="auto" visibleRowNum="16">
|
||||
<xf:choices>
|
||||
<xf:itemset nodeset="data:sidoCode">
|
||||
<xf:label ref="adminCity"></xf:label>
|
||||
<xf:value ref="adminCity"></xf:value>
|
||||
</xf:itemset>
|
||||
</xf:choices>
|
||||
</xf:select1></xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">시/군/구</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="adminDistrict" readOnly="false" ref="data:schReq.adminDistrict" style="width:120px;margin-left:2px;"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_th" style="" tagname="th">읍/면/동</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td"><w2:attributes></w2:attributes><xf:input adjustMaxLength="false" id="adminSame" readOnly="false" ref="data:schReq.adminSame" style="width:120px;margin-left:2px;"></xf:input></xf:group>
|
||||
<xf:group class="w2tb_td" style="" tagname="td">
|
||||
<xf:group class="fr" id="">
|
||||
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" style="" type="button">
|
||||
<xf:label><![CDATA[조회]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act add" id="btn_add" style="" type="button" ev:onclick="scwin.btn_add_onclick">
|
||||
<xf:label><![CDATA[추가]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act update" id="btn_mod" style="" type="button" ev:onclick="scwin.btn_mod_onclick">
|
||||
<xf:label><![CDATA[수정]]></xf:label>
|
||||
</xf:trigger>
|
||||
<xf:trigger class="btn_act del" id="btn_del" style="" type="button" ev:onclick="scwin.btn_del_onclick">
|
||||
<xf:label><![CDATA[삭제]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
|
||||
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
||||
scrollByColumnAdaptive="false" style="height: 150px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true">
|
||||
<w2:header id="header1" style="">
|
||||
<w2:row id="row1" style="">
|
||||
<w2:column removeBorderStyle="false" width="30" inputType="text" style="" id="column19" value="선택" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="height:25px;" width="100"
|
||||
value="행정동코드">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="97" inputType="text" style="height:25px;" id="column3" value="시도명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="95" inputType="text" style="height:25px;" id="column5" value="시군구명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="86" inputType="text" style="height:25px;" id="column7" value="읍면동명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="105" inputType="text" style="height:25px;" id="column9" value="리명"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="118" inputType="text" style="height:25px;" id="column11" value="신행정동코드"
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column18" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column16" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column14" value="" blockSelect="false"
|
||||
displayMode="label">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:header>
|
||||
<w2:gBody id="gBody1" style="">
|
||||
<w2:row id="row2" style="">
|
||||
<w2:column removeBorderStyle="false" width="35" inputType="checkbox" style="" id="chk" value=""
|
||||
blockSelect="false" displayMode="label" readOnly="false">
|
||||
</w2:column>
|
||||
<w2:column blockSelect="false" displayMode="label" id="addressAdminCode" inputType="text" style="text-align:center;"
|
||||
width="100">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="97" inputType="text" style="text-align:right;" id="adminCity" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
<xf:input style="display: none;" id="pCrudSe"></xf:input>
|
||||
<xf:input style="display: none;" id="seq" ref="data:delReq.seq"></xf:input>
|
||||
<xf:input style="display: none;" id="addrCtNm" ref="data:schReq.addrCtNm"></xf:input>
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="95" inputType="text" style="text-align:right;" id="adminDistrict"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="86" inputType="text" style="text-align:right;" id="adminSame" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="105" inputType="text" style="text-align:right;" id="adminTown" value=""
|
||||
blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="118" inputType="text" style="text-align:center;" id="adminNewCode"
|
||||
value="" blockSelect="false" displayMode="label">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="adminInputDate" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="adminCancelKbn" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="statusKbn" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="createDate" value=""
|
||||
blockSelect="false" displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="creater" value="" blockSelect="false"
|
||||
displayMode="label" hidden="true">
|
||||
</w2:column>
|
||||
</w2:row>
|
||||
</w2:gBody>
|
||||
</w2:gridView>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,233 +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:dataMap baseNode="map" id="reqSave" style="">
|
||||
<w2:keyInfo>
|
||||
<w2:key id="crudSe" name="입력구분" dataType="text"></w2:key>
|
||||
<w2:key id="addressAdminCode" name="행정코드" dataType="text"></w2:key>
|
||||
<w2:key id="adminCity" name="시도명" dataType="text"></w2:key>
|
||||
<w2:key id="adminDistrict" name="시군구명" dataType="text"></w2:key>
|
||||
<w2:key id="adminSame" name="읍면동명" dataType="text"></w2:key>
|
||||
<w2:key id="adminTown" name="리명" dataType="text"></w2:key>
|
||||
<w2:key id="adminNewCode" name="신행정코드" dataType="text"></w2:key>
|
||||
<w2:key id="statusKbn" name="상태코드" dataType="text"></w2:key>
|
||||
<w2:key id="addrCtNm" name="시도명" dataType="text"></w2:key>
|
||||
</w2:keyInfo>
|
||||
</w2:dataMap>
|
||||
<w2:dataList baseNode="list" id="sidoCode" repeatNode="map" saveRemovedData="true" style="">
|
||||
<w2:columnInfo>
|
||||
<w2:column dataType="number" id="sidoId" name="시도코드"></w2:column>
|
||||
<w2:column dataType="text" id="adminCity" name="시도명"></w2:column>
|
||||
</w2:columnInfo>
|
||||
</w2:dataList>
|
||||
</w2:dataCollection>
|
||||
<w2:workflowCollection></w2:workflowCollection>
|
||||
<xf:submission id="sub_create" ref='data:json,{"id":"reqSave","key":"param"}' target=""
|
||||
action="/cfs/system/createAddressAdminCode.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:submission id="sub_codeSido" ref='data:json,{"id":"reqSave","key":"param"}'
|
||||
target='data:json,{"id":"sidoCode","key":"sidoCode"}' action="/cfs/system/findSystemSidoCode.do" method="post"
|
||||
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
||||
processMsg="" ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
||||
</xf:submission>
|
||||
</xf:model>
|
||||
<script type="text/javascript" lazy="false"><![CDATA[
|
||||
|
||||
scwin.onpageload = function() {
|
||||
//com.executeSubmission(sub_codeSido);
|
||||
var sbxOptions = [{code : "", compID : "sbx_localAddress"}];
|
||||
//var sbxOptions = [{code : "sido_01", compID : "sbx_localAddress"}]; // 시/군/구 코드 조회시 사용
|
||||
com.setCfsAddressCode(sbxOptions);
|
||||
crudSe.setValue(com.getParameter('data').pCrudSe);
|
||||
reqSave.set("crudSe",com.getParameter('data').pCrudSe);
|
||||
addressAdminCode.setValue(com.getParameter('data').addressAdminCode);
|
||||
sbx_localAddress.setValue(com.getParameter('data').adminCity);
|
||||
adminDistrict.setValue(com.getParameter('data').adminDistrict);
|
||||
adminSame.setValue(com.getParameter('data').adminSame);
|
||||
adminTown.setValue(com.getParameter('data').adminTown);
|
||||
adminNewCode.setValue(com.getParameter('data').adminNewCode);
|
||||
adminInputDate.setValue(com.getParameter('data').adminInputDate);
|
||||
creater.setValue(com.getParameter('data').creater);
|
||||
};
|
||||
|
||||
scwin.btn_save_onclick = function(e) {
|
||||
var adminCity = sbx_localAddress.getText();
|
||||
//alert(adminCity);
|
||||
reqSave.set("addrCtNm",adminCity);
|
||||
com.executeSubmission(sub_create);
|
||||
};
|
||||
|
||||
scwin.btn_close_onclick = function(e) {
|
||||
com.closePopup();
|
||||
};
|
||||
|
||||
scwin.sub_update_submitdone = function(e) {
|
||||
com.alert("저장되었습니다.");
|
||||
//com.closePopup();
|
||||
};
|
||||
]]></script>
|
||||
</head>
|
||||
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
||||
<xf:group class="contentWrap" id="" style="padding-top: 10px;">
|
||||
<xf:group class="defaultbox" id="" style="">
|
||||
<w2:textbox class="df_tt" id="" label="행정동코드 등록" style="width:130px;" tagname="h2"></w2:textbox>
|
||||
<xf:group class="fr" id="" style="">
|
||||
<xf:trigger class="btn_act save" ev:onclick="scwin.btn_save_onclick" id="btn_save" style="margin-left:0px;"
|
||||
type="button">
|
||||
<xf:label><![CDATA[저장]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="w2tb" id="tbl_table1" style="width:100%;" tagname="table">
|
||||
<w2:attributes>
|
||||
<w2:summary></w2:summary>
|
||||
</w2:attributes>
|
||||
<xf:group tagname="caption"></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">
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="addressAdminCode" maxlength="8"
|
||||
readOnly="false" ref="data:reqSave.addressAdminCode" style="margin-left: 5px">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
상태
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:select1 id="statusKbn" selectedIndex="0" appearance="full" style="width:120px;margin-left: 5px;" cols=""
|
||||
rows="1" ref="data:reqSave.statusKbn">
|
||||
<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:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
신행정동코드
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="adminNewCode" maxlength="8" readOnly=""
|
||||
ref="data:reqSave.adminNewCode" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
</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 allOption="" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
||||
disabledClass="w2selectbox_disabled" displayMode="label" ev:onchange="" id="sbx_localAddress" ref="data:reqSave.adminCity"
|
||||
style="width:103px;margin-left:5px;" submenuSize="auto" visibleRowNum="16">
|
||||
<xf:choices>
|
||||
<xf:itemset nodeset="data:sidoCode">
|
||||
<xf:label ref="adminCity"></xf:label>
|
||||
<xf:value ref="adminCity"></xf:value>
|
||||
</xf:itemset>
|
||||
</xf:choices>
|
||||
</xf:select1>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
시군구명
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="adminDistrict" maxlength="20" readOnly=""
|
||||
ref="data:reqSave.adminDistrict" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
<xf:input style="display: none;" id="crudSe" ref="data:reqSave.crudSe"></xf:input>
|
||||
<xf:input style="display: none;" id="addrCtNm" ref="data:reqSave.addrCtNm"></xf:input>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_th">
|
||||
등록일자
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="adminInputDate" maxlength=""
|
||||
readOnly="true" ref="" style="margin-left: 5px;" disabled="true">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group tagname="tr" style="">
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
읍면동명
|
||||
<w2:attributes>
|
||||
<w2:scope>row</w2:scope>
|
||||
</w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes>
|
||||
<w2:colspan>1</w2:colspan>
|
||||
<w2:rowspan>1</w2:rowspan>
|
||||
</w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" id="adminSame" maxlength="40" readOnly=""
|
||||
ref="data:reqSave.adminSame" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
리명
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="adminTown" maxlength="40" readOnly=""
|
||||
ref="data:reqSave.adminTown" style="margin-left: 5px;">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
<xf:group tagname="th" class="w2tb_th">
|
||||
등록자
|
||||
<w2:attributes></w2:attributes>
|
||||
</xf:group>
|
||||
<xf:group tagname="td" class="w2tb_td">
|
||||
<w2:attributes></w2:attributes>
|
||||
<xf:input adjustMaxLength="false" dataType="text" displayFormat="" id="creater" maxlength="" readOnly="true"
|
||||
ref="" style="margin-left: 5px;" disabled="true">
|
||||
</xf:input>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
<xf:group class="btn_fix" id="" style="">
|
||||
<xf:group class="tac" id="" style="">
|
||||
<xf:trigger class="btn_act close" ev:onclick="scwin.btn_close_onclick" id="btn_close" style="" type="button">
|
||||
<xf:label><![CDATA[닫기]]></xf:label>
|
||||
</xf:trigger>
|
||||
</xf:group>
|
||||
</xf:group>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue