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.
490 lines
27 KiB
XML
490 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="kbn" name="구분"></w2:key>
|
|
<w2:key dataType="date" id="passStDate" name="통행일자(시작)"></w2:key>
|
|
<w2:key id="passEdDate" name="통행일자(종료)" dataType="date"></w2:key>
|
|
</w2:keyInfo>
|
|
</w2:dataMap>
|
|
<w2:dataList baseNode="list" repeatNode="map" id="fixList" saveRemovedData="true">
|
|
<w2:columnInfo>
|
|
<w2:column id="kbn" name="구분" dataType="text"></w2:column>
|
|
<w2:column id="passDate" name="통행일자" dataType="date"></w2:column>
|
|
<w2:column id="workTimes" name="통행시간" dataType="time"></w2:column>
|
|
<w2:column id="personName" name="성명" dataType="text"></w2:column>
|
|
<w2:column id="typicalName" name="카드사명" dataType="text"></w2:column>
|
|
<w2:column id="fixAmountSaleQ" name="판매권수" dataType="text"></w2:column>
|
|
<w2:column id="fixAmountSaleM" name="판매금액" dataType="text"></w2:column>
|
|
<w2:column id="processDate" name="공단입금일자" dataType="date"></w2:column>
|
|
<w2:column id="cityTaxesDate" name="시세입조치일자" dataType="date"></w2:column>
|
|
<w2:column id="remarks" name="비고" dataType="text"></w2:column>
|
|
<w2:column id="workerId" name="작업자ID" dataType="text"></w2:column>
|
|
<w2:column id="fareOfficeId" name="요금소ID" dataType="text"></w2:column>
|
|
<w2:column id="boothId" name="차로ID" dataType="text"></w2:column>
|
|
<w2:column id="year" name="년" dataType="text"></w2:column>
|
|
<w2:column id="month" name="월" dataType="text"></w2:column>
|
|
<w2:column id="day" name="일" dataType="text"></w2:column>
|
|
<w2:column id="seqno" name="일련번호" dataType="text"></w2:column>
|
|
</w2:columnInfo>
|
|
</w2:dataList>
|
|
</w2:dataCollection>
|
|
<w2:workflowCollection></w2:workflowCollection>
|
|
<xf:submission id="sbm_fixList" ref='data:json,{"id":"paramMap","key":"param"}' target="data:json,fixList"
|
|
action="/cfs/income/findIncomeFixCardSaleStatList.do" method="post" mediatype="application/json" encoding="UTF-8"
|
|
instance="" replace="" errorHandler="" customHandler="" mode="asynchronous" processMsg="조회중입니다." ev:submit="" ev:submitdone="scwin.sbm_fixList_submitdone"
|
|
ev:submiterror="" abortTrigger="">
|
|
</xf:submission>
|
|
</xf:model>
|
|
<script type="text/javascript" lazy="false"><![CDATA[
|
|
|
|
scwin.onpageload = function() {
|
|
grd_fixList2.hide();
|
|
|
|
//통행일자
|
|
var ymd = com.getToday();
|
|
ica_passStDate.setValue( ymd );
|
|
ica_passEdDate.setValue( ymd );
|
|
};
|
|
|
|
scwin.onpageunload = function() {
|
|
|
|
};
|
|
|
|
scwin.btn_search_onclick = function(e) {
|
|
//alert("조회");
|
|
|
|
if (com.validateGroup(grp_search) === false) {
|
|
return;
|
|
} else {
|
|
com.executeSubmission(sbm_fixList);
|
|
}
|
|
};
|
|
|
|
scwin.sbm_fixList_submitdone = function(e) {
|
|
//alert("조회 완료");
|
|
var kbn = rad_kbn.getValue();
|
|
if (kbn == '1') {
|
|
grd_fixList.show();
|
|
grd_fixList2.hide();
|
|
} else if (kbn == '2') {
|
|
grd_fixList.hide();
|
|
grd_fixList2.show();
|
|
}
|
|
};
|
|
|
|
scwin.btn_print_onclick = function(e) {
|
|
//alert("인쇄");
|
|
|
|
var totalCnt = grd_fixList.getTotalRow();
|
|
if (totalCnt > 0) {
|
|
alert("레포트를 인쇄합니다. ("+totalCnt+"건)");
|
|
|
|
var form_tag = document.getElementById("IC031M01");
|
|
|
|
form_tag.kbn.value = paramMap.get("kbn");
|
|
form_tag.passStDate.value = paramMap.get("passStDate");
|
|
form_tag.passEdDate.value = paramMap.get("passEdDate");
|
|
|
|
form_tag.crfName.value = "IC031M01";
|
|
|
|
var url = "/ClipReport4/reportView.jsp";
|
|
|
|
form_tag.action=url;
|
|
form_tag.method ="post";
|
|
form_tag.target="clipform";
|
|
form_tag.submit();
|
|
|
|
} else {
|
|
alert("인쇄할 정보가 없습니다.");
|
|
}
|
|
};
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
//alert("엑셀다운로드");
|
|
|
|
var kbn = rad_kbn.getValue();
|
|
var trgt_fixList;
|
|
if (kbn == '1') {
|
|
trgt_fixList = grd_fixList;
|
|
} else if (kbn == '2') {
|
|
trgt_fixList = grd_fixList2;
|
|
}
|
|
|
|
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";
|
|
|
|
com.fncMakeExcelProvider("incomeFixService", "findIncomeFixCardSaleStatList", "cfs.income.vo.IncomeParamsVO", paramMap, trgt_fixList, options, info);
|
|
};
|
|
]]></script>
|
|
</head>
|
|
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
|
<xf:group class="contentWrap" id="" style="">
|
|
<form id="IC031M01" method="post" action ="/ClipReport4/reportView.jsp">
|
|
<input type ="hidden" name="crfName"></input>
|
|
<input type ="hidden" name="kbn"></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:200px;" 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 appearance="full" cols="" ev:onchange="scwin.rad_kbn_onchange" id="rad_kbn" ref="data:paramMap.kbn"
|
|
renderType="table" rows="1" selectedIndex="0" style="margin-right:10px;">
|
|
<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" 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" 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 print" id="btn_print" style="" type="button" ev:onclick="scwin.btn_print_onclick">
|
|
<xf:label><![CDATA[인쇄]]></xf:label>
|
|
</xf:trigger>
|
|
<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:fixList" fixedColumnWithHidden="true"
|
|
focusMode="row" id="grd_fixList" ignoreCellClick="false" ignoreToggleOnDisabled="false" scrollByColumn="false"
|
|
scrollByColumnAdaptive="false" style="height: 100px;" summaryAuto="false" useShiftKey="true" visibleRowNum="all" readOnly="true"
|
|
ev:oncelldblclick="scwin.grd_statList_oncelldblclick">
|
|
<w2:caption style="" id="caption1" value="this is a grid caption."></w2:caption>
|
|
<w2:header style="" id="header1">
|
|
<w2:row style="" id="row1">
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column25" value="통행일자"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column16" value="카드사명"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column22" value="통행시간"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column19" value="성명"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column13" value="판매권수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column10" value="판매금액"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column7" value="공단입금일자"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column4" value="시세입조치일자"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="column1" 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" style="" id="passDate" value=""
|
|
blockSelect="false" displayMode="label" dataType="date" displayFormatter="com.fmtDateDtime" colMerge="true">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="typicalName" value=""
|
|
blockSelect="false" displayMode="label" colMerge="true">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="workTimes" value=""
|
|
blockSelect="false" displayMode="label" dataType="time" displayFormatter="com.fmtDtime">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="personName" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="fixAmountSaleQ" value=""
|
|
blockSelect="false" displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="fixAmountSaleM" value=""
|
|
blockSelect="false" displayMode="label" textAlign="right" dataType="number" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="processDate" value=""
|
|
blockSelect="false" displayMode="label" dataType="date" displayFormatter="com.fmtDateDtime">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="cityTaxesDate" value=""
|
|
blockSelect="false" displayMode="label" dataType="date" displayFormatter="com.fmtDateDtime">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="remarks" value="" blockSelect="false"
|
|
displayMode="label" class="" textAlign="left">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
<w2:subTotal targetColumnID="passDate" style="" id="subTotal1">
|
|
<w2:row style="" id="row4">
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column36" value="소계"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column35" value=""
|
|
blockSelect="false" displayMode="label" expression="COUNT('passDate')">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column34" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column33" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column32" value=""
|
|
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" expression="SUM('fixAmountSaleQ')"
|
|
textAlign="right">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column31" value=""
|
|
blockSelect="false" displayMode="label" dataType="number" displayFormat="#,##0" expression="SUM('fixAmountSaleM')"
|
|
textAlign="right">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column30" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column29" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="column28" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:subTotal>
|
|
<w2:footer style="" id="footer1">
|
|
<w2:row style="" id="row3">
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column27" value="총계"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column18" value=""
|
|
blockSelect="false" displayMode="label" expression="COUNT('passDate')" displayFormat="#,##0" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column24" value=""
|
|
blockSelect="false" displayMode="label" dataType="" expression="" displayFormat="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column21" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column15" value=""
|
|
blockSelect="false" displayMode="label" dataType="number" expression="SUM('fixAmountSaleQ')" textAlign="right"
|
|
displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column12" value=""
|
|
blockSelect="false" displayMode="label" dataType="number" expression="SUM('fixAmountSaleM')" textAlign="right"
|
|
displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column9" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column6" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="200" inputType="text" style="" id="column3" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:footer>
|
|
</w2:gridView>
|
|
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" class="cm_grid" dataList="data:fixList"
|
|
ev:oncelldblclick="scwin.grd_statList_oncelldblclick" fixedColumnWithHidden="true" focusMode="row" id="grd_fixList2"
|
|
ignoreCellClick="false" ignoreToggleOnDisabled="false" readOnly="true" scrollByColumn="false" scrollByColumnAdaptive="false"
|
|
style="height: 100px;margin-top: 0px !important;" 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="row1" style="">
|
|
<w2:column blockSelect="false" displayMode="label" id="column25" inputType="text" removeBorderStyle="false" style=""
|
|
value="카드사명" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column16" inputType="text" removeBorderStyle="false" style=""
|
|
value="통행일자" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column22" inputType="text" removeBorderStyle="false" style=""
|
|
value="통행시간" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column19" inputType="text" removeBorderStyle="false" style=""
|
|
value="성명" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column13" inputType="text" removeBorderStyle="false" style=""
|
|
value="판매권수" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column10" 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="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column4" 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="200">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:header>
|
|
<w2:gBody id="gBody1" style="">
|
|
<w2:row id="row2" style="">
|
|
<w2:column blockSelect="false" colMerge="true" dataType="date" displayFormatter=""
|
|
displayMode="label" id="typicalName" inputType="text" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" colMerge="true" displayMode="label" id="passDate" inputType="text"
|
|
removeBorderStyle="false" style="" value="" width="100" displayFormatter="com.fmtDateDtime">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="time" displayFormatter="com.fmtDtime" displayMode="label" id="workTimes"
|
|
inputType="text" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="personName" inputType="text" removeBorderStyle="false"
|
|
style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="fixAmountSaleQ"
|
|
inputType="text" removeBorderStyle="false" style="" textAlign="right" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label" id="fixAmountSaleM"
|
|
inputType="text" removeBorderStyle="false" style="" textAlign="right" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="date" displayFormatter="com.fmtDateDtime" displayMode="label"
|
|
id="processDate" inputType="text" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="date" displayFormatter="com.fmtDateDtime" displayMode="label"
|
|
id="cityTaxesDate" inputType="text" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" class="" displayMode="label" id="remarks" inputType="text" removeBorderStyle="false"
|
|
style="" textAlign="left" value="" width="200">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
<w2:subTotal id="subTotal1" style="" targetColumnID="typicalName">
|
|
<w2:row id="row4" style="">
|
|
<w2:column blockSelect="false" displayMode="label" id="column36" inputType="text" removeBorderStyle="false" style=""
|
|
value="소계" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" expression="COUNT('typicalName')" id="column35"
|
|
inputType="expression" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column34" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column33" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('fixAmountSaleQ')" id="column32" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('fixAmountSaleM')" id="column31" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column30" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column29" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column28" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="200">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:subTotal>
|
|
<w2:footer id="footer1" style="">
|
|
<w2:row id="row3" style="">
|
|
<w2:column blockSelect="false" displayMode="label" id="column27" inputType="text" removeBorderStyle="false" style=""
|
|
value="총계" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="COUNT('typicalName')" id="column18" inputType="expression" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="" displayFormat="" displayMode="label" expression="" id="column24"
|
|
inputType="text" removeBorderStyle="false" style="" value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column21" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('fixAmountSaleQ')" id="column15" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" dataType="number" displayFormat="#,##0" displayMode="label"
|
|
expression="SUM('fixAmountSaleM')" id="column12" inputType="expression" removeBorderStyle="false" style="" textAlign="right"
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column9" inputType="text" removeBorderStyle="false" style=""
|
|
value="" width="100">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column6" 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="200">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:footer>
|
|
</w2:gridView>
|
|
</xf:group>
|
|
</body>
|
|
</html>
|