|
|
@@ -826,54 +826,51 @@ namespace CallCenter.Utility
|
|
826
|
826
|
ICell cell1 = irow1.CreateCell(0);
|
|
827
|
827
|
cell1.SetCellValue(Name);
|
|
828
|
828
|
cell1.CellStyle = cellStylebt;
|
|
829
|
|
- sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, 30));
|
|
|
829
|
+ sheet.AddMergedRegion(new CellRangeAddress(0, 0, 0, 16));
|
|
830
|
830
|
|
|
831
|
831
|
IRow irow2 = sheet.CreateRow(1);
|
|
832
|
|
- ICell cell2 = irow2.CreateCell(2);
|
|
833
|
|
- cell2.SetCellValue("热线诉求件");
|
|
834
|
|
- cell2.CellStyle = cellStylebt;
|
|
835
|
|
- sheet.AddMergedRegion(new CellRangeAddress(1, 1, 2, 16));
|
|
|
832
|
+ //ICell cell2 = irow2.CreateCell(2);
|
|
|
833
|
+ //cell2.SetCellValue("热线诉求件");
|
|
|
834
|
+ //cell2.CellStyle = cellStylebt;
|
|
|
835
|
+ //sheet.AddMergedRegion(new CellRangeAddress(1, 1, 2, 16));
|
|
836
|
836
|
|
|
837
|
|
- ICell cell3 = irow2.CreateCell(17);
|
|
838
|
|
- cell3.SetCellValue("网民诉求件");
|
|
839
|
|
- cell3.CellStyle = cellStylebt;
|
|
840
|
|
- sheet.AddMergedRegion(new CellRangeAddress(1, 1, 17, 30));
|
|
841
|
|
- IRow irow4 = sheet.CreateRow(2);
|
|
|
837
|
+ //ICell cell3 = irow2.CreateCell(17);
|
|
|
838
|
+ //cell3.SetCellValue("网民诉求件");
|
|
|
839
|
+ //cell3.CellStyle = cellStylebt;
|
|
|
840
|
+ //sheet.AddMergedRegion(new CellRangeAddress(1, 1, 17, 30));
|
|
|
841
|
+ // IRow irow4 = sheet.CreateRow(1);
|
|
842
|
842
|
|
|
843
|
843
|
|
|
844
|
844
|
|
|
845
|
845
|
ICell cell5 = irow2.CreateCell(0);
|
|
846
|
846
|
cell5.SetCellValue("序号");
|
|
847
|
847
|
cell5.CellStyle = cellStylebt;
|
|
848
|
|
- sheet.AddMergedRegion(new CellRangeAddress(1, 2, 0, 0));
|
|
|
848
|
+ // sheet.AddMergedRegion(new CellRangeAddress(1, 1, 0, 0));
|
|
849
|
849
|
|
|
850
|
850
|
ICell cell4 = irow2.CreateCell(1);
|
|
851
|
851
|
cell4.SetCellValue("12345成员单位");
|
|
852
|
852
|
cell4.CellStyle = cellStylebt;
|
|
853
|
|
- sheet.AddMergedRegion(new CellRangeAddress(1, 2, 1, 1));
|
|
|
853
|
+ // sheet.AddMergedRegion(new CellRangeAddress(1, 1, 1, 1));
|
|
854
|
854
|
|
|
855
|
855
|
|
|
856
|
856
|
|
|
857
|
857
|
string[] cols = {"诉求总数",
|
|
858
|
858
|
"省派件","按时受理数","按时受理率","催办数","催办率",
|
|
859
|
859
|
"按时反馈件","按时反馈率","按时办结数","按时办结率","超时受理数",
|
|
860
|
|
- "超时反馈数","超时办结数","群众满意度","市转督办","诉求总数",
|
|
861
|
|
- "按时受理数","按时受理率","催办数","催办率",
|
|
862
|
|
- "按时反馈件","按时反馈率","按时办结数","按时办结率","超时受理数",
|
|
863
|
860
|
"超时反馈数","超时办结数","群众满意度","市转督办"};
|
|
864
|
861
|
|
|
865
|
|
- int icolIndex = 2;
|
|
|
862
|
+ int icolIndex = 1;
|
|
866
|
863
|
foreach (string dc in cols)
|
|
867
|
864
|
{
|
|
868
|
|
-
|
|
869
|
|
- ICell cell = irow4.CreateCell(icolIndex);
|
|
|
865
|
+ icolIndex++;
|
|
|
866
|
+ ICell cell = irow2.CreateCell(icolIndex);
|
|
870
|
867
|
|
|
871
|
868
|
cell.SetCellValue(dc);
|
|
872
|
869
|
cell.CellStyle = cellStylebt;
|
|
873
|
870
|
|
|
874
|
|
- icolIndex++;
|
|
|
871
|
+
|
|
875
|
872
|
}
|
|
876
|
|
- int iRowIndex = 3;
|
|
|
873
|
+ int iRowIndex = 2;
|
|
877
|
874
|
|
|
878
|
875
|
|
|
879
|
876
|
int index = 0;
|
|
|
@@ -919,7 +916,7 @@ namespace CallCenter.Utility
|
|
919
|
916
|
|
|
920
|
917
|
|
|
921
|
918
|
//自适应列宽度
|
|
922
|
|
- for (int i = 0; i < 22; i++)
|
|
|
919
|
+ for (int i = 0; i < 16; i++)
|
|
923
|
920
|
{
|
|
924
|
921
|
sheet.AutoSizeColumn(i);
|
|
925
|
922
|
// sheet.SetColumnWidth(i, 20 * 256);
|