|
|
@@ -566,18 +566,21 @@ namespace CallCenter.Utility
|
|
566
|
566
|
str = dr["Comment"].ToString();
|
|
567
|
567
|
break;
|
|
568
|
568
|
case 15:
|
|
569
|
|
- str = dr["dissatisfied"].ToString();
|
|
|
569
|
+ str = dr["Oncedissatisfied"].ToString();
|
|
570
|
570
|
break;
|
|
571
|
571
|
case 16:
|
|
572
|
|
- str = dr["satisfiedrate"].ToString();
|
|
|
572
|
+ str = dr["dissatisfied"].ToString();
|
|
573
|
573
|
break;
|
|
574
|
574
|
case 17:
|
|
575
|
|
- str = dr["satisfiedscore"].ToString();
|
|
|
575
|
+ str = dr["satisfiedrate"].ToString();
|
|
576
|
576
|
break;
|
|
577
|
577
|
case 18:
|
|
578
|
|
- str = dr["total"].ToString();
|
|
|
578
|
+ str = dr["satisfiedscore"].ToString();
|
|
579
|
579
|
break;
|
|
580
|
580
|
case 19:
|
|
|
581
|
+ str = dr["total"].ToString();
|
|
|
582
|
+ break;
|
|
|
583
|
+ case 20:
|
|
581
|
584
|
str = index.ToString();
|
|
582
|
585
|
break;
|
|
583
|
586
|
|
|
|
@@ -641,7 +644,7 @@ namespace CallCenter.Utility
|
|
641
|
644
|
index++;
|
|
642
|
645
|
int iCellIndex = 0;
|
|
643
|
646
|
IRow irow = sheet.CreateRow(iRowIndex );
|
|
644
|
|
- for (int i = 0; i < 20; i++)
|
|
|
647
|
+ for (int i = 0; i < 21; i++)
|
|
645
|
648
|
{
|
|
646
|
649
|
ICell cell = irow.CreateCell(iCellIndex);
|
|
647
|
650
|
cell.SetCellValue(GetCellValue(dr, index,i ));
|
|
|
@@ -674,7 +677,7 @@ namespace CallCenter.Utility
|
|
674
|
677
|
index++;
|
|
675
|
678
|
int iCellIndex = 0;
|
|
676
|
679
|
IRow irow = sheet.CreateRow(iRowIndex);
|
|
677
|
|
- for (int i = 0; i < 20; i++)
|
|
|
680
|
+ for (int i = 0; i < 21; i++)
|
|
678
|
681
|
{
|
|
679
|
682
|
ICell cell = irow.CreateCell(iCellIndex);
|
|
680
|
683
|
cell.SetCellValue(GetCellValue(dr, index,i ));
|
|
|
@@ -706,7 +709,7 @@ namespace CallCenter.Utility
|
|
706
|
709
|
index++;
|
|
707
|
710
|
int iCellIndex = 0;
|
|
708
|
711
|
IRow irow = sheet.CreateRow(iRowIndex);
|
|
709
|
|
- for (int i = 0; i < 20; i++)
|
|
|
712
|
+ for (int i = 0; i < 21; i++)
|
|
710
|
713
|
{
|
|
711
|
714
|
ICell cell = irow.CreateCell(iCellIndex);
|
|
712
|
715
|
cell.SetCellValue(GetCellValue(dr, index,i ));
|
|
|
@@ -738,7 +741,7 @@ namespace CallCenter.Utility
|
|
738
|
741
|
index++;
|
|
739
|
742
|
int iCellIndex = 0;
|
|
740
|
743
|
IRow irow = sheet.CreateRow(iRowIndex);
|
|
741
|
|
- for (int i = 0; i < 20; i++)
|
|
|
744
|
+ for (int i = 0; i < 21; i++)
|
|
742
|
745
|
{
|
|
743
|
746
|
ICell cell = irow.CreateCell(iCellIndex);
|
|
744
|
747
|
cell.SetCellValue(GetCellValue(dr, index,i ));
|
|
|
@@ -841,7 +844,7 @@ namespace CallCenter.Utility
|
|
841
|
844
|
index++;
|
|
842
|
845
|
int iCellIndex = 0;
|
|
843
|
846
|
IRow irow = sheet.CreateRow(iRowIndex);
|
|
844
|
|
- for (int i = 0; i < 20; i++)
|
|
|
847
|
+ for (int i = 0; i < 21; i++)
|
|
845
|
848
|
{
|
|
846
|
849
|
ICell cell = irow.CreateCell(iCellIndex);
|
|
847
|
850
|
cell.SetCellValue(GetCellValue(dr, index, i));
|