You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
271 lines
15 KiB
XML
271 lines
15 KiB
XML
<?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="number"></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: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_6.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() {
|
|
|
|
dateFrom.setValue( com.getToday() );
|
|
dateTo.setValue( com.getToday() );
|
|
};
|
|
|
|
scwin.btn_search_onclick = function() {
|
|
if (com.validateGroup(grp_search) === false) {
|
|
return false;
|
|
|
|
}else{
|
|
if(dateTo.getValue() < dateFrom.getValue()){
|
|
com.alert("시작 일자가 종료 일자보다 큽니다. 날짜 형식을 확인해 주세요.");
|
|
return;
|
|
}
|
|
com.executeSubmission(sbm_statList);
|
|
}
|
|
};
|
|
|
|
|
|
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
if (statList.getRowCount() == 0) {
|
|
com.alert("엑셀다운로드할 정보가 없습니다.");
|
|
return;
|
|
}
|
|
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;" tagname="th">(&nbsp;취소건의,고지취소,수납&nbsp;제외&nbsp;)<w2:attributes><w2:colspan>2</w2:colspan><w2:rowspan>1</w2:rowspan></w2:attributes></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" 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="">
|
|
<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:ondblclick="" ev:onclick="scwin.btn_excel_down_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="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="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="column30" value="차로"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="170" 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="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="carNo"
|
|
value="" blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="owner"
|
|
value="" blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" 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="carTypeName"
|
|
value="" blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="text-align:center;" id="fareOfficeId"
|
|
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="170" inputType="text" style="" id="passTime" displayFormat="####-##-## ##:##:##" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="lavyAmount" displayFormat="#,##0" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="motionId" 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>
|