총괄현황 소스정리

main
이범준 2 months ago
parent 27e8f425ad
commit 7e6968c560

@ -1,11 +1,12 @@
<?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>
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>
@ -145,32 +146,37 @@
</w2:dataList>
</w2:dataCollection>
<w2:workflowCollection></w2:workflowCollection>
<xf:submission id="sbm_statList" ref='data:json,{"id":"statMap","key":"param"}' target='data:json,{"id":"statList","key":"statList"}'
action="/cfs/income/findIncomeGeneralMngStatNonHldyList.do" method="post" mediatype="application/json" encoding="UTF-8" instance=""
<xf:submission id="sbm_statList"
ref='data:json,{"id":"statMap","key":"param"}' target='data:json,{"id":"statList","key":"statList"}'
action="/cfs/income/findIncomeGeneralMngStatNonHldyList.do"
method="post" mediatype="application/json" encoding="UTF-8" instance=""
replace="" errorHandler="" customHandler="" mode="asynchronous" processMsg="조회중입니다." ev:submit=""
ev:submitdone="scwin.sbm_statList_submitdone" ev:submiterror="" abortTrigger="">
</xf:submission>
<xf:submission id="sbm_statList2" ref='data:json,{"id":"statMap","key":"param"}' target='data:json,{"id":"statList2","key":"statList"}'
action="/cfs/income/findIncomeGeneralMngStatList.do" method="post" mediatype="application/json" encoding="UTF-8" instance=""
<xf:submission id="sbm_statList2"
ref='data:json,{"id":"statMap","key":"param"}'
target='data:json,{"id":"statList2","key":"statList"}'
action="/cfs/income/findIncomeGeneralMngStatList.do"
method="post" mediatype="application/json" encoding="UTF-8" instance=""
replace="" errorHandler="" customHandler="" mode="asynchronous" processMsg="조회중입니다." ev:submit=""
ev:submitdone="scwin.sbm_statList_submitdone" ev:submiterror="" abortTrigger="">
</xf:submission>
</xf:model>
<script type="text/javascript" lazy="false"><![CDATA[
</xf:model>
<script type="text/javascript" lazy="false"><![CDATA[
scwin.onpageload = function() {
scwin.onpageload = function() {
//통행일자
var ymd = com.getToday();
ica_inStDate.setValue( ymd );
ica_inEdDate.setValue( ymd );
grp_group2.hide()
};
};
scwin.onpageunload = function() {
scwin.onpageunload = function() {
};
};
scwin.btn_search_onclick = function(e) {
scwin.btn_search_onclick = function(e) {
if(rad_kbn.getValue() == "1"){
if(ica_inEdDate.getValue()-ica_inStDate.getValue() > 100){
com.alert("일별 조회는 대용량 데이터로 인해 1개월 이상 데이터를 조회할 수 없습니다.");
@ -203,14 +209,14 @@
com.executeSubmission(sbm_statList2);
}
}
};
};
fncFormatDateYM = function(value) {
fncFormatDateYM = function(value) {
var rtn = value.substr(0,4)+"년 "+value.substr(4,6)+"월";
return rtn;
};
};
fncFormatterFareOfficeId = function(value) {
fncFormatterFareOfficeId = function(value) {
var rtn = "";
if (value == '1') {
rtn = "1 호";
@ -218,9 +224,9 @@
rtn = "3 호";
}
return rtn;
};
};
scwin.rad_kbn_onchange = function() {
scwin.rad_kbn_onchange = function() {
//일별
if (rad_kbn.getValue() == '1') {
ica_inStDate.setCalendarValueType( "yearMonthDate" );
@ -249,9 +255,9 @@
grp_group1.hide( );
grp_group2.show()
}
};
};
scwin.btn_excel_down_onclick = function(e) {
scwin.btn_excel_down_onclick = function(e) {
if (rad_kbn.getValue() == "1"){
if (statList.getRowCount() == 0) {
com.alert("엑셀다운로드할 정보가 없습니다.");
@ -268,8 +274,6 @@
var options = {};
options.fileName = "혼잡 통행료 총괄 현황_"+com.getCurDtime()+".xlsx";
options.sheetName = "혼잡 통행료 총괄 현황";
//options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
//options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
options.useStyle = "true";
@ -285,18 +289,13 @@
options.type = "1";
if (rad_kbn.getValue() == "1"){
//options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
//com.fncMakeExcelProvider("incomeService", "findIncomeGeneralMngStatList", "cfs.income.vo.IncomeParamsVO", statMap, grd_statList, options, info);
//com.gridDataDownLoad(grd_statList, options, info);
grd_statList.advancedExcelDownload( options, info );
}else{
//com.gridDataDownLoad(grd_statList2, options, info);
grd_statList2.advancedExcelDownload( options, info );
}
};
};
scwin.fmtInDate = function(data, formattedData, rowIndex, colIndex) {
scwin.fmtInDate = function(data, formattedData, rowIndex, colIndex) {
var kbn = rad_kbn.getValue();
var rtn = "";
@ -306,9 +305,9 @@
rtn = data.substr(4, 2) + "월";
}
return rtn;
};
};
scwin.userExpFare = function(chkColID, valColID, chkStr){
scwin.userExpFare = function(chkColID, valColID, chkStr){
//일별
if (rad_kbn.getValue() == "1"){
var checkArr = statList.getColData( chkColID );
@ -334,30 +333,26 @@
}
return sum;
}
};
};
scwin.sbm_statList_submitdone = function(e) {
scwin.sbm_statList_submitdone = function(e) {
//일별,월별,년별 일때 [평일징수, 토요일징수] 정보 보여주기
if (rad_kbn.getValue() == '3') {
grd_statList2.setColumnVisible( 'inDate' , false );
} else if (rad_kbn.getValue() == '2') {
grd_statList2.setColumnVisible( 'inDate' , true );
}
};
};
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group class="contentWrap" id="" style="">
<form id="IC006M02" method="post" action="/ClipReport4/reportView.jsp">
<input type="hidden" name="crfName"></input>
<input type="hidden" name="kbn"></input>
<input type="hidden" name="inStDate"></input>
<input type="hidden" name="inEdDate"></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="">
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group class="contentWrap" id="" style="">
<!-- 1.화면타이틀 및 즐겨찾기 -->
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
<!-- 2.검색조건 -->
<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>
@ -374,7 +369,9 @@
<w2:attributes></w2:attributes>
</xf:group>
<xf:group class="w2tb_td" style="" tagname="td">
<xf:select1 id="rad_kbn" selectedIndex="0" appearance="full" style="" cols="" rows="1" ref="data:statMap.kbn"
<xf:select1 id="rad_kbn"
selectedIndex="0" appearance="full" style="" cols="" rows="1"
ref="data:statMap.kbn"
ev:onchange="scwin.rad_kbn_onchange" renderType="table">
<xf:choices>
<xf:item>
@ -397,27 +394,33 @@
</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_inStDate" ref="data:statMap.inStDate" renderDiv="true" renderType="component" style="" weekStartsOn="0"
<w2:inputCalendar calendarValueType="yearMonthDate"
class="" dateValidCheck="" focusOnDateSelect="false"
footerDiv="false" id="ica_inStDate" ref="data:statMap.inStDate"
renderDiv="true" renderType="component" style="" weekStartsOn="0"
validCheck="true" mandatory="true">
</w2:inputCalendar>
<w2:span id="spa_span1" label="~" style=""></w2:span>
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
footerDiv="false" id="ica_inEdDate" ref="data:statMap.inEdDate" renderDiv="true" renderType="component" style="" weekStartsOn="0"
<w2:inputCalendar calendarValueType="yearMonthDate"
class="" dateValidCheck="" focusOnDateSelect="false"
footerDiv="false" id="ica_inEdDate" ref="data:statMap.inEdDate"
renderDiv="true" renderType="component" style="" 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: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>
<!-- 3.그리드제목 및 버튼 -->
<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"
@ -425,13 +428,20 @@
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
</xf:trigger>
</xf:group>
</xf:group>
<xf:group style="" id="grp_group1" class="">
<w2:gridView autoFit="none" autoFitMinWidth="600" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false"
scrollByColumnAdaptive="false" style="height:312px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all">
</xf:group>
<!-- 4A.일별 통계 -->
<xf:group style="" id="grp_group1" class="">
<w2:gridView autoFit="none" autoFitMinWidth="600" class="cm_grid"
dataList="data:statList" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList"
ignoreCellClick="false" ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false"
scrollByColumnAdaptive="false"
style="height:312px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all">
<!-- 4A.1 캡션 -->
<w2:caption id="caption1" style="" value="this is a grid caption."></w2:caption>
<!-- 4A.2 헤더 -->
<w2:header id="header1" style="">
<!-- 4A.2.1 헤더레벨1 -->
<w2:row id="row3" style="">
<w2:column blockSelect="false" colSpan="3" displayMode="label" id="column165" inputType="text"
removeBorderStyle="false" rowSpan="5" value="구분" width="70">
@ -449,6 +459,7 @@
rowSpan="5" value="징수일수" width="70">
</w2:column>
</w2:row>
<!-- 4A.2.2 헤더레벨2 -->
<w2:row id="row4" style="">
<w2:column blockSelect="false" displayMode="label" id="column219" inputType="text" removeBorderStyle="false"
rowSpan="4" value="총계" width="70">
@ -475,6 +486,7 @@
removeBorderStyle="false" value="정액권" width="70">
</w2:column>
</w2:row>
<!-- 4A.2.3 헤더레벨3 -->
<w2:row id="row5" style="">
<w2:column blockSelect="false" displayMode="label" id="column273" inputType="text" removeBorderStyle="false"
rowSpan="3" style="height:26px;" value="소계" width="70">
@ -519,6 +531,7 @@
removeBorderStyle="false" style="height:26px;" value="금액" width="70">
</w2:column>
</w2:row>
<!-- 4A.2.4 헤더레벨4 -->
<w2:row id="row6" style="">
<w2:column blockSelect="false" displayMode="label" id="column327" inputType="text" removeBorderStyle="false"
rowSpan="2" value="소계" width="70">
@ -596,6 +609,7 @@
removeBorderStyle="false" value="경차" width="70">
</w2:column>
</w2:row>
<!-- 4A.2.5 헤더레벨5 -->
<w2:row id="row1" style="">
<w2:column blockSelect="false" displayMode="label" id="column99" inputType="text" removeBorderStyle="false"
value="소계" width="70">
@ -674,6 +688,7 @@
</w2:column>
</w2:row>
</w2:header>
<!-- 4A.3 보디 -->
<w2:gBody id="gBody1" style="">
<w2:row id="row2" style="">
<w2:column blockSelect="FALSE" colMerge="TRUE" customFormatter="com.fmtDateDtimeKor" dataType="date"
@ -868,7 +883,9 @@
</w2:column>
</w2:row>
</w2:gBody>
<!-- 4A.4 소계[영업소전체](서브토탈) -->
<w2:subTotal id="subTotal1" style="" targetColumnID="inDate">
<!-- 4A.4.1 소계[영업소전체]건수 -->
<w2:row id="row10" style="">
<w2:column blockSelect="FALSE" colMerge="TRUE" displayMode="label" id="column571" removeBorderStyle="FALSE"
rowSpan="2" style=";background-color:#fff;border-top-style:hidden;" width="80">
@ -1086,6 +1103,7 @@
width="70">
</w2:column>
</w2:row>
<!-- 4A.4.2 소계[영업소전체]비율 -->
<w2:row id="row7" style="">
<w2:column blockSelect="FALSE" dataType="text" displayMode="label" id="column569" inputType="text"
removeBorderStyle="FALSE" textAlign="center" value="비율(%)" width="70">
@ -1303,6 +1321,7 @@
</w2:column>
</w2:row>
</w2:subTotal>
<!-- 4A.5 합계(푸터) -->
<w2:footer id="footer1" style="">
<w2:row id="row11" style="">
<w2:column blockSelect="FALSE" colSpan="2" displayMode="label" id="column628" inputType="text"
@ -2170,14 +2189,21 @@
</w2:column>
</w2:row>
</w2:footer>
</w2:gridView>
</xf:group>
<xf:group style="" id="grp_group2" class="">
<w2:gridView autoFit="none" autoFitMinWidth="600" class="cm_grid" dataList="data:statList2" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList2" ignoreCellClick="false" ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false"
scrollByColumnAdaptive="false" style="height:400px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all">
</w2:gridView>
</xf:group>
<!-- 4B.월별,년별 통계 -->
<xf:group style="" id="grp_group2" class="">
<w2:gridView autoFit="none" autoFitMinWidth="600" class="cm_grid"
dataList="data:statList2" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList2"
ignoreCellClick="false" ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false"
scrollByColumnAdaptive="false"
style="height:400px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all">
<!-- 4B.1 캡션 -->
<w2:caption id="caption1" style="" value="this is a grid caption."></w2:caption>
<!-- 4B.2 헤더 -->
<w2:header id="header1" style="">
<!-- 4B.2.1 헤더레벨1 -->
<w2:row id="row3" style="">
<w2:column blockSelect="false" colSpan="3" displayMode="label" id="column165" inputType="text"
removeBorderStyle="false" rowSpan="5" value="구분" width="70">
@ -2195,6 +2221,7 @@
rowSpan="5" value="징수일수" width="70">
</w2:column>
</w2:row>
<!-- 4B.2.2 헤더레벨2 -->
<w2:row id="row4" style="">
<w2:column blockSelect="false" displayMode="label" id="column219" inputType="text" removeBorderStyle="false"
rowSpan="4" value="총계" width="70">
@ -2221,6 +2248,7 @@
removeBorderStyle="false" value="정액권" width="70">
</w2:column>
</w2:row>
<!-- 4B.2.3 헤더레벨3 -->
<w2:row id="row5" style="">
<w2:column blockSelect="false" displayMode="label" id="column273" inputType="text" removeBorderStyle="false"
rowSpan="3" style="height:26px;" value="소계" width="70">
@ -2265,6 +2293,7 @@
removeBorderStyle="false" style="height:26px;" value="금액" width="70">
</w2:column>
</w2:row>
<!-- 4B.2.4 헤더레벨4 -->
<w2:row id="row6" style="">
<w2:column blockSelect="false" displayMode="label" id="column327" inputType="text" removeBorderStyle="false"
rowSpan="2" value="소계" width="70">
@ -2342,6 +2371,7 @@
removeBorderStyle="false" value="경차" width="70">
</w2:column>
</w2:row>
<!-- 4B.2.5 헤더레벨5 -->
<w2:row id="row1" style="">
<w2:column blockSelect="false" displayMode="label" id="column99" inputType="text" removeBorderStyle="false"
value="소계" width="70">
@ -2420,6 +2450,7 @@
</w2:column>
</w2:row>
</w2:header>
<!-- 4B.3 보디 -->
<w2:gBody id="gBody1" style="">
<w2:row id="row2" style="">
<w2:column blockSelect="FALSE" colMerge="true" customFormatter="com.fmtDateDtimeKor" dataType="date"
@ -2616,7 +2647,7 @@
id="cltDayCnt" inputType="text" removeBorderStyle="FALSE" textAlign="center" width="70" rowSpan="2" style="height:42px;">
</w2:column>
</w2:row>
<w2:row style="" id="row16">
<w2:row id="row16" style="">
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="totalQavr" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" excelExpression=""
expression="sum('totalQ')/sum('cltDayCnt')">
@ -2828,7 +2859,9 @@
</w2:column>
</w2:row>
</w2:gBody>
<!-- 4B.4 소계[영업소전체](서브토탈) -->
<w2:subTotal id="subTotal1" style="" targetColumnID="inDate">
<!-- 4B.4.1 소계[영업소전체]건수 -->
<w2:row id="row10" style="">
<w2:column blockSelect="false" colMerge="true" displayMode="label" id="column571" removeBorderStyle="FALSE"
rowSpan="3" style=";background-color:#fff;border-top-style:hidden;" width="80" inputType="text">
@ -3056,7 +3089,8 @@
expression="" colMerge="true" inputType="text">
</w2:column>
</w2:row>
<w2:row style="" id="row15">
<!-- 4B.4.1a 소계[영업소전체]건수[일평균] -->
<w2:row id="row15" style="">
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="totalQsubavr" blockSelect="false"
displayMode="label" displayFormat="#,##0" dataType="number" textAlign="right" excelExpression="" expression="SUM('totalQavr')">
</w2:column>
@ -3264,6 +3298,7 @@
expression="SUM('fixAmountLightCardMavr')">
</w2:column>
</w2:row>
<!-- 4B.4.2 소계[영업소전체]비율 -->
<w2:row id="row7" style="">
<w2:column blockSelect="FALSE" dataType="text" displayMode="label" id="column569" inputType="text"
removeBorderStyle="FALSE" textAlign="center" value="비율(%)" width="70">
@ -3481,10 +3516,8 @@
</w2:column>
</w2:row>
</w2:subTotal>
<!-- 4B.5 합계(푸터) -->
<w2:footer id="footer1" style="">
<w2:row id="row11" style="">
<w2:column blockSelect="FALSE" colSpan="2" displayMode="label" id="column628" inputType="text"
removeBorderStyle="FALSE" rowSpan="7" value="합계" width="150">
@ -3710,7 +3743,7 @@
textAlign="center" width="70">
</w2:column>
</w2:row>
<w2:row style="" id="row19">
<w2:row id="row19" style="">
<w2:column removeBorderStyle="false" width="80" inputType="expression" id="column1119" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('cltDayCnt') == 0 ? 0 : (scwin.userExpFare('fareOfficeId','cltCashNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCashLightNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCashLightRfidQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeLightQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeRfidQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterLightQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterRfidQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltExemptNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltExemptRfidQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayCashQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayPenaltyQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayExemptQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayNotConfirmQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayNotReadQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCouponNormalQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCouponLightQ',&quot;01&quot;) + scwin.userExpFare('fareOfficeId','cltCouponRfidQ',&quot;01&quot;)) / (SUM('cltDayCnt') / 2)"
@ -4138,7 +4171,7 @@
id="column630" inputType="expression" removeBorderStyle="FALSE" textAlign="right" width="70" rowSpan="2">
</w2:column>
</w2:row>
<w2:row style="" id="row20">
<w2:row id="row20" style="">
<w2:column removeBorderStyle="false" width="80" inputType="expression" id="column11191" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('cltDayCnt') == 0 ? 0 : (scwin.userExpFare('fareOfficeId','cltCashNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCashLightNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCashLightRfidQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeLightQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardBeforeRfidQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterLightQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCardAfterRfidQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltExemptNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltExemptRfidQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayCashQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayPenaltyQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayExemptQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayNotConfirmQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','noncltNonpayNotReadQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCouponNormalQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCouponLightQ',&quot;03&quot;) + scwin.userExpFare('fareOfficeId','cltCouponRfidQ',&quot;03&quot;)) / (SUM('cltDayCnt') / 2)">
@ -4561,7 +4594,7 @@
removeBorderStyle="FALSE" textAlign="right" width="70" rowSpan="2">
</w2:column>
</w2:row>
<w2:row style="" id="row21">
<w2:row id="row21" style="">
<w2:column removeBorderStyle="false" width="80" inputType="expression" id="column11192" blockSelect="false"
displayMode="label" displayFormat="#,##0" dataType="number" textAlign="right"
expression="SUM('cltDayCnt') == 0 ? 0 : SUM('totalQ') / (SUM('cltDayCnt') / 2)">
@ -4988,20 +5021,27 @@
</w2:column>
</w2:row>
</w2:footer>
</w2:gridView>
</xf:group>
<w2:span id="spa_span2_1" label="※ 23년도 징수일수(226일) : 당초 247일에서 양방향 징수일시정지(21일) 기간 미포함&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span2_2" label="&amp;nbsp; - 외곽방향만 면제(징수기간 포함) : 3.17~4.16&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span2_3" label="&amp;nbsp; - 양방향 면제(징수기간 미포함) : 4.17~5.16&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_1" label="※중구지역 감면 2025.6.1일 부터 시행 감면정보 포함 표출&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_2" label="&amp;nbsp; - 감면 : 요일제(2021.8 부터 폐지), 저공해3종(2021.12부터 폐지), 중구지역(2025.6부터 발생)&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_3" label="&amp;nbsp; - 선불 > 감면 : 요일제, 저공해3종, 사전등록(경차), 중구지역 감면 대상 정보 , 선불>일반 : 사전등록일반건 포함 됨&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
</xf:group>
</body>
</w2:gridView>
</xf:group>
<!-- 5.통계설명 -->
<w2:span id="spa_span2_1"
label="※ 23년도 징수일수(226일) : 당초 247일에서 양방향 징수일시정지(21일) 기간 미포함&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span2_2"
label="&amp;nbsp; - 외곽방향만 면제(징수기간 포함) : 3.17~4.16&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span2_3"
label="&amp;nbsp; - 양방향 면제(징수기간 미포함) : 4.17~5.16&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_1"
label="※중구지역 감면 2025.6.1일 부터 시행 감면정보 포함 표출&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_2"
label="&amp;nbsp; - 감면 : 요일제(2021.8 부터 폐지), 저공해3종(2021.12부터 폐지), 중구지역(2025.6부터 발생)&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
<w2:span id="spa_span3_3"
label="&amp;nbsp; - 선불 > 감면 : 요일제, 저공해3종, 사전등록(경차), 중구지역 감면 대상 정보 , 선불>일반 : 사전등록일반건 포함 됨&lt;br/&gt;"
style="font-weight:bold;font-size:10pt;"></w2:span>
</xf:group>
</body>
</html>
Loading…
Cancel
Save