zhoufan лет назад: 7
Родитель
Сommit
4c890cf1dc

+ 6 - 0
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/workorder/WorkOrderController.cs

@@ -97,6 +97,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
97 97
                 string strcity = RequestString.GetQueryString("city");
98 98
                 //关键词
99 99
                 string strkey = RequestString.GetQueryString("key");
100
+                //坐席工号
101
+                string strusercode = RequestString.GetQueryString("usercode");
100 102
 
101 103
 
102 104
                 //类型
@@ -144,6 +146,10 @@ namespace CallCenterApi.Interface.Controllers.workorder
144 146
                 {
145 147
                     sql += " and isnull(F_DealState,0) = '" + dealstate + "' ";
146 148
                 }
149
+                if (strusercode.Trim() != "" && strusercode != "undefined")
150
+                {
151
+                    sql += " and F_CreateUser = '" + strusercode + "' ";
152
+                }
147 153
                 if (strkey.Trim() != "" && strkey != "undefined")
148 154
                 {
149 155
                     sql += " and F_Content like '%" + strkey + "%' ";