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.

554 lines
38 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="statMap">
<w2:keyInfo>
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
<w2:key id="kbn" name="날짜구분" dataType="text"></w2:key>
<w2:key id="inStDate" name="통행일자(FROM)" dataType="text"></w2:key>
<w2:key id="inEdDate" name="통행일자(TO)" dataType="text"></w2:key>
</w2:keyInfo>
</w2:dataMap>
<w2:dataList baseNode="list" repeatNode="map" id="statList" saveRemovedData="true">
<w2:columnInfo>
<w2:column id="passDate" name="통행일자" dataType="text"></w2:column>
<w2:column id="fareOfficeId" name="요금소" dataType="text"></w2:column>
<w2:column id="fareOfficeNm" name="요금소명" dataType="text"></w2:column>
<w2:column id="inOneCnt" name="유입홀수차량" dataType="number"></w2:column>
<w2:column id="inTwoCnt" name="유입짝수차량" dataType="number"></w2:column>
<w2:column id="inNonCnt" name="유입미인식차량" dataType="number"></w2:column><w2:column id="outOneCnt" name="유출홀수차량" dataType="number"></w2:column>
<w2:column id="outTwoCnt" name="유출짝수차량" dataType="number"></w2:column>
<w2:column id="outNonCnt" name="유출미인식차량" dataType="number"></w2:column>
</w2:columnInfo>
</w2:dataList>
</w2:dataCollection>
<w2:workflowCollection></w2:workflowCollection>
<xf:submission id="sbm_statList" ref='data:json,{"id":"statMap","key":"param"}' target="data:json,statList" action="/cfs/traffic/findTrafficTwoBujae.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[
scwin.onpageload = function() {
//요금소(cfs01)
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
com.setCfsCommonCode(sbxOptions);
//통행일자
var ymd = com.getToday();
ica_inStDate.setValue( ymd );
ica_inEdDate.setValue( ymd );
};
scwin.onpageunload = function() {
};
scwin.btn_search_onclick = function(e) {
//alert("조회");
if (com.validateGroup(grp_search) === false) {
return false;
}else{
if(ica_inEdDate.getValue() < ica_inStDate.getValue()){
com.alert("시작 일자가 종료 일자보다 큽니다. 날짜 형식을 확인해 주세요.");
return;
}
com.executeSubmission(sbm_statList);
}
};
scwin.rad_kbn_onchange = function() {
var kbn = rad_kbn.getValue();
if (kbn == '1') {
//일별
ica_inStDate.setCalendarValueType( "yearMonthDate" );
ica_inEdDate.setCalendarValueType( "yearMonthDate" );
ica_inStDate.setValue( com.getToday( "yyyyMMdd" ) );
ica_inEdDate.setValue( com.getToday( "yyyyMMdd" ) );
} else if (kbn == '2') {
//월별
ica_inStDate.setCalendarValueType( "yearMonth" );
ica_inEdDate.setCalendarValueType( "yearMonth" );
ica_inStDate.setValue( com.getToday( "yyyyMM" ) );
ica_inEdDate.setValue( com.getToday( "yyyyMM" ) );
} else if (kbn == '3') {
//년별
ica_inStDate.setCalendarValueType( "year" );
ica_inEdDate.setCalendarValueType( "year" );
ica_inStDate.setValue( com.getToday( "yyyy" ) );
ica_inEdDate.setValue( com.getToday( "yyyy" ) );
}
};
scwin.btn_excel_down_onclick = function(e) {
if (statList.getRowCount() == 0) {
com.alert("엑셀다운로드할 정보가 없습니다.");
return;
}
//alert("엑셀다운로드");
var info = {};
var options = {};
options.fileName = "차량 2부제 관련 남산터널 교통량 비율_"+com.getCurDtime()+".xlsx";
options.sheetName = "차량 2부제 관련 남산터널 교통량 비율";
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
options.useStyle = "true";
options.printSet = {
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
};
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
//com.fncMakeExcelProvider("incomeService", "findIncomeGeneralMngStatList", "cfs.income.vo.IncomeParamsVO", statMap, grd_statList, options, info);
grd_statList.advancedExcelDownload( options, info );
};
scwin.userExpFare = function(chkColID, valColID, chkStr){
var checkArr = statList.getColData( chkColID );
var valueArr = statList.getColData( valColID );
var sum = 0;
for(var i=0; i<checkArr.length; i++) {
if (checkArr[i] == chkStr) {
sum += valueArr[i];
}
}
return sum;
};
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group class="contentWrap" id="" style="">
<form id="TF031M01" 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="">
<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 tagname="col" style="width:70.00px;"></xf:group>
<xf:group tagname="col" style="width:150.00px;"></xf:group>
<xf:group style="width:200.00px;" tagname="col"></xf:group>
<xf:group style="width:70.00px;" tagname="col"></xf:group>
<xf:group style="width:240.00px;" tagname="col"></xf:group>
<xf:group tagname="col" style="width:*;"></xf:group>
</xf:group>
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
<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>
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_fareOfficeId" ref="data:statMap.fareOfficeId"
style="width:120px;" submenuSize="auto">
<xf:choices></xf:choices>
</xf:select1>
</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"
ev:onchange="scwin.rad_kbn_onchange" renderType="table">
<xf:choices>
<xf:item>
<xf:label><![CDATA[일별]]></xf:label>
<xf:value><![CDATA[1]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[월별]]></xf:label>
<xf:value><![CDATA[2]]></xf:value>
</xf:item>
<xf:item>
<xf:label><![CDATA[년별]]></xf:label>
<xf:value><![CDATA[3]]></xf:value>
</xf:item>
</xf:choices>
</xf:select1>
<xf:group style="" id=""></xf:group>
</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" 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" validCheck="true" mandatory="true">
</w2:inputCalendar>
</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="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="차량 2부제 관련 남산터널 교통량 비율(0시~24시)" 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="" 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: 170px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all">
<w2:header id="header1" style="">
<w2:row id="row1" style="">
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" style="height:26px;" value="구분"
width="120" colSpan="" rowSpan="2">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column3" inputType="text" removeBorderStyle="false"
style="height:26px;" value="요금소 구분" width="120" colSpan="" rowSpan="2">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column7" inputType="text" removeBorderStyle="false"
style="height:26px;" value="2부제 교통량 비율" width="100" colSpan="2" rowSpan="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column11" inputType="text" removeBorderStyle="false"
style="height:26px;" value="유입방향비율" width="100" colSpan="2" rowSpan="">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:26px;" id="column56" value="유출방향비율"
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:26px;" id="column74"
value="유입방향 통행량" blockSelect="false" displayMode="label" colSpan="4" rowSpan="">
</w2:column>
<w2:column removeBorderStyle="false" width="400" inputType="text" style="height:26px;" id="column62"
value="유출방향 통행량" blockSelect="false" displayMode="label" colSpan="4" rowSpan="">
</w2:column>
</w2:row>
<w2:row style="" id="row3">
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column47" value="홀수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column52" value="짝수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column45" value="홀수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column44" value="짝수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column57" value="홀수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column54" value="짝수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column75" value="인식차량 대수"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column72" value="홀수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column69" value="짝수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column66" value="미인식차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column63" value="인식차량대수"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column60" value="홀수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column84" value="짝수차량"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column81" value="미인식차량"
blockSelect="false" displayMode="label">
</w2:column>
</w2:row>
</w2:header>
<w2:gBody id="gBody1" style="">
<w2:row id="row2" style="">
<w2:column blockSelect="false" displayMode="label" id="passDate" inputType="text" removeBorderStyle="false" style=""
value="" width="120">
</w2:column>
<w2:column blockSelect="false" dataType="" displayMode="label" expression="" id="fareOfficeNm" inputType="text"
removeBorderStyle="false" width="120" displayFormat="" excelExpression="" textAlign="">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="booth3" inputType="expression" removeBorderStyle="false"
style="" value="" displayFormat="##.#0" width="100" dataType="number" textAlign="right"
expression="(SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100) == 0 ? 0 : ((SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100)) /2">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="booth4" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" textAlign="right" dataType="number"
expression="(SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100) == 0 ? 0 : ((SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100)) /2">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="booth9" inputType="expression" removeBorderStyle="false"
style="" displayFormat="##.#0" value="" width="100" dataType="number" textAlign="right"
expression="SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="booth10" displayFormat="##.#0" inputType="expression"
removeBorderStyle="false" style="" value="" width="100" textAlign="right" dataType="number"
expression="SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column58" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column55" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column76" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('inOneCnt')+SUM('inTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="inOneCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="inTwoCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="inNonCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column64" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('outOneCnt')+SUM('outTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="outOneCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="outTwoCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="outNonCnt" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right">
</w2:column>
</w2:row>
</w2:gBody>
<w2:footer style="" id="footer1">
<w2:row style="" id="row5">
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column117" value="합계"
blockSelect="false" displayMode="label" colSpan="" rowSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column116" value="전체"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column115" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100) == 0 ? 0 : ((SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100)) /2">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column114" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100) == 0 ? 0 : ((SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100) + (SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100)) /2">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column113" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('inOneCnt') == 0 ? 0 : SUM('inOneCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column112" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('inTwoCnt') == 0 ? 0 : SUM('inTwoCnt') / (SUM('inOneCnt')+SUM('inTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column111" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('outOneCnt') == 0 ? 0 : SUM('outOneCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column110" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="SUM('outTwoCnt') == 0 ? 0 : SUM('outTwoCnt') / (SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column109" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('inOneCnt')+SUM('inTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column108" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('inOneCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column107" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('inTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column106" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('inNonCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column105" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="SUM('outOneCnt')+SUM('outTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column104" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('outOneCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column103" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('outTwoCnt')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column102" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('outNonCnt')">
</w2:column>
</w2:row>
<w2:row style="" id="row6">
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column132" value="1호 합계"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column131" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(scwin.userExpFare('fareOfficeId','inOneCnt','01') + scwin.userExpFare('fareOfficeId','outOneCnt','01')) == 0 ? 0 : (scwin.userExpFare('fareOfficeId','inOneCnt','01') + scwin.userExpFare('fareOfficeId','outOneCnt','01')) / (SUM('inOneCnt')+SUM('inTwoCnt')+SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column130" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(scwin.userExpFare('fareOfficeId','inTwoCnt','01') + scwin.userExpFare('fareOfficeId','outTwoCnt','01')) == 0 ? 0 : (scwin.userExpFare('fareOfficeId','inTwoCnt','01') + scwin.userExpFare('fareOfficeId','outTwoCnt','01')) / (SUM('inOneCnt')+SUM('inTwoCnt')+SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column129" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','01') == 0 ? 0 : scwin.userExpFare('fareOfficeId','inOneCnt','01') / (scwin.userExpFare('fareOfficeId','inOneCnt','01')+scwin.userExpFare('fareOfficeId','inTwoCnt','01')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column128" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inTwoCnt','01') == 0 ? 0 : scwin.userExpFare('fareOfficeId','inTwoCnt','01') / (scwin.userExpFare('fareOfficeId','inOneCnt','01')+scwin.userExpFare('fareOfficeId','inTwoCnt','01')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column127" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','01') == 0 ? 0 : scwin.userExpFare('fareOfficeId','outOneCnt','01') / (scwin.userExpFare('fareOfficeId','outOneCnt','01')+scwin.userExpFare('fareOfficeId','outTwoCnt','01')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column126" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outTwoCnt','01') == 0 ? 0 : scwin.userExpFare('fareOfficeId','outTwoCnt','01') / (scwin.userExpFare('fareOfficeId','outOneCnt','01')+scwin.userExpFare('fareOfficeId','outTwoCnt','01')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column125" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','01')+scwin.userExpFare('fareOfficeId','inTwoCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column124" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column123" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inTwoCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column122" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inNonCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column121" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','01')+scwin.userExpFare('fareOfficeId','outTwoCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column120" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column119" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outTwoCnt','01')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column118" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outNonCnt','01')">
</w2:column>
</w2:row>
<w2:row style="" id="row4">
<w2:column removeBorderStyle="false" width="120" inputType="text" style="" id="column100" value="3호 합계"
blockSelect="false" displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column99" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(scwin.userExpFare('fareOfficeId','inOneCnt','03') + scwin.userExpFare('fareOfficeId','outOneCnt','03')) == 0 ? 0 : (scwin.userExpFare('fareOfficeId','inOneCnt','03') + scwin.userExpFare('fareOfficeId','outOneCnt','03')) / (SUM('inOneCnt')+SUM('inTwoCnt')+SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column98" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="(scwin.userExpFare('fareOfficeId','inTwoCnt','03') + scwin.userExpFare('fareOfficeId','outTwoCnt','03')) == 0 ? 0 : (scwin.userExpFare('fareOfficeId','inTwoCnt','03') + scwin.userExpFare('fareOfficeId','outTwoCnt','03')) / (SUM('inOneCnt')+SUM('inTwoCnt')+SUM('outOneCnt')+SUM('outTwoCnt')) * 100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column97" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','03') == 0 ? 0 : scwin.userExpFare('fareOfficeId','inOneCnt','03') / (scwin.userExpFare('fareOfficeId','inOneCnt','03')+scwin.userExpFare('fareOfficeId','inTwoCnt','03')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column96" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inTwoCnt','03') == 0 ? 0 : scwin.userExpFare('fareOfficeId','inTwoCnt','03') / (scwin.userExpFare('fareOfficeId','inOneCnt','03')+scwin.userExpFare('fareOfficeId','inTwoCnt','03')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column95" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','03') == 0 ? 0 : scwin.userExpFare('fareOfficeId','outOneCnt','03') / (scwin.userExpFare('fareOfficeId','outOneCnt','03')+scwin.userExpFare('fareOfficeId','outTwoCnt','03')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column94" value=""
blockSelect="false" displayMode="label" displayFormat="##.#0" dataType="number" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outTwoCnt','03') == 0 ? 0 : scwin.userExpFare('fareOfficeId','outTwoCnt','03') / (scwin.userExpFare('fareOfficeId','outOneCnt','03')+scwin.userExpFare('fareOfficeId','outTwoCnt','03')) *100">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column93" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','03')+scwin.userExpFare('fareOfficeId','inTwoCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column92" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inOneCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column91" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inTwoCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column90" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','inNonCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column89" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','03')+scwin.userExpFare('fareOfficeId','outTwoCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column88" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outOneCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column87" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outTwoCnt','03')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column86" value=""
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right"
expression="scwin.userExpFare('fareOfficeId','outNonCnt','03')">
</w2:column>
</w2:row>
</w2:footer>
</w2:gridView>
<w2:span id="spa_span2" label="※본 화면의 통계정보는 2020년 1월부터 생성됨" style="font-weight:bold;font-size:10pt;"></w2:span>
</xf:group>
</body>
</html>