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.
539 lines
28 KiB
XML
539 lines
28 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:dataList baseNode="list" repeatNode="map" id="resCode" saveRemovedData="true">
|
|
<w2:columnInfo>
|
|
<w2:column id="year" name="년" dataType="text"></w2:column>
|
|
<w2:column id="mon" name="월" dataType="text"></w2:column>
|
|
<w2:column id="division" name="구분" dataType="text"></w2:column>
|
|
<w2:column id="notifiCnt" name="고지건수" dataType="number"></w2:column>
|
|
<w2:column id="notifiPri" name="고지금액" dataType="number"></w2:column>
|
|
<w2:column id="paymentCnt" name="납부건수" dataType="number"></w2:column>
|
|
<w2:column id="paymentPri" name="납부금액" dataType="number"></w2:column>
|
|
<w2:column id="paymentRate" name="납부율" dataType="number"></w2:column>
|
|
<w2:column id="nonpayCnt" name="미납건수" dataType="number"></w2:column>
|
|
<w2:column id="nonpayPri" name="미납금액" dataType="number"></w2:column>
|
|
<w2:column id="cancelCnt" name="취소건수" dataType="number"></w2:column>
|
|
<w2:column id="cancelPri" name="취소금액" dataType="number"></w2:column>
|
|
<w2:column id="defectCnt" name="결손건수" dataType="number"></w2:column>
|
|
<w2:column id="defectPri" name="결손금액" dataType="number"></w2:column>
|
|
|
|
</w2:columnInfo>
|
|
<w2:data></w2:data>
|
|
</w2:dataList>
|
|
<w2:dataMap baseNode="list" repeatNode="map" id="reqCode" saveRemovedData="true">
|
|
<w2:keyInfo>
|
|
<w2:key id="fareOfficeId" name="요금소" dataType="text"></w2:key>
|
|
<w2:key id="dtType" name="날짜형태" dataType="text"></w2:key>
|
|
<w2:key id="motionId" 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:dataCollection>
|
|
<xf:submission id="sub_search"
|
|
ref='data:json,{"id":"reqCode","key":"param"}'
|
|
target='data:json,{"id":"resCode","key":"result"}'
|
|
action="/cfs/fine/findFinePmList.do"
|
|
method="post" mediatype="application/json" encoding="UTF-8" mode="asynchronous"
|
|
ev:submitdone="scwin.sub_search_submitdone" instance="" replace="" errorHandler="" customHandler=""
|
|
processMsg="조회중입니다" ev:submit=""
|
|
ev:submiterror="" abortTrigger="">
|
|
</xf:submission>
|
|
</xf:model>
|
|
<script type="text/javascript" lazy="false"><![CDATA[
|
|
/**
|
|
* 화면 내 전역 변수 선언
|
|
*/
|
|
scwin.idxRowAuthority = 0;
|
|
|
|
/**
|
|
* 초기 스크립트 수행 함수 정의
|
|
*/
|
|
scwin.onpageload = function() {
|
|
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 );
|
|
|
|
var result;
|
|
var dttype;
|
|
result = 'yearMonth';
|
|
dttype = "yyyyMM";
|
|
ica_inStDate.setCalendarValueType( result);
|
|
ica_inEdDate.setCalendarValueType( result);
|
|
ica_inStDate.setValue( com.getToday( dttype ) );
|
|
ica_inEdDate.setValue( com.getToday( dttype ) );
|
|
grd_gridView1.setFooterValue( "column85" , 0 );
|
|
};
|
|
|
|
scwin.onpageunload = function() {
|
|
|
|
};
|
|
|
|
scwin.btn_search_onclick = function(e) {
|
|
if(ica_inEdDate.getValue() < ica_inStDate.getValue()){
|
|
com.alert("시작 일자가 종료 일자보다 큽니다. 날짜 형식을 확인해 주세요.");
|
|
return;
|
|
}
|
|
$p.executeSubmission( "sub_search" );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* 라디오 버튼에 따라 inputCalender에 format을 변경시킨다
|
|
*/
|
|
scwin.rad_radio1_onchange = function() {
|
|
var radioValue = this.getValue();
|
|
console.log(radioValue);
|
|
var result;
|
|
var dttype;
|
|
if(radioValue == '01'){
|
|
result = 'yearMonth';
|
|
dttype = "yyyyMM";
|
|
}else if(radioValue == '02'){
|
|
result = 'year';
|
|
dttype = "yyyy";
|
|
|
|
}
|
|
ica_inStDate.setCalendarValueType( result);
|
|
ica_inEdDate.setCalendarValueType( result);
|
|
ica_inStDate.setValue( com.getToday( dttype ) );
|
|
ica_inEdDate.setValue( com.getToday( dttype ) );
|
|
};
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
if (resCode.getRowCount() == 0) {
|
|
com.alert("엑셀다운로드할 정보가 없습니다.");
|
|
return;
|
|
}
|
|
var info = {};
|
|
var options = {};
|
|
options.fileName = "부과고지및 납부실적_"+com.getCurDtime()+".xlsx";
|
|
options.sheetName = "부과고지및 납부실적";
|
|
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
|
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
|
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
|
options.useStyle = "true";
|
|
options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
|
options.type = "1";
|
|
options.removeColumns = "0";
|
|
options.printSet = {
|
|
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
|
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
|
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
|
};
|
|
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
|
|
|
grd_gridView1.advancedExcelDownload( options , info );
|
|
};
|
|
|
|
scwin.sub_search_submitdone = function(e) {
|
|
var notiCnt = grd_gridView1.getFooterData( "column89" , false );
|
|
var payCnt = grd_gridView1.getFooterData( "column87" , false );
|
|
if(notiCnt == 0 || payCnt == 0){
|
|
return false;
|
|
} else if(payCnt == 0){
|
|
grd_gridView1.setFooterValue( "column85" , 0 );
|
|
return false;
|
|
}
|
|
var result =payCnt/notiCnt*100;
|
|
grd_gridView1.setFooterValue( "column85" , result );
|
|
};
|
|
|
|
scwin.btn_prt_onclick = function(e) {
|
|
|
|
var form_tag = document.getElementById("FN053M01");
|
|
|
|
form_tag.fareOfficeId.value = reqCode.get("fareOfficeId");
|
|
form_tag.motionId.value = reqCode.get("motionId");
|
|
form_tag.inStDate.value = reqCode.get("inStDate");
|
|
form_tag.inEdDate.value = reqCode.get("inEdDate");
|
|
|
|
form_tag.crfName.value = "FN053M01";
|
|
|
|
var url = "/ClipReport4/reportView.jsp";
|
|
|
|
form_tag.action=url;
|
|
form_tag.method ="post";
|
|
form_tag.target="clipform";
|
|
form_tag.submit();
|
|
|
|
};
|
|
|
|
]]></script>
|
|
</head>
|
|
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
|
<xf:group class="contentWrap" id="" style="">
|
|
<form id="FN053M01" method="post" action ="/ClipReport4/reportView.jsp">
|
|
<input type ="hidden" name="crfName"></input>
|
|
<input type ="hidden" name="fareOfficeId"></input>
|
|
<input type ="hidden" name="motionId"></input>
|
|
<input type ="hidden" name="inStDate"></input>
|
|
<input type ="hidden" name="inEdDate"></input>
|
|
</form>
|
|
<form id="clipform" method="post" action ="/ClipReport4/test.jsp">
|
|
<input type ="hidden" value="IC012M01" name="crfName"></input>
|
|
<input type ="hidden" name="inStDate"></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:70.00px;" tagname="col"></xf:group>
|
|
<xf:group style="width:150.00px;" tagname="col"></xf:group>
|
|
<xf:group tagname="col" style="width:70.00px;"></xf:group>
|
|
<xf:group tagname="col" style="width:150.00px;"></xf:group>
|
|
<xf:group style="width:70.00px;" tagname="col"></xf:group>
|
|
<xf:group tagname="col" style="width:230.00px;"></xf:group>
|
|
<xf:group tagname="col" style="width:*;"></xf:group>
|
|
</xf:group>
|
|
<xf:group tagname="tr" style="">
|
|
<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" direction="auto" disabled="false"
|
|
disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_fareOfficeId" ref="data:reqCode.fareOfficeId" style="width:120px;"
|
|
submenuSize="auto" chooseOptionLabel="" mandatory="true">
|
|
<xf:choices></xf:choices>
|
|
</xf:select1>
|
|
</xf:group>
|
|
<xf:group tagname="th" class="w2tb_th">고지구분<w2:attributes></w2:attributes></xf:group>
|
|
<xf:group tagname="td" class="w2tb_td" style=""><w2:attributes></w2:attributes>
|
|
<xf:select1 allOption="true" appearance="minimal" chooseOption="" direction="auto" disabled="false"
|
|
disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_selectbox6" ref="data:reqCode.motionId" style="width: 120px;"
|
|
submenuSize="auto">
|
|
<xf:choices>
|
|
<xf:item>
|
|
<xf:label><![CDATA[사전통지]]></xf:label>
|
|
<xf:value><![CDATA[2]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[1차고지]]></xf:label>
|
|
<xf:value><![CDATA[3]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[2차고지]]></xf:label>
|
|
<xf:value><![CDATA[4]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[압류촉탁]]></xf:label>
|
|
<xf:value><![CDATA[7]]></xf:value>
|
|
</xf:item>
|
|
</xf:choices>
|
|
</xf:select1>
|
|
</xf:group>
|
|
<xf:group class="w2tb_th" style="" tagname="th">
|
|
통행일자
|
|
<w2:attributes>
|
|
<w2:colspan>1</w2:colspan>
|
|
<w2:rowspan>1</w2:rowspan>
|
|
</w2:attributes>
|
|
</xf:group>
|
|
<xf:group tagname="td" class="w2tb_td">
|
|
<w2:attributes>
|
|
<w2:scope>row</w2:scope>
|
|
</w2:attributes>
|
|
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" displayFormat=""
|
|
focusOnDateSelect="false" footerDiv="false" id="ica_inStDate" ref="data:reqCode.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="" displayFormat=""
|
|
focusOnDateSelect="false" footerDiv="false" id="ica_inEdDate" ref="data:reqCode.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 style="" id="grp_group1" class="fr">
|
|
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" 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 class="fr" id="" style="">
|
|
<xf:trigger class="btn_act exceldown" id="btn_excel_down" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
|
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
|
</xf:trigger>
|
|
</xf:group>
|
|
<w2:textbox class="df_tt" id="" label="부과고지및 납부실적" tagname="h2"></w2:textbox>
|
|
</xf:group>
|
|
<table id="tbl_table3"></table>
|
|
<xf:group class="" id="grp_group12" >
|
|
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" dataList="data:resCode" defaultCellHeight="" dynamic="true"
|
|
fixedColumnWithHidden="true" footerCaption="" footerCaptionAuto="" footerSummary="" id="grd_gridView1" scrollByColumn="false"
|
|
scrollByColumnAdaptive="false" style="height: 171px;" readOnly="" class="cm_grid" focusMode="row" ignoreCellClick="false"
|
|
ignoreToggleOnDisabled="false" summaryAuto="" useShiftKey="true" visibleRowNum="all">
|
|
<w2:caption id="caption1" style="" value="this is a grid caption."></w2:caption>
|
|
<w2:header id="header1" style="">
|
|
<w2:row id="row1" style="">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column92" value=""
|
|
blockSelect="false" displayMode="label" hidden="true">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column15" inputType="text" removeBorderStyle="false"
|
|
style="background-color:;" value="년 / 월" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column13" inputType="text" removeBorderStyle="false"
|
|
style="" value="구분" width="90">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column11" inputType="text" removeBorderStyle="false"
|
|
style="" value="고지건수" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column35" inputType="text" removeBorderStyle="false"
|
|
style="" value="고지금액" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column9" inputType="text" removeBorderStyle="false"
|
|
style="" value="납부건수" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column41" inputType="text" removeBorderStyle="false"
|
|
style="" value="납부금액" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column7" inputType="text" removeBorderStyle="false"
|
|
style="" value="납부율" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column5" inputType="text" removeBorderStyle="false"
|
|
style="" value="미납건수" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column44" inputType="text" removeBorderStyle="false"
|
|
style="" value="미납금액" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column3" inputType="text" removeBorderStyle="false"
|
|
style="" value="고지취소" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column47" inputType="text" removeBorderStyle="false"
|
|
style="" value="고지취소금액" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column1" inputType="text" removeBorderStyle="false"
|
|
style="" value="결손건수" width="70">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column50" inputType="text" removeBorderStyle="false"
|
|
style="" value="결손금액" width="100">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:header>
|
|
<w2:gBody id="gBody1" style="">
|
|
<w2:row id="row2" style="">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="year" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="mon" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="70" readOnly="true" colMerge="true">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="division" inputType="text" removeBorderStyle="false"
|
|
style="" value="" width="90" readOnly="true">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="notifiCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="notifiPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="paymentCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="paymentPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" expression="" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#0.##" displayMode="label" id="paymentRate" inputType="expression"
|
|
removeBorderStyle="false" style="" value="" width="70"
|
|
expression="SUM('notifiCnt') == 0 ? 0 : SUM('paymentCnt')/SUM('notifiCnt')*100" displayFormatter="" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="nonpayCnt" inputType="expression"
|
|
removeBorderStyle="false" style="" value="" width="70" expression="SUM('notifiCnt')-SUM('paymentCnt')" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="nonpayPri" inputType="expression"
|
|
removeBorderStyle="false" style="" value="" width="100" expression="SUM('notifiPri')-SUM('paymentPri')" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="cancelCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="cancelPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="defectCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="defectPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
<w2:subTotal id="subTotal1" style="" targetColumnID="mon" subtotalClass="bg_red" columnClass="bg_red">
|
|
<w2:row id="row3" style="">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column94" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column31" inputType="expression"
|
|
removeBorderStyle="false" style="" value="계" width="70" expression="targetColValue()">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column30" inputType="text" removeBorderStyle="false"
|
|
style="" value="" width="90">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('notifiCnt')"
|
|
id="column29" inputType="expression" removeBorderStyle="false" style="" value="" width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('notifiPri')"
|
|
id="column37" inputType="expression" removeBorderStyle="false" style="" value="" width="100" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('paymentCnt')"
|
|
id="column28" inputType="expression" removeBorderStyle="false" style="" value="" width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('paymentPri')"
|
|
id="column43" inputType="expression" removeBorderStyle="false" style="" value="" width="100" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#0.##" displayFormatter="" displayMode="label"
|
|
expression="SUM('paymentCnt')/SUM('notifiCnt')*100" id="column27" inputType="expression" removeBorderStyle="false" style="" value=""
|
|
width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('nonpayCnt')-SUM('cancelCnt')" id="column26" inputType="expression" removeBorderStyle="false" style="" value=""
|
|
width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('nonpayPri')-SUM('cancelPri')" id="column46" inputType="expression" removeBorderStyle="false" style="" value=""
|
|
width="100" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('cancelCnt')"
|
|
id="column25" inputType="expression" removeBorderStyle="false" style="" value="" width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('cancelPri')"
|
|
id="column49" inputType="expression" removeBorderStyle="false" style="" value="" width="100" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('defectCnt')"
|
|
id="column24" inputType="expression" removeBorderStyle="false" style="" value="" width="70" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" expression="SUM('defectPri')"
|
|
id="column52" inputType="expression" removeBorderStyle="false" style="" value="" width="100" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:subTotal>
|
|
<w2:subTotal targetColumnID="year" style="" id="subTotal2">
|
|
<w2:row style="" id="row5">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column95" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column78" value=""
|
|
blockSelect="false" displayMode="label" expression="targetColValue()">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="90" inputType="text" style="" id="column77" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column76" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiCnt')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column75" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiPri')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column74" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentCnt')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column73" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentPri')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="totAVG" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentCnt')/SUM('notifiCnt')*100" displayFormat="#0.##" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column71" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayCnt')-SUM('cancelCnt')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column70" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayPri')-SUM('cancelPri')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column69" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('cancelCnt')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column68" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('cancelPri')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column67" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('defectCnt')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column66" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('defectPri')" displayFormat="#,##0" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:subTotal>
|
|
<w2:footer style="" id="footer1">
|
|
<w2:row style="" id="row6">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column96" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column91" value="계"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="90" inputType="text" style="" id="column90" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column89" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiCnt')" textAlign="right" displayFormat="#,##0" defaultValue=""
|
|
depthType="" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column88" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column87" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentCnt')" textAlign="right" displayFormat="#,##0" defaultValue=""
|
|
depthType="" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column86" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column85" value=""
|
|
blockSelect="false" displayMode="label" expression="" textAlign="right" displayFormat="#0.##" dataType="number" defaultValue=""
|
|
depthType="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column84" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayCnt')-SUM('cancelCnt')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column83" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayPri')-SUM('cancelPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column82" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('cancelCnt')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column81" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('cancelPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column80" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('defectCnt')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column79" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('defectPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:footer>
|
|
</w2:gridView>
|
|
</xf:group>
|
|
<w2:span label="※ 미납건수 = 고지건수 - 납부건수" style="color:#804040;" id="spa_span12"></w2:span>
|
|
</xf:group>
|
|
</body>
|
|
</html> |