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.

635 lines
35 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="kbn" name="구분"></w2:key>
<w2:key id="dateKbn" name="일자구분" dataType="text"></w2:key>
<w2:key dataType="date" id="passStDate" name="통행일자(FROM)"></w2:key>
<w2:key id="passEdDate" name="통행일자(TO)" dataType="date"></w2:key>
</w2:keyInfo>
</w2:dataMap>
<w2:dataList baseNode="list" repeatNode="map" id="statList" saveRemovedData="true">
<w2:columnInfo>
<w2:column id="passDate" name="통행일자" dataType="date"></w2:column>
<w2:column id="typicalName" name="카드사명" dataType="text"></w2:column>
<w2:column id="allSumQ" name="요금소계 건수 소계" dataType="number"></w2:column>
<w2:column id="allNormalQ" name="요금소계 건수 일반" dataType="number"></w2:column>
<w2:column id="allLightQ" name="요금소계 건수 경차" dataType="number"></w2:column>
<w2:column id="allSumM" name="요금소계 금액" dataType="number"></w2:column>
<w2:column id="firstSumQ" name="1호 건수 소계" dataType="number"></w2:column>
<w2:column id="firstNormalQ" name="1호 건수 일반" dataType="number"></w2:column>
<w2:column id="firstLightQ" name="1호 건수 경차" dataType="number"></w2:column>
<w2:column id="firstSumM" name="1호 금액" dataType="number"></w2:column>
<w2:column id="thirdSumQ" name="3호 건수 소계" dataType="number"></w2:column>
<w2:column id="thirdNormalQ" name="3호 건수 일반" dataType="number"></w2:column>
<w2:column id="thirdLightQ" name="3호 건수 경차" dataType="number"></w2:column>
<w2:column id="thirdSumM" name="3호 금액" dataType="number"></w2:column>
</w2:columnInfo>
</w2:dataList>
</w2:dataCollection>
<w2:workflowCollection></w2:workflowCollection>
<xf:submission id="sbm_statList" ref='data:json,{"id":"paramMap","key":"param"}' target="data:json,statList" action="/cfs/income/findIncomeCardCompanyCollectStatList.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() {
grd_statList2.hide();
//통행일자
var ymd = com.getToday();
ica_passStDate.setValue( ymd );
ica_passEdDate.setValue( ymd );
};
scwin.onpageunload = function() {
};
scwin.btn_search_onclick = function(e) {
//alert("조회");
if(rad_dateKbn.getValue() == "1"){
if(ica_passEdDate.getValue() - ica_passStDate.getValue() > 300){
com.alert("일별 조회는 대용량 데이터로 인해 3개월 이상 데이터를 조회할 수 없습니다.");
return;
}
}else if(rad_dateKbn.getValue() == "2"){
if(ica_passEdDate.getValue() - ica_passStDate.getValue() > 3){
com.alert("월별 조회는 대용량 데이터로 인해 3개월 이상 데이터를 조회할 수 없습니다.");
return;
}
}
if (com.validateGroup(grp_search) === false) {
return false;
}else{
if(ica_passEdDate.getValue() < ica_passStDate.getValue()){
com.alert("시작 일자가 종료 일자보다 큽니다. 날짜 형식을 확인해 주세요.");
return;
}
com.executeSubmission(sbm_statList);
}
};
scwin.btn_print_onclick = function(e) {
var form_tag = document.getElementById("IC018M01");
form_tag.kbn.value = paramMap.get("kbn");
form_tag.dateKbn.value = paramMap.get("dateKbn");
form_tag.passStDate.value = paramMap.get("passStDate");
form_tag.passEdDate.value = paramMap.get("passEdDate");
var dateKbn = paramMap.get("dateKbn");
if(dateKbn == '1')
{
form_tag.crfName.value = "IC018M01_1";
} else if (dateKbn == '2') {
form_tag.crfName.value = "IC018M01_2";
} else if (dateKbn == '3') {
form_tag.crfName.value = "IC018M01_3";
}
var url = "/ClipReport4/reportView.jsp";
form_tag.action=url;
form_tag.method ="post";
form_tag.target="clipform";
form_tag.submit();
};
scwin.btn_excel_down_onclick = function(e) {
var kbn = sbx_kbn.getValue();
if (kbn == '1') {
if (statList.getRowCount() == 0) {
com.alert("엑셀다운로드할 정보가 없습니다.");
return;
}
}else if (kbn == '2') {
if (statList.getRowCount() == 0) {
com.alert("엑셀다운로드할 정보가 없습니다.");
return;
}
}
//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 = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
options.printSet = {
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
};
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
options.useStyle = "true"; //화면의 그리드 스타일을 엑셀파일로 내려받음
options.useFooterData = "true"; //footer 값을 서식없이 그대로 올린다.
//options.rowNumVisible = "true";
options.type = "1";
if (kbn == '1') {
//com.gridDataDownLoad(grd_statList, options, info);
grd_statList.advancedExcelDownload( options , info );
} else if (kbn == '2') {
//com.gridDataDownLoad(grd_statList2, options, info);
grd_statList2.advancedExcelDownload( options , info );
}
};
scwin.rad_kbn_onchange = function() {
var dateKbn = rad_dateKbn.getValue();
if (dateKbn == '1') {
//일별
ica_passStDate.setCalendarValueType( "yearMonthDate" );
ica_passEdDate.setCalendarValueType( "yearMonthDate" );
ica_passStDate.setValue( com.getToday( "yyyyMMdd" ) );
ica_passEdDate.setValue( com.getToday( "yyyyMMdd" ) );
} else if (dateKbn == '2') {
//월별
ica_passStDate.setCalendarValueType( "yearMonth" );
ica_passEdDate.setCalendarValueType( "yearMonth" );
ica_passStDate.setValue( com.getToday( "yyyyMM" ) );
ica_passEdDate.setValue( com.getToday( "yyyyMM" ) );
} else if (dateKbn == '3') {
//년별
ica_passStDate.setCalendarValueType( "year" );
ica_passEdDate.setCalendarValueType( "year" );
ica_passStDate.setValue( com.getToday( "yyyy" ) );
ica_passEdDate.setValue( com.getToday( "yyyy" ) );
}
};
scwin.sbm_statList_submitdone = function(e) {
var kbn = sbx_kbn.getValue();
if (kbn == '1') {
grd_statList2.hide();
grd_statList.show();
} else if (kbn == '2') {
grd_statList.hide();
grd_statList2.show();
}
};
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group class="contentWrap" id="" style="">
<form id="IC018M01" method="post" action ="/ClipReport4/reportView.jsp">
<input type ="hidden" name="crfName"></input>
<input type ="hidden" name="kbn"></input>
<input type ="hidden" name="dateKbn"></input>
<input type ="hidden" name="passStDate"></input>
<input type ="hidden" name="passEdDate"></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:70px;" tagname="col"></xf:group>
<xf:group style="width:130px;" tagname="col"></xf:group>
<xf:group style="width:180px;" tagname="col"></xf:group>
<xf:group style="width:70px;" tagname="col"></xf:group>
<xf:group style="width:230px;" 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="" chooseOptionLabel="-전체-" direction="auto"
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_kbn" ref="data:paramMap.kbn"
style="width: 120px;" 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 class="w2tb_td" style="" tagname="td">
<xf:select1 appearance="full" cols="" ev:onchange="scwin.rad_kbn_onchange" id="rad_dateKbn"
ref="data:paramMap.dateKbn" rows="1" selectedIndex="0" style="" 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: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="ica_passStDate" ref="data:paramMap.passStDate" 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_passEdDate" ref="data:paramMap.passEdDate" 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: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" 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="600" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
scrollByColumnAdaptive="false" style="height: 180px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true">
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
<w2:header style="" id="header1">
<w2:row style="" id="row3">
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column42" value="통행일자" blockSelect="false"
displayMode="label" rowSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column41" value="카드사명" blockSelect="false"
displayMode="label" rowSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column40" value="요금소계" blockSelect="false"
displayMode="label" colSpan="4">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column36" value="1호" blockSelect="false"
displayMode="label" colSpan="4">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column32" value="3호" blockSelect="false"
displayMode="label" colSpan="4">
</w2:column>
</w2:row>
<w2:row style="" id="row4">
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:20px;" id="column54" value="건수"
blockSelect="false" displayMode="label" colSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:20px;" id="column51" value="금액"
blockSelect="false" displayMode="label" rowSpan="2">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:20px;" id="column50" value="건수"
blockSelect="false" displayMode="label" colSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:20px;" id="column47" value="금액"
blockSelect="false" displayMode="label" rowSpan="2">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:20px;" id="column46" value="건수"
blockSelect="false" displayMode="label" colSpan="3">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:40px;" id="column43" value="금액"
blockSelect="false" displayMode="label" rowSpan="2">
</w2:column>
</w2:row>
<w2:row style="" id="row1">
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column23" value="계" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column21" value="일반" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column19" value="경차" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column15" value="계" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column13" value="일반" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column11" value="경차" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column7" value="계" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column5" value="일반" blockSelect="false"
displayMode="label">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="column3" 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="100" inputType="text" id="passDate" blockSelect="false"
displayMode="label" colMerge="true" customFormatter="com.fmtDateDtime">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="typicalName" blockSelect="false"
displayMode="label" colMerge="true">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="allSumQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0" expression="SUM('firstSumQ','thirdSumQ')">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="allNormalQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0" expression="SUM('firstNormalQ','thirdNormalQ')">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="allLightQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0" expression="SUM('firstLightQ','thirdLightQ')">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" id="allSumM" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0" expression="SUM('firstSumM','thirdSumM')">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="firstSumQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="firstNormalQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="firstLightQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="firstSumM" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="thirdSumQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="thirdNormalQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="text" id="thirdLightQ" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="thirdSumM" blockSelect="false"
displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
</w2:column>
</w2:row>
</w2:gBody>
<w2:subTotal targetColumnID="passDate" style="" id="subTotal1">
<w2:row style="" id="row5">
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column70" blockSelect="false"
displayMode="label" style=";background-color:#fff;border-top-style:hidden;">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="text" id="column69" blockSelect="false"
displayMode="label" style="" value="소계">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column68" blockSelect="false"
displayMode="label" expression="SUM('allSumQ')" displayFormat="#,##0" dataType="number" textAlign="right" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column67" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('allNormalQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column66" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('allLightQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" id="column65" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('allSumM')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column64" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('firstSumQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column63" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('firstNormalQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column62" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('firstLightQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" id="column61" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('firstSumM')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column60" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('thirdSumQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column59" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('thirdNormalQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="70" inputType="expression" id="column58" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('thirdLightQ')" style="">
</w2:column>
<w2:column removeBorderStyle="false" width="100" inputType="expression" id="column57" blockSelect="false"
displayMode="label" dataType="number" displayFormat="#,##0" textAlign="right" expression="SUM('thirdSumM')" style="">
</w2:column>
</w2:row>
</w2:subTotal>
</w2:gridView>
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:statList" fixedColumnWithHidden="true"
focusMode="row" id="grd_statList2" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
scrollByColumnAdaptive="false" style="height: 180px;margin-top: 0px !important;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true">
<w2:caption id="caption1" style="" value="this is a grid caption."></w2:caption>
<w2:header id="header1" style="">
<w2:row id="row3" style="">
<w2:column blockSelect="false" displayMode="label" id="column42" inputType="text" removeBorderStyle="false"
rowSpan="3" value="카드사명" width="100">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column41" inputType="text" removeBorderStyle="false"
rowSpan="3" value="통행일자" width="100">
</w2:column>
<w2:column blockSelect="false" colSpan="4" displayMode="label" id="column40" inputType="text"
removeBorderStyle="false" value="요금소계" width="100">
</w2:column>
<w2:column blockSelect="false" colSpan="4" displayMode="label" id="column36" inputType="text"
removeBorderStyle="false" value="1호" width="100">
</w2:column>
<w2:column blockSelect="false" colSpan="4" displayMode="label" id="column32" inputType="text"
removeBorderStyle="false" value="3호" width="70">
</w2:column>
</w2:row>
<w2:row id="row4" style="">
<w2:column blockSelect="false" colSpan="3" displayMode="label" id="column54" inputType="text"
removeBorderStyle="false" style="height:20px;" value="건수" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column51" inputType="text" removeBorderStyle="false"
rowSpan="2" style="height:20px;" value="금액" width="100">
</w2:column>
<w2:column blockSelect="false" colSpan="3" displayMode="label" id="column50" inputType="text"
removeBorderStyle="false" style="height:20px;" value="건수" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column47" inputType="text" removeBorderStyle="false"
rowSpan="2" style="height:20px;" value="금액" width="100">
</w2:column>
<w2:column blockSelect="false" colSpan="3" displayMode="label" id="column46" inputType="text"
removeBorderStyle="false" style="height:20px;" value="건수" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column43" inputType="text" removeBorderStyle="false"
rowSpan="2" style="height:40px;" value="금액" width="100">
</w2:column>
</w2:row>
<w2:row id="row1" style="">
<w2:column blockSelect="false" displayMode="label" id="column23" inputType="text" removeBorderStyle="false"
value="계" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column21" inputType="text" removeBorderStyle="false"
value="일반" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column19" inputType="text" removeBorderStyle="false"
value="경차" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column15" inputType="text" removeBorderStyle="false"
value="계" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column13" inputType="text" removeBorderStyle="false"
value="일반" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column11" inputType="text" removeBorderStyle="false"
value="경차" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column7" inputType="text" removeBorderStyle="false" value="계"
width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column5" inputType="text" removeBorderStyle="false"
value="일반" width="70">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column3" inputType="text" removeBorderStyle="false"
value="경차" width="70">
</w2:column>
</w2:row>
</w2:header>
<w2:gBody id="gBody1" style="">
<w2:row id="row2" style="">
<w2:column blockSelect="false" colMerge="true" displayMode="label" id="typicalName" inputType="text"
removeBorderStyle="false" width="100">
</w2:column>
<w2:column blockSelect="false" colMerge="true" displayMode="label" id="passDate" inputType="text"
removeBorderStyle="false" width="100" customFormatter="com.fmtDateDtime">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstSumQ','thirdSumQ')" id="allSumQ" inputType="expression" removeBorderStyle="false" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstNormalQ','thirdNormalQ')" id="allNormalQ" inputType="expression" removeBorderStyle="false" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstLightQ','thirdLightQ')" id="allLightQ" inputType="expression" removeBorderStyle="false" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstSumM','thirdSumM')" id="allSumM" inputType="expression" removeBorderStyle="false" textAlign="right"
width="100">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="firstSumQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="firstNormalQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="firstLightQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="firstSumM"
inputType="text" removeBorderStyle="false" textAlign="right" width="100">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="thirdSumQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="thirdNormalQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="thirdLightQ"
inputType="text" removeBorderStyle="false" textAlign="right" width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="thirdSumM"
inputType="text" removeBorderStyle="false" textAlign="right" width="100">
</w2:column>
</w2:row>
</w2:gBody>
<w2:subTotal id="subTotal1" style="" targetColumnID="typicalName">
<w2:row id="row5" style="">
<w2:column blockSelect="false" displayMode="label" id="column70" inputType="text" removeBorderStyle="false" style="background-color:#fff;border-top-style:hidden;"
width="100">
</w2:column>
<w2:column blockSelect="false" displayMode="label" id="column69" inputType="text" removeBorderStyle="false" style=""
value="소계" width="100">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('allSumQ')" id="column68" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('allNormalQ')" id="column67" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('allLightQ')" id="column66" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('allSumM')" id="column65" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="100">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstSumQ')" id="column64" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstNormalQ')" id="column63" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstLightQ')" id="column62" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('firstSumM')" id="column61" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="100">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('thirdSumQ')" id="column60" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('thirdNormalQ')" id="column59" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('thirdLightQ')" id="column58" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="70">
</w2:column>
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
expression="SUM('thirdSumM')" id="column57" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
width="100">
</w2:column>
</w2:row>
</w2:subTotal>
</w2:gridView>
</xf:group>
</body>
</html>