mengjie лет назад: 6
Родитель
Сommit
e571787127

+ 16 - 0
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/Question/QuestionnaireController.cs

@@ -274,6 +274,22 @@ namespace CallCenterApi.Interface.Controllers.Question
274 274
                 return Error("删除试题问卷失败" + ",操作人:" + CurrentUser.UserData.F_UserCode);
275 275
             }
276 276
         }
277
+
278
+
279
+        //获取问卷列表
280
+        public ActionResult GetPagerList()
281
+        {
282
+            ActionResult res = NoToken("未知错误,请重新登录");
283
+            if (Request.IsAuthenticated)
284
+            {
285
+                List<Model.T_Ask_PagerInfo> pagerList = pagerInfoBLL.GetModelList(" F_DeleteFlag=0 order by F_PagerId desc ");
286
+                if (pagerList.Count > 0)
287
+                    res = Success("问卷列表加载成功", pagerList);
288
+                else
289
+                    res = Error("问卷列表加载失败");
290
+            }
291
+            return res;
292
+        }
277 293
         #endregion
278 294
 
279 295
         #region 问卷设置 - 问卷信息

+ 2 - 2
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/report/YearContrastController.cs

@@ -109,10 +109,10 @@ namespace CallCenterApi.Interface.Controllers.report
109 109
                 DataColumn dc1 = new DataColumn("月份", Type.GetType("System.String"));
110 110
                 DataColumn dc2 = new DataColumn(beginyear + "年客户呼叫数", Type.GetType("System.String"));
111 111
                 DataColumn dc3 = new DataColumn(beginyear + "年坐席接听数", Type.GetType("System.String"));
112
-                DataColumn dc4 = new DataColumn(beginyear + "年坐席接听率", Type.GetType("System.String"));
112
+                DataColumn dc4 = new DataColumn(beginyear + "年接通率", Type.GetType("System.String"));
113 113
                 DataColumn dc5 = new DataColumn(endyear + "年客户呼叫数", Type.GetType("System.String"));
114 114
                 DataColumn dc6 = new DataColumn(endyear + "年坐席接听数", Type.GetType("System.String"));
115
-                DataColumn dc7 = new DataColumn(endyear + "年坐席接听率", Type.GetType("System.String"));
115
+                DataColumn dc7 = new DataColumn(endyear + "年接通率", Type.GetType("System.String"));
116 116
 
117 117
                 dtNew.Columns.Add(dc1);
118 118
                 dtNew.Columns.Add(dc2);