|
|
@@ -140,13 +140,13 @@ namespace CallCenterApi.Interface.Controllers.report
|
|
140
|
140
|
{
|
|
141
|
141
|
dr["坐席姓名"] = listiteam[0].ToString();
|
|
142
|
142
|
dr["非常满意"] = listiteam[1].ToString();
|
|
143
|
|
- dr["非常满意占比"] = listiteam[2].ToString();
|
|
|
143
|
+ dr["非常满意占比"] = string.Format("{0:f2}", double.Parse(listiteam[2]) * 100);
|
|
144
|
144
|
dr["基本满意"] = listiteam[3].ToString();
|
|
145
|
|
- dr["基本满意占比"] = listiteam[4].ToString();
|
|
|
145
|
+ dr["基本满意占比"] = string.Format("{0:f2}",double.Parse(listiteam[4]) * 100);
|
|
146
|
146
|
dr["不满意"] = listiteam[5].ToString();
|
|
147
|
|
- dr["不满意占比"] = listiteam[6].ToString();
|
|
|
147
|
+ dr["不满意占比"] = string.Format("{0:f2}", double.Parse(listiteam[6]) * 100);
|
|
148
|
148
|
dr["未评价"] = listiteam[7].ToString();
|
|
149
|
|
- dr["未评价占比"] = listiteam[8].ToString();
|
|
|
149
|
+ dr["未评价占比"] = string.Format("{0:f2}", double.Parse(listiteam[8]) * 100);
|
|
150
|
150
|
}
|
|
151
|
151
|
dtNew.Rows.Add(dr);
|
|
152
|
152
|
}
|
|
|
@@ -161,13 +161,13 @@ namespace CallCenterApi.Interface.Controllers.report
|
|
161
|
161
|
{
|
|
162
|
162
|
dr["坐席姓名"] = listiteam[0].ToString();
|
|
163
|
163
|
dr["非常满意"] = listiteam[1].ToString();
|
|
164
|
|
- dr["非常满意占比"] = listiteam[2].ToString()+"%";
|
|
|
164
|
+ dr["非常满意占比"] = string.Format("{0:f2}%", double.Parse(listiteam[2]) * 100);
|
|
165
|
165
|
dr["基本满意"] = listiteam[3].ToString();
|
|
166
|
|
- dr["基本满意占比"] = listiteam[4].ToString() + "%";
|
|
|
166
|
+ dr["基本满意占比"] = string.Format("{0:f2}%", double.Parse(listiteam[4]) * 100);
|
|
167
|
167
|
dr["不满意"] = listiteam[5].ToString();
|
|
168
|
|
- dr["不满意占比"] = listiteam[6].ToString() + "%";
|
|
|
168
|
+ dr["不满意占比"] = string.Format("{0:f2}%", double.Parse(listiteam[6]) * 100);
|
|
169
|
169
|
dr["未评价"] = listiteam[7].ToString();
|
|
170
|
|
- dr["未评价占比"] = listiteam[8].ToString() + "%";
|
|
|
170
|
+ dr["未评价占比"] = string.Format("{0:f2}%", double.Parse(listiteam[8]) * 100);
|
|
171
|
171
|
}
|
|
172
|
172
|
dtNew.Rows.Add(dr);
|
|
173
|
173
|
}
|