|
|
@@ -792,7 +792,7 @@ namespace CallCenter.Utility
|
|
792
|
792
|
sheet.AddMergedRegion(new CellRangeAddress(0, 0, 2, 5));
|
|
793
|
793
|
|
|
794
|
794
|
ICell cell4 = irow1.CreateCell(6);
|
|
795
|
|
- cell4.SetCellValue("群众满意度");
|
|
|
795
|
+ cell4.SetCellValue("回访满意度");
|
|
796
|
796
|
cell4.CellStyle = cellStylebt;
|
|
797
|
797
|
sheet.AddMergedRegion(new CellRangeAddress(0, 2, 6, 6));
|
|
798
|
798
|
|
|
|
@@ -801,15 +801,20 @@ namespace CallCenter.Utility
|
|
801
|
801
|
cell5.CellStyle = cellStylebt;
|
|
802
|
802
|
sheet.AddMergedRegion(new CellRangeAddress(0, 2, 7, 7));
|
|
803
|
803
|
|
|
804
|
|
- ICell cell6 = irow1.CreateCell(8);
|
|
|
804
|
+ ICell cell8 = irow1.CreateCell(8);
|
|
|
805
|
+ cell8.SetCellValue("热线整合");
|
|
|
806
|
+ cell8.CellStyle = cellStylebt;
|
|
|
807
|
+ sheet.AddMergedRegion(new CellRangeAddress(0, 2, 8, 8));
|
|
|
808
|
+
|
|
|
809
|
+ ICell cell6 = irow1.CreateCell(9);
|
|
805
|
810
|
cell6.SetCellValue("加扣分项");
|
|
806
|
811
|
cell6.CellStyle = cellStylebt;
|
|
807
|
|
- sheet.AddMergedRegion(new CellRangeAddress(0, 2, 8, 8));
|
|
|
812
|
+ sheet.AddMergedRegion(new CellRangeAddress(0, 2, 9, 9));
|
|
808
|
813
|
|
|
809
|
|
- ICell cell7 = irow1.CreateCell(9);
|
|
|
814
|
+ ICell cell7 = irow1.CreateCell(10);
|
|
810
|
815
|
cell7.SetCellValue("总分");
|
|
811
|
816
|
cell7.CellStyle = cellStylebt;
|
|
812
|
|
- sheet.AddMergedRegion(new CellRangeAddress(0, 2, 9, 9));
|
|
|
817
|
+ sheet.AddMergedRegion(new CellRangeAddress(0, 2, 10, 10));
|
|
813
|
818
|
|
|
814
|
819
|
|
|
815
|
820
|
|
|
|
@@ -854,7 +859,7 @@ namespace CallCenter.Utility
|
|
854
|
859
|
IRow irow4 = sheet.CreateRow(index);
|
|
855
|
860
|
index++;
|
|
856
|
861
|
iCellIndex++;
|
|
857
|
|
- for (int i = 0; i < 10; i++)
|
|
|
862
|
+ for (int i = 0; i < 11; i++)
|
|
858
|
863
|
{
|
|
859
|
864
|
switch (i )
|
|
860
|
865
|
{
|
|
|
@@ -899,11 +904,17 @@ namespace CallCenter.Utility
|
|
899
|
904
|
cel7.CellStyle = cellStylebt1;
|
|
900
|
905
|
break;
|
|
901
|
906
|
case 8:
|
|
|
907
|
+ ICell cel10 = irow4.CreateCell(i);
|
|
|
908
|
+ cel10.SetCellValue(dr["F_Integration"].ToString());
|
|
|
909
|
+ cel10.CellStyle = cellStylebt1;
|
|
|
910
|
+ break;
|
|
|
911
|
+
|
|
|
912
|
+ case 9:
|
|
902
|
913
|
ICell cel8= irow4.CreateCell(i);
|
|
903
|
914
|
cel8.SetCellValue(dr["F_Buckle"].ToString());
|
|
904
|
915
|
cel8.CellStyle = cellStylebt1;
|
|
905
|
916
|
break;
|
|
906
|
|
- case 9:
|
|
|
917
|
+ case 10:
|
|
907
|
918
|
ICell cel9 = irow4.CreateCell(i);
|
|
908
|
919
|
cel9.SetCellValue(dr["F_Total"].ToString());
|
|
909
|
920
|
cel9.CellStyle = cellStylebt1;
|