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.
354 lines
18 KiB
XML
354 lines
18 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="paramMap" style="">
|
|
<w2:keyInfo>
|
|
<w2:key dataType="text" id="fareOfficeId" name="요금소"></w2:key>
|
|
<w2:key id="boothId" name="차로" dataType="text"></w2:key>
|
|
<w2:key id="carNo" name="차량번호" dataType="text"></w2:key>
|
|
<w2:key dataType="date" id="passStDate" name="통행일자(시작)"></w2:key>
|
|
<w2:key id="passEdDate" name="통행일자(종료)" dataType="date"></w2:key>
|
|
</w2:keyInfo>
|
|
</w2:dataMap>
|
|
<w2:dataList baseNode="list" repeatNode="map" id="overFareList" saveRemovedData="true">
|
|
<w2:columnInfo>
|
|
<w2:column id="checkPrint" name="출력" dataType="text"></w2:column>
|
|
<w2:column id="fareOfficeName" name="요금소명" dataType="text"></w2:column>
|
|
<w2:column id="boothName" name="차로명" dataType="text"></w2:column>
|
|
<w2:column id="passDate" name="통행일자" dataType="date"></w2:column>
|
|
<w2:column id="passTime" name="통행시간(종료)" dataType="text"></w2:column>
|
|
|
|
<w2:column id="overfareAmount" name="과오납금" dataType="number"></w2:column>
|
|
<w2:column id="carNo" name="차량번호" dataType="text"></w2:column>
|
|
<w2:column id="owner" name="차량소유자" dataType="text"></w2:column>
|
|
<w2:column id="residentNo" name="주민(법인)번호" dataType="text"></w2:column>
|
|
<w2:column id="address" name="주소" dataType="text"></w2:column>
|
|
<w2:column id="remarks" name="비고" dataType="text"></w2:column>
|
|
|
|
<w2:column id="fareOfficeId" name="요금소ID" dataType="text"></w2:column>
|
|
<w2:column id="boothId" name="차로ID" dataType="text"></w2:column>
|
|
</w2:columnInfo>
|
|
</w2:dataList>
|
|
</w2:dataCollection>
|
|
<w2:workflowCollection></w2:workflowCollection>
|
|
<xf:submission id="sbm_overFareList" ref='data:json,{"id":"paramMap","key":"param"}' target="data:json,overFareList" action="/cfs/income/findIncomeOverFareRepayNoticeList.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() {
|
|
//요금소(cfs01)
|
|
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
|
|
com.setCfsCommonCode( sbxOptions );
|
|
|
|
//통행일자
|
|
var ymd = com.getToday();
|
|
ica_passStDate.setValue( ymd );
|
|
ica_passEdDate.setValue( ymd );
|
|
boothId.setDisabled( true );
|
|
};
|
|
|
|
scwin.onpageunload = function() {
|
|
|
|
};
|
|
|
|
scwin.btn_search_onclick = function(e) {
|
|
//alert("조회");
|
|
|
|
if (com.validateGroup(grp_search) === false) {
|
|
return;
|
|
} else {
|
|
com.executeSubmission(sbm_overFareList);
|
|
}
|
|
};
|
|
|
|
scwin.btn_print_onclick = function(e) {
|
|
//alert("인쇄");
|
|
|
|
var checkDataArr = grd_overFareList.getCheckedData( "checkPrint" );
|
|
var totalCnt = checkDataArr.length;
|
|
|
|
if (totalCnt > 0) {
|
|
scwin.fnc_setContactUs();
|
|
} else {
|
|
alert("인쇄할 정보가 없습니다. \n인쇄할 정보를 하나 또는 다중 선택하세요.");
|
|
}
|
|
};
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
//alert("엑셀다운로드");
|
|
|
|
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.printSet = {
|
|
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
|
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
|
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
|
};
|
|
options.autoSizeColumn = "true"; //너비자동맞춤 설정 유무 (false:미적용)
|
|
options.useStyle = "true"; //화면의 그리드 스타일을 엑셀파일로 내려받음
|
|
options.useFooterData = "true"; //footer 값을 서식없이 그대로 올린다.
|
|
options.rowNumVisible = "true";
|
|
options.type = "1";
|
|
|
|
//com.gridDataDownLoad(grd_statList, options, info);
|
|
com.fncMakeExcelProvider("incomeOverService", "findIncomeOverFareRepayNoticeList", "cfs.income.vo.IncomeParamsVO", paramMap, grd_overFareList, options, info);
|
|
};
|
|
|
|
|
|
scwin.fnc_printRepayNotice = function() {
|
|
var checkDataArr = grd_overFareList.getCheckedData( "checkPrint" );
|
|
var totalCnt = checkDataArr.length;
|
|
|
|
if (totalCnt > 0) {
|
|
alert("레포트를 인쇄합니다. ("+totalCnt+"건)");
|
|
}
|
|
};
|
|
|
|
scwin.fnc_setContactUs = function() {
|
|
//alert("과오납정보 수정 - 목록 더블클릭");
|
|
var row = grd_overFareList.getCheckedIndex( 0 );
|
|
if(row.length !=1){
|
|
alert("인쇄 작업은 한건만 진행할 수 있습니다.");
|
|
return false;
|
|
}
|
|
var param = {};
|
|
param.fareOfficeId = overFareList.getCellData( row , 'fareOfficeId' );
|
|
param.boothId = overFareList.getCellData( row , 'boothId' );
|
|
param.passDate = overFareList.getCellData( row , 'passDate' );
|
|
param.passTime = overFareList.getCellData( row , 'passTime' );
|
|
param.carNo = overFareList.getCellData( row , 'carNo' );
|
|
param.owner = overFareList.getCellData( row , 'owner' );
|
|
param.residentNo = overFareList.getCellData( row , 'residentNo' );
|
|
|
|
|
|
var options = {};
|
|
options.id = "IncomeContactUsPopup";
|
|
options.popupName = "출력물 문의안내 수정";
|
|
options.modal = true;
|
|
options.resizable = false;
|
|
options.width = 500;
|
|
|
|
com.openPopup(com.getFullPath("/ui/cfs/income/IC026P01.xml"), options, {data:param, callbackFn:"scwin.fnc_printRepayNotice"});
|
|
};
|
|
|
|
scwin.sbx_fareOfficeId_onchange = function() {
|
|
if(this.getValue() == ""){
|
|
boothId.setDisabled( true );
|
|
}else{
|
|
boothId.setDisabled( false );
|
|
}
|
|
};
|
|
]]></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:130.00px;" tagname="col"></xf:group>
|
|
<xf:group style="width:60.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:100.00px;" tagname="col"></xf:group><xf:group style="width:70.00px;" tagname="col"></xf:group>
|
|
<xf:group style="width:230.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_fareOfficeId" ref="data:paramMap.fareOfficeId"
|
|
style="width: 120px;" submenuSize="auto" ev:onchange="scwin.sbx_fareOfficeId_onchange">
|
|
</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="boothId" ref="data:paramMap.boothId"
|
|
style="width: 90px;" submenuSize="auto" visibleRowNum="11">
|
|
<xf:choices>
|
|
<xf:item>
|
|
<xf:label><![CDATA[1차로]]></xf:label>
|
|
<xf:value><![CDATA[01]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[2차로]]></xf:label>
|
|
<xf:value><![CDATA[02]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[3차로]]></xf:label>
|
|
<xf:value><![CDATA[03]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[4차로]]></xf:label>
|
|
<xf:value><![CDATA[04]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[5차로]]></xf:label>
|
|
<xf:value><![CDATA[05]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[6차로]]></xf:label>
|
|
<xf:value><![CDATA[06]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[7차로]]></xf:label>
|
|
<xf:value><![CDATA[07]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[8차로]]></xf:label>
|
|
<xf:value><![CDATA[08]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[9차로]]></xf:label>
|
|
<xf:value><![CDATA[09]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[10차로]]></xf:label>
|
|
<xf:value><![CDATA[10]]></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">
|
|
<xf:input adjustMaxLength="false" id="" style="width:96px;" ref="data:paramMap.carNo" allowChar="" maxlength="20" ignoreChar="! "></xf:input>
|
|
</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="ica_passStDate" ref="data:paramMap.passStDate" renderDiv="true" renderType="component" style=""
|
|
weekStartsOn="0">
|
|
</w2:inputCalendar><w2:span id="spa_span1" label="~" style=""></w2:span><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
|
footerDiv="false" id="ica_passEdDate" ref="data:paramMap.passEdDate" 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 print" id="btn_print" style="" type="button" ev:onclick="scwin.btn_print_onclick">
|
|
<xf:label><![CDATA[인쇄]]></xf:label>
|
|
</xf:trigger>
|
|
<xf:trigger class="btn_act exceldown" ev:onclick="scwin.btn_excel_down_onclick" id="btn_excel_down" style=""
|
|
type="button">
|
|
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
|
</xf:trigger>
|
|
</xf:group>
|
|
</xf:group>
|
|
<w2:gridView autoFit="allColumn" autoFitMinWidth="1400" class="cm_grid" dataList="data:overFareList" fixedColumnWithHidden="true"
|
|
focusMode="row" id="grd_overFareList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
|
scrollByColumnAdaptive="false" style="height: 180px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true"
|
|
rowNumVisible="" rowNumHeaderValue="" ev:oncelldblclick="scwin.grd_statList_oncelldblclick">
|
|
<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="50" inputType="checkbox" style="" id="column21" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" 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="100" 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="100" inputType="text" style="" id="column11" value="과오납금"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="130" inputType="text" style="" id="column9" value="차량번호"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="130" inputType="text" style="" id="column7" value="차량소유자"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="140" inputType="text" style="" id="column5" value="주민(법인)번호"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="400" inputType="text" style="" id="column3" value="주소"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="400" 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="50" inputType="checkbox" style="" id="checkPrint" value=""
|
|
blockSelect="false" displayMode="label" readOnly="false">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="fareOfficeName" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="boothName" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="passDate" value="" blockSelect="false"
|
|
displayMode="label" displayFormat="" calendarValueType="yearMonthDate">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="passTime" value="" blockSelect="false"
|
|
displayMode="label" displayFormat="" dataType="time">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="overfareAmount" value=""
|
|
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="130" inputType="text" style="" id="carNo" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="130" inputType="text" style="" id="owner" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="140" inputType="text" style="" id="residentNo" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="400" inputType="text" style="" id="address" value="" blockSelect="false"
|
|
displayMode="label" textAlign="left">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="400" inputType="text" style="" id="remarks" value="" blockSelect="false"
|
|
displayMode="label" textAlign="left">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
</w2:gridView>
|
|
</xf:group>
|
|
</body>
|
|
</html>
|