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.
473 lines
27 KiB
XML
473 lines
27 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="passDate" name="검색년도"></w2:key>
|
|
</w2:keyInfo>
|
|
</w2:dataMap>
|
|
<w2:dataList baseNode="list" id="overFareList" repeatNode="map" saveRemovedData="true" style="">
|
|
<w2:columnInfo>
|
|
<w2:column id="passDate" name="기간" dataType="text"></w2:column>
|
|
<w2:column id="totalCnt" name="총발생 건수" dataType="number"></w2:column>
|
|
<w2:column id="totalAmount" name="총발생 금액" dataType="number"></w2:column>
|
|
<w2:column id="repayCnt" name="환불 건수" dataType="number"></w2:column>
|
|
<w2:column id="repayAmount" name="환불 금액" dataType="number"></w2:column>
|
|
<w2:column id="taxesCnt" name="시세입 건수" dataType="number"></w2:column>
|
|
<w2:column id="taxesAmount" name="시세입 금액" dataType="number"></w2:column>
|
|
<w2:column id="nonCnt" name="미조치 건수" dataType="number"></w2:column>
|
|
<w2:column id="nonAmount" name="미조치 금액" dataType="number"></w2:column>
|
|
<w2:column id="totalCntRate" name="총발생 건수 비율" dataType="number"></w2:column>
|
|
<w2:column id="totalAmountRate" name="총발생 금액 비율" dataType="number"></w2:column>
|
|
<w2:column id="repayCntRate" name="환불 건수 비율" dataType="number"></w2:column>
|
|
<w2:column id="repayAmountRate" name="환불 금액 비율" dataType="number"></w2:column>
|
|
<w2:column id="taxesCntRate" name="시세입 건수 비율" dataType="number"></w2:column>
|
|
<w2:column id="taxesAmountRate" name="시세입 금액 비율" dataType="number"></w2:column>
|
|
<w2:column id="nonCntRate" name="미조치 건수 비율" dataType="number"></w2:column>
|
|
<w2:column id="nonAmountRate" name="미조치 금액 비율" dataType="number"></w2:column>
|
|
</w2:columnInfo>
|
|
</w2:dataList>
|
|
</w2:dataCollection>
|
|
<w2:workflowCollection></w2:workflowCollection>
|
|
<xf:submission id="sbm_overFareList" ref='data:json,{"id":"paramMap","key":"param"}' target='data:json,overFareList' action="/cfs/income/findIncomeOverFareCollectStatList.do" method="post"
|
|
mediatype="application/json" encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous"
|
|
processMsg="조회중입니다." ev:submit="" ev:submitdone="" ev:submiterror="" abortTrigger="">
|
|
</xf:submission>
|
|
</xf:model>
|
|
<script type="text/javascript" lazy="false"><![CDATA[
|
|
|
|
scwin.onpageload = function() {
|
|
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
|
|
com.setCfsCommonCode( sbxOptions );
|
|
//검색년도
|
|
//spn_passDate.setValue( com.getToday("yyyy") );
|
|
};
|
|
|
|
scwin.onpageunload = function() {
|
|
|
|
};
|
|
|
|
scwin.btn_search_onclick = function(e) {
|
|
//alert("조회");
|
|
|
|
if (com.validateGroup(grp_search) === false) {
|
|
return;
|
|
} else {
|
|
com.executeSubmission(sbm_overFareList);
|
|
}
|
|
};
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
//alert("엑셀다운로드");
|
|
|
|
var info = {};
|
|
var options = {};
|
|
options.fileName = "혼잡통행료 징수 과오납 현황_"+com.getCurDtime()+".xlsx";
|
|
options.sheetName = "혼잡통행료 징수 과오납 현황";
|
|
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
|
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
|
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
|
//options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
|
options.printSet = {
|
|
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
|
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
|
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
|
};
|
|
options.autoSizeColumn = "true"; //너비자동맞춤 설정 유무 (false:미적용)
|
|
|
|
com.fncMakeExcelProvider("incomeOverService", "findIncomeOverFareCollectStatList", "cfs.income.vo.IncomeParamsVO", paramMap, grd_overFareList, options, info);
|
|
};
|
|
|
|
scwin.btn_print_onclick = function(e) {
|
|
//alert("인쇄");
|
|
|
|
var totalCnt = grd_overFareList.getTotalRow();
|
|
if (totalCnt > 0) {
|
|
alert("레포트를 인쇄합니다. ("+totalCnt+"건)");
|
|
} else {
|
|
alert("인쇄할 정보가 없습니다.");
|
|
}
|
|
};
|
|
]]></script>
|
|
</head>
|
|
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
|
<xf:group class="contentWrap" id="" style="">
|
|
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
|
<xf:group class="tbl_search" id="grp_group1" 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:60px;" tagname="col"></xf:group>
|
|
<xf:group style="width:100px;" tagname="col"></xf:group>
|
|
<xf:group style="width:70px;" tagname="col"></xf:group>
|
|
<xf:group style="width:100px;" tagname="col"></xf:group>
|
|
<xf:group style="width:70px;" tagname="col"></xf:group>
|
|
<xf:group style="width:230px;" tagname="col"></xf:group>
|
|
<xf:group tagname="col" style="width:70px;"></xf:group>
|
|
<xf:group tagname="col" style="width:9.09%;"></xf:group>
|
|
<xf:group style="width:*;" tagname="col"></xf:group>
|
|
</xf:group>
|
|
<xf:group adaptive="" adaptiveThreshold="" style="" tagname="tr">
|
|
<xf:group class="w2tb_th" style="" tagname="th">요금소</xf:group>
|
|
<xf:group class="w2tb_td" style="" tagname="td">
|
|
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
|
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_fareOfficeId" ref="data:paramMap.fareOfficeId"
|
|
style="width: 120px;" submenuSize="auto">
|
|
</xf:select1>
|
|
</xf:group>
|
|
<xf:group class="w2tb_th" style="" tagname="th">부과&nbsp;월</xf:group>
|
|
<xf:group class="w2tb_td" style="" tagname="td">
|
|
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
|
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="boothId" ref="data:paramMap.boothId"
|
|
style="width: 90px;" submenuSize="auto" visibleRowNum="11">
|
|
<xf:choices></xf:choices>
|
|
</xf:select1>
|
|
</xf:group>
|
|
<xf:group class="w2tb_th" style="" tagname="th">보고&nbsp;월</xf:group>
|
|
<xf:group class="w2tb_td" style="" tagname="td">
|
|
<xf:select1 allOption="" appearance="minimal" chooseOption="true" chooseOptionLabel="-전체-" direction="auto"
|
|
disabled="false" disabledClass="w2selectbox_disabled" displayMode="label" id="sbx_boothId" ref="data:paramMap.boothId"
|
|
style="width: 90px;" submenuSize="auto" visibleRowNum="11">
|
|
<xf:choices></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">
|
|
</w2:inputCalendar>
|
|
<w2:span id="spa_span1" label="~" style=""></w2:span>
|
|
<w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" focusOnDateSelect="false"
|
|
footerDiv="false" id="ica_passEdDate" ref="data:paramMap.passEdDate" renderDiv="true" renderType="component" style=""
|
|
weekStartsOn="0">
|
|
</w2:inputCalendar>
|
|
</xf:group>
|
|
<xf:group tagname="th" class="w2tb_th">
|
|
비고
|
|
<w2:attributes></w2:attributes>
|
|
</xf:group>
|
|
<xf:group tagname="td" class="w2tb_td">
|
|
<w2:attributes></w2:attributes>
|
|
<xf:input adjustMaxLength="false" id="ibx_input1" ref="data:reqCode.selCarNum" style=""></xf:input>
|
|
</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_trigger1" style="" type="button">
|
|
<xf:label><![CDATA[조회]]></xf:label>
|
|
</xf:trigger>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
<xf:group class="defaultbox" id="" style="">
|
|
<w2:textbox class="df_tt" id="" label="국정감사용 자료 조회 및 출력" style="" tagname="h2"></w2:textbox>
|
|
<xf:group class="fr" id="" style="">
|
|
|
|
|
|
<xf:trigger class="btn_act print" ev:onclick="scwin.btn_print_onclick" id="btn_print" style="" type="button">
|
|
<xf:label><![CDATA[인쇄]]></xf:label>
|
|
</xf:trigger>
|
|
<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="lastColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:overFareList"
|
|
evenRowBackgroundColor="#fff" fixedColumnWithHidden="true" focusMode="row" id="grd_gridView1" ignoreCellClick="false"
|
|
ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false" scrollByColumnAdaptive="false" style="height:156px;"
|
|
summaryAuto="false" 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="row3" style="">
|
|
<w2:column blockSelect="false" displayMode="label" id="column30" inputType="text" removeBorderStyle="false"
|
|
rowSpan="3" value="구분" width="50" colSpan="3" style="height:26px;">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" colSpan="6" displayMode="label" id="column29" inputType="text"
|
|
removeBorderStyle="false" value="징수결정액" width="100" style="height:26px;" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:26px;" id="column131" value="수납액"
|
|
blockSelect="false" displayMode="label" colSpan="6" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:26px;" id="column116" value="시효결손"
|
|
blockSelect="false" displayMode="label" colSpan="6" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:56px;" id="column98" value="미 수납액"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="2">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:82px;" id="column189" value="징수율"
|
|
blockSelect="false" displayMode="label" colSpan="" rowSpan="3">
|
|
</w2:column>
|
|
</w2:row>
|
|
<w2:row style="" id="row8">
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column152" value="전원계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column150" value="금 월"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column148" value="누 계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column146" value="전월계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column145" value="금월"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column143" value="누계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column141" value="전월계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="height:30px;" id="column139" value="금월"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:30px;" id="column137" value="누계"
|
|
blockSelect="false" displayMode="label" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
</w2:row>
|
|
<w2:row style="" id="row9">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column172" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column171" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column170" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column169" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column168" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column167" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column166" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column176" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column165" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column164" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column163" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column162" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column161" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column160" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column159" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column158" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column157" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column156" value="금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column155" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column154" 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" displayFormat="####년" displayMode="label" id="passDate" inputType="text"
|
|
removeBorderStyle="false" width="30" style="" value="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="50" inputType="text" style="" id="column187" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="50" inputType="text" style="" id="column182" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="totalCnt"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="70" style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="totalAmount"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="100" style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="repayCnt"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="70" style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="repayAmount"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="100" style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="taxesCnt"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="70" style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="taxesAmount"
|
|
inputType="text" removeBorderStyle="false" textAlign="right" width="100" style="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column132" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column177" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column129" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column126" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column123" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column120" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column117" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column114" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column111" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column108" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column105" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column102" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column99" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column96" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column192" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
<w2:footer id="footer1" style="">
|
|
<w2:row id="row7" style="">
|
|
<w2:column blockSelect="false" displayMode="label" id="column70" inputType="text" removeBorderStyle="false" value=""
|
|
width="30" style="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="50" inputType="text" style="" id="column188" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="50" inputType="text" style="" id="column183" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('totalCnt')" id="column69" inputType="expression" removeBorderStyle="false" textAlign="right" width="70"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('totalAmount')" id="column68" inputType="expression" removeBorderStyle="false" textAlign="right" width="100"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('repayCnt')" id="column67" inputType="expression" removeBorderStyle="false" textAlign="right" width="70"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('repayAmount')" id="column66" inputType="expression" removeBorderStyle="false" textAlign="right" width="100"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('taxesCnt')" id="column65" inputType="expression" removeBorderStyle="false" textAlign="right" width="70"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('taxesAmount')" id="column64" inputType="expression" removeBorderStyle="false" textAlign="right" width="100"
|
|
style="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column133" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column178" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column130" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column127" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column124" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column121" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column118" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column115" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column112" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column109" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column106" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column103" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column100" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column97" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column193" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:footer>
|
|
</w2:gridView>
|
|
</xf:group>
|
|
|
|
</body>
|
|
</html>
|