Procházet zdrojové kódy

计划分配中,坐席未执行任务数量应与我的任务量保持一致

zhengbingbing %!s(int64=7) %!d(string=před) roky
rodič
revize
395e372c7e

+ 8 - 1
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/callout/CallOutPlanController.cs

@@ -679,7 +679,14 @@ namespace CallCenterApi.Interface.Controllers.callout
679 679
                                     pageindex,
680 680
                                     true,
681 681
                                     out recordCount);
682
-            DataTable dtCount = otnBLL.GetList(" F_DeleteFlag=0 and isnull(F_HJJGName,'')!='正常接通' and isnull(F_YHFKName,'')!='已同意' and F_TaskID in (select F_TaskID from T_Call_OutTask where F_IsStart=1 and F_DeleteFlag=0) ").Tables[0];//new BLL.T_Vis_TelAllot().GetList(" F_state=1 and F_HFTelID in (select F_TelID from T_Vis_Telphone where  F_ISAllot=1 and F_ISCallRes=0 ) ").Tables[0];
682
+            #region 条件调整
683
+            string sqlc = "";
684
+            sqlc += "  and isnull(F_HJJGName,'') not in ('正常接通','停机','空号','正常接通-不满意','不在本地居住') ";
685
+            sqlc += "and F_TaskID in (select F_TaskID from T_Call_OutTask where F_IsStart=1 and F_DeleteFlag=0) ";
686
+            DataTable dtCount = otnBLL.GetList(" F_DeleteFlag=0 " + sqlc).Tables[0];
687
+            //20180607 zhengbingbing
688
+            //DataTable dtCount = otnBLL.GetList(" F_DeleteFlag=0 and isnull(F_HJJGName,'')!='正常接通' and isnull(F_YHFKName,'')!='已同意' and F_TaskID in (select F_TaskID from T_Call_OutTask where F_IsStart=1 and F_DeleteFlag=0) ").Tables[0];//new BLL.T_Vis_TelAllot().GetList(" F_state=1 and F_HFTelID in (select F_TelID from T_Vis_Telphone where  F_ISAllot=1 and F_ISCallRes=0 ) ").Tables[0];
689
+            #endregion
683 690
             List<Model.UserAccount> modelList = new BLL.UserAccount().DataTableToList(dt);
684 691
 
685 692
             var obj = new

+ 1 - 1
codegit/CallCenterCommon/CallCenter.Utility/ImageUpload.cs

@@ -158,7 +158,7 @@ namespace CallCenter.Utility
158 158
     {
159 159
         #region 私有成员
160 160
         private int _Error = 0;//返回上传状态。 
161
-        private int _MaxSize = 1024 * 1024;//最大单个上传文件 (默认)
161
+        private int _MaxSize = 20*1024 * 1024;//最大单个上传文件 (默认)
162 162
         private string _FileType = "jpg;gif;bmp;png";//所支持的上传类型用"/"隔开 
163 163
         private string _SavePath = System.Web.HttpContext.Current.Server.MapPath(".") + "\\";//保存文件的实际路径 
164 164
         private int _SaveType = 0;//上传文件的类型,0代表自动生成文件名