diff --git a/WebContent/ui/cfs/income/IC006M02.xml b/WebContent/ui/cfs/income/IC006M02.xml
index c9f9f2d..d7cd41b 100644
--- a/WebContent/ui/cfs/income/IC006M02.xml
+++ b/WebContent/ui/cfs/income/IC006M02.xml
@@ -60,11 +60,14 @@
+
+
+
@@ -123,11 +126,14 @@
+
+
+
@@ -216,9 +222,9 @@ scwin.btn_search_onclick = function(e) {
scwin.sbm_statList_submitdone = function(e) {
if (rad_kbn.getValue() == '3') {
- grd_statList2.setColumnVisible( 'inDate' , false );
+ grd_statList2.setColumnVisible( 'kbn' , false );
} else if (rad_kbn.getValue() == '2') {
- grd_statList2.setColumnVisible( 'inDate' , true );
+ grd_statList2.setColumnVisible( 'kbn' , true );
}
};
@@ -273,19 +279,22 @@ scwin.btn_excel_down_onclick = function(e) {
var options = {};
options.fileName = "혼잡 통행료 총괄 현황_"+com.getCurDtime()+".xlsx";
options.sheetName = "혼잡 통행료 총괄 현황";
- options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
- options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
+
options.useStyle = "true";
+ options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
+ options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
options.type = "1";
options.printSet = {
- fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
- , landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
- , pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
+ fitToPage : "true", //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
+ landScape : "true", //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
+ pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
};
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
- options.useStyle = "true"; //화면의 그리드 스타일을 엑셀파일로 내려받음
- options.useFooterData = "true"; //footer 값을 서식없이 그대로 올린다.
- options.type = "1";
+ options.colMerge = "true";
+
+ if(rad_kbn.getValue() == "3"){
+ options.removeColumns = ["0"];
+ }
if (rad_kbn.getValue() == "1"){
grd_statList1.advancedExcelDownload( options, info );
@@ -302,10 +311,21 @@ scwin.fmtInDate = function(data, formattedData, rowIndex, colIndex) {
rtn = data.substr(6, 2) + "일";
} else if (kbn == '2') {
rtn = data.substr(4, 2) + "월";
+ } else {
+ rtn = data.substr(0, 4) + "년";
}
return rtn;
};
+scwin.fmtFareOfficeNmAvr = function(data, formattedData, rowIndex, colIndex) {
+ // 차로명 표시 형식
+ var rtn = data;
+ if (Number(data) > 0) {
+ rtn = Number(data) + '호 일평균';
+ }
+ return rtn;
+};
+
scwin.userExpFare = function(chkColID, valColID, chkStr){
//일별
if (rad_kbn.getValue() == "1"){
@@ -433,13 +453,13 @@ scwin.userExpFare = function(chkColID, valColID, chkStr){