|
|
@@ -92,8 +92,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
92
|
92
|
{
|
|
93
|
93
|
Model.T_Sys_UserAccount ua = userBLL.GetModel(userId);
|
|
94
|
94
|
Model.T_Sys_RoleInfo ro = rolebll.GetModel(ua.F_RoleId);
|
|
95
|
|
- string sql = $" F_IsDelete=0";
|
|
96
|
|
- sql += "and F_Duplicate!=5";
|
|
|
95
|
+ string sql = $" c.F_IsDelete=0";
|
|
|
96
|
+ sql += "and c.F_Duplicate!=5";
|
|
97
|
97
|
string where = "";
|
|
98
|
98
|
bool duplica = false;
|
|
99
|
99
|
DataTable dt = new DataTable();
|
|
|
@@ -101,42 +101,42 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
101
|
101
|
if (type > 0 )//工单类型
|
|
102
|
102
|
{
|
|
103
|
103
|
if (type == 1)
|
|
104
|
|
- sql += $" and (F_Type=" + type + "or ( F_Duplicate in(1)and F_Type!=2 and F_Type < 5 ))";
|
|
|
104
|
+ sql += $" and (c.F_Type=" + type + "or ( F_Duplicate in(1)and c.F_Type!=2 and c.F_Type < 5 ))";
|
|
105
|
105
|
else if (type == 2)
|
|
106
|
|
- sql += $" and (F_Type=" + type + "or (F_Duplicate!=1 and F_Duplicate!=4 and F_Type=3))";
|
|
|
106
|
+ sql += $" and (c.F_Type=" + type + "or (F_Duplicate!=1 and F_Duplicate!=4 and c.F_Type=3))";
|
|
107
|
107
|
else if (type == 4)
|
|
108
|
|
- sql += $" and (F_Type=" + 4 + "or (F_Duplicate in(4)and F_Type=3))";
|
|
|
108
|
+ sql += $" and (c.F_Type=" + 4 + "or (F_Duplicate in(4)and c.F_Type=3))";
|
|
109
|
109
|
else
|
|
110
|
|
- sql += $" and F_Type=" + type;
|
|
|
110
|
+ sql += $" and c.F_Type=" + type;
|
|
111
|
111
|
}
|
|
112
|
112
|
|
|
113
|
113
|
#endregion
|
|
114
|
114
|
if (!string .IsNullOrEmpty (ywy ))
|
|
115
|
115
|
{
|
|
116
|
|
- sql += "AND F_Notifications ='" + ywy + "'";
|
|
|
116
|
+ sql += "AND c.F_Notifications ='" + ywy + "'";
|
|
117
|
117
|
}
|
|
118
|
118
|
if (!string .IsNullOrEmpty (producttypes))
|
|
119
|
119
|
{
|
|
120
|
|
- sql += $" and F_ProductTypes='{producttypes}'";
|
|
|
120
|
+ sql += $" and c.F_ProductTypes='{producttypes}'";
|
|
121
|
121
|
}
|
|
122
|
122
|
|
|
123
|
123
|
if (!string.IsNullOrEmpty(complaintType))
|
|
124
|
124
|
{
|
|
125
|
|
- sql += $" and F_ComplaintType='{complaintType}'";
|
|
|
125
|
+ sql += $" and c.F_ComplaintType='{complaintType}'";
|
|
126
|
126
|
}
|
|
127
|
127
|
|
|
128
|
128
|
|
|
129
|
129
|
|
|
130
|
130
|
if (CJ == 1)
|
|
131
|
131
|
{
|
|
132
|
|
- sql += $" and (F_Type=" + 4 + "or (F_Duplicate in(4)and F_Type=3))";
|
|
|
132
|
+ sql += $" and (c.F_Type=" + 4 + "or (F_Duplicate in(4)and c.F_Type=3))";
|
|
133
|
133
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "ZG")
|
|
134
|
134
|
{
|
|
135
|
|
- sql += "AND F_Notifications ='" + ua.F_UserCode + "'";
|
|
|
135
|
+ sql += "AND c.F_Notifications ='" + ua.F_UserCode + "'";
|
|
136
|
136
|
}
|
|
137
|
137
|
else if (ro.F_RoleCode == "BSCJL")
|
|
138
|
138
|
{
|
|
139
|
|
- sql += "AND F_Office =" + ua.F_DeptId;
|
|
|
139
|
+ sql += "AND c.F_Office =" + ua.F_DeptId;
|
|
140
|
140
|
}
|
|
141
|
141
|
else if (ro.F_RoleCode == "ZR" || ro.F_RoleCode == "BBZY" || ro.F_RoleCode == "CJZY" || ro.F_RoleCode == "JCRY" || ro.F_RoleCode == "XTGLY" || ro.F_RoleCode == "CLZY")
|
|
142
|
142
|
{
|
|
|
@@ -150,7 +150,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
150
|
150
|
{
|
|
151
|
151
|
if (state != 11)
|
|
152
|
152
|
{
|
|
153
|
|
- sql += $" and (F_Type=" + 2 + "or (F_Duplicate!=1 and F_Duplicate!=4 and F_Type=3)or F_Type>4 )";
|
|
|
153
|
+ sql += $" and (c.F_Type=" + 2 + "or (F_Duplicate!=1 and F_Duplicate!=4 and c.F_Type=3)or c.F_Type>4 )";
|
|
154
|
154
|
}
|
|
155
|
155
|
}
|
|
156
|
156
|
|
|
|
@@ -158,65 +158,65 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
158
|
158
|
|
|
159
|
159
|
|
|
160
|
160
|
if (source > 0)//工单来源
|
|
161
|
|
- sql += $" and F_Source=" + source;
|
|
|
161
|
+ sql += $" and c.F_Source=" + source;
|
|
162
|
162
|
if (!string .IsNullOrEmpty (officename))
|
|
163
|
163
|
{
|
|
164
|
164
|
var dept = new BLL.T_Sys_Department().GetModelList("F_DeptName like '%" + officename + "%'").FirstOrDefault ();
|
|
165
|
165
|
if (dept!=null )
|
|
166
|
|
- sql += $" and F_Office ='"+ dept.F_DeptId +"'";
|
|
|
166
|
+ sql += $" and c.F_Office ='" + dept.F_DeptId +"'";
|
|
167
|
167
|
}
|
|
168
|
168
|
if (!string.IsNullOrEmpty(area) && !string.IsNullOrEmpty(office))
|
|
169
|
169
|
{
|
|
170
|
|
- sql += $" and (F_Area in(" + area + ") or F_Office in(" + office + "))";
|
|
|
170
|
+ sql += $" and (c.F_Area in(" + area + ") or c.F_Office in(" + office + "))";
|
|
171
|
171
|
}
|
|
172
|
172
|
else if (!string.IsNullOrEmpty(area) )//大区
|
|
173
|
|
- sql += $" and F_Area in(" + area+")";
|
|
|
173
|
+ sql += $" and c.F_Area in(" + area+")";
|
|
174
|
174
|
else if (!string.IsNullOrEmpty(office))//办事处
|
|
175
|
|
- sql += $" and F_Office in(" + office+")";
|
|
|
175
|
+ sql += $" and c.F_Office in(" + office+")";
|
|
176
|
176
|
if (duplicate >= 0)
|
|
177
|
|
- sql += $" and F_Type=" + 3 + "and F_Duplicate!=1";
|
|
|
177
|
+ sql += $" and c.F_Type=" + 3 + "and F_Duplicate!=1";
|
|
178
|
178
|
if (!string.IsNullOrEmpty(productType))//产品代码
|
|
179
|
|
- sql += $" and F_ProductType = '" + productType.Trim() + "'";
|
|
|
179
|
+ sql += $" and c.F_ProductType = '" + productType.Trim() + "'";
|
|
180
|
180
|
if (!string.IsNullOrEmpty(productDate))//生产日期
|
|
181
|
|
- sql += $" and F_ProductDate = '" + productDate.Trim() + "'";
|
|
|
181
|
+ sql += $" and c.F_ProductDate = '" + productDate.Trim() + "'";
|
|
182
|
182
|
if (!string.IsNullOrEmpty(batchNumber))//产品编码
|
|
183
|
|
- sql += $" and F_BatchNumber like '%" + batchNumber.Trim() + "%'";
|
|
|
183
|
+ sql += $" and c.F_BatchNumber like '%" + batchNumber.Trim() + "%'";
|
|
184
|
184
|
if (reminder==0)
|
|
185
|
185
|
{
|
|
186
|
|
- sql += $" and F_DealType ='1' ";
|
|
|
186
|
+ sql += $" and c.F_DealType ='1' ";
|
|
187
|
187
|
}
|
|
188
|
188
|
else if (reminder > 0)
|
|
189
|
189
|
{
|
|
190
|
|
- sql += $" and F_DealType is null ";
|
|
|
190
|
+ sql += $" and c.F_DealType is null ";
|
|
191
|
191
|
}
|
|
192
|
192
|
if (isreductions > 0)
|
|
193
|
193
|
{
|
|
194
|
|
- sql += $" and (F_IsReduction !='2' or F_IsReduction is null )";
|
|
|
194
|
+ sql += $" and (c.F_IsReduction !='2' or c. F_IsReduction is null )";
|
|
195
|
195
|
}
|
|
196
|
196
|
else
|
|
197
|
197
|
{
|
|
198
|
|
- sql += $" and (F_IsReduction !='1' or F_IsReduction is null ) ";
|
|
|
198
|
+ sql += $" and (c.F_IsReduction !='1' or c.F_IsReduction is null ) ";
|
|
199
|
199
|
}
|
|
200
|
200
|
|
|
201
|
201
|
|
|
202
|
202
|
if (incomplete== 0)
|
|
203
|
203
|
{
|
|
204
|
204
|
|
|
205
|
|
- sql += $" and F_DealState ='1' ";
|
|
|
205
|
+ sql += $" and c.F_DealState ='1' ";
|
|
206
|
206
|
|
|
207
|
207
|
}
|
|
208
|
208
|
else if (incomplete > 0)
|
|
209
|
209
|
{
|
|
210
|
|
- sql += $" and F_DealState is null ";
|
|
|
210
|
+ sql += $" and c.F_DealState is null ";
|
|
211
|
211
|
}
|
|
212
|
212
|
if (isdealfile==0)
|
|
213
|
213
|
{
|
|
214
|
|
- sql += $" and (F_DealFile is null or F_DealFile = '') ";
|
|
|
214
|
+ sql += $" and (c.F_DealFile is null or c.F_DealFile = '') ";
|
|
215
|
215
|
|
|
216
|
216
|
}
|
|
217
|
217
|
else if (isdealfile > 0)
|
|
218
|
218
|
{
|
|
219
|
|
- sql += $" and F_DealFile is not null and F_DealFile != '' ";
|
|
|
219
|
+ sql += $" and c.F_DealFile is not null and c.F_DealFile != '' ";
|
|
220
|
220
|
}
|
|
221
|
221
|
if (!string.IsNullOrEmpty(manufacturer))//生产厂家
|
|
222
|
222
|
{
|
|
|
@@ -252,13 +252,13 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
252
|
252
|
msg = msg + "," + "'" + it + "'";
|
|
253
|
253
|
}
|
|
254
|
254
|
}
|
|
255
|
|
- sql += $" and F_ProblemCode in (" + msg + ")";
|
|
|
255
|
+ sql += $" and c.F_ProblemCode in (" + msg + ")";
|
|
256
|
256
|
}
|
|
257
|
257
|
|
|
258
|
258
|
if (!string.IsNullOrEmpty(notifications))//通知人
|
|
259
|
|
- sql += $" and F_Notifications = '" + notifications.Trim() + "'";
|
|
|
259
|
+ sql += $" and c.F_Notifications = '" + notifications.Trim() + "'";
|
|
260
|
260
|
if (!string.IsNullOrEmpty(productName))//产品名称
|
|
261
|
|
- sql += $" and F_ProductName like '%" + productName.Trim() + "%'";
|
|
|
261
|
+ sql += $" and c.F_ProductName like '%" + productName.Trim() + "%'";
|
|
262
|
262
|
|
|
263
|
263
|
if (!string.IsNullOrEmpty(dealTimely))//重要级别
|
|
264
|
264
|
{
|
|
|
@@ -285,19 +285,19 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
285
|
285
|
sql += " and datediff(day,c.F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')>=0 ";
|
|
286
|
286
|
}
|
|
287
|
287
|
if (IsReduction>-1)
|
|
288
|
|
- sql += " and F_IsReduction ="+ IsReduction;
|
|
|
288
|
+ sql += " and c.F_IsReduction =" + IsReduction;
|
|
289
|
289
|
if (!string.IsNullOrEmpty(duplicatetime))
|
|
290
|
290
|
{
|
|
291
|
291
|
|
|
292
|
292
|
duplica = true;
|
|
293
|
|
- sql += $" and F_Type=" + 3;
|
|
294
|
|
- where += " and datediff(day,c.F_CreateTime,'" + duplicatetime + "')<=0 ";
|
|
|
293
|
+ sql += $" and c.F_Type=" + 3;
|
|
|
294
|
+ where += " and datediff(day,n.F_CreateTime,'" + duplicatetime + "')<=0 ";
|
|
295
|
295
|
}
|
|
296
|
296
|
if (!string.IsNullOrEmpty(endduplicatetime))
|
|
297
|
297
|
{
|
|
298
|
298
|
duplica = true;
|
|
299
|
|
- sql += $" and F_Type=" + 3;
|
|
300
|
|
- where += " and datediff(day,c.F_CreateTime,'" + endduplicatetime + "')>=0 ";
|
|
|
299
|
+ sql += $" and c.F_Type=" + 3;
|
|
|
300
|
+ where += " and datediff(day,n.F_CreateTime,'" + endduplicatetime + "')>=0 ";
|
|
301
|
301
|
}
|
|
302
|
302
|
if (!string.IsNullOrEmpty(keywords))
|
|
303
|
303
|
{
|
|
|
@@ -308,14 +308,14 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
308
|
308
|
|
|
309
|
309
|
}
|
|
310
|
310
|
else
|
|
311
|
|
- sql += $" and (F_CusPhone like '%" + keywords.Trim() + "%' or F_QualityProblem like '%" + keywords.Trim() + "%'or F_Samplingtype like '%" + keywords.Trim() + "%'or F_Salesroom like '%" + keywords.Trim()
|
|
312
|
|
- + "%'or F_Samplingproducts like '%" + keywords.Trim() + "%'or F_Factories like '%"
|
|
313
|
|
- + keywords.Trim() + "%'or c.F_DealResult like '%" + keywords.Trim() + "%'or F_AddRess like '%"
|
|
314
|
|
- + keywords.Trim() + "%'or c.F_Remark like '%" + keywords.Trim() + "%'or F_Content like '%" + keywords.Trim() + "%' ) ";
|
|
|
311
|
+ sql += $" and (c.F_CusPhone like '%" + keywords.Trim() + "%' or c.F_QualityProblem like '%" + keywords.Trim() + "%'or F_Samplingtype like '%" + keywords.Trim() + "%'or F_Salesroom like '%" + keywords.Trim()
|
|
|
312
|
+ + "%'or c.F_Samplingproducts like '%" + keywords.Trim() + "%'or c.F_Factories like '%"
|
|
|
313
|
+ + keywords.Trim() + "%'or c.F_DealResult like '%" + keywords.Trim() + "%'or c.F_AddRess like '%"
|
|
|
314
|
+ + keywords.Trim() + "%'or c.F_Remark like '%" + keywords.Trim() + "%'or c.F_Content like '%" + keywords.Trim() + "%' ) ";
|
|
315
|
315
|
}
|
|
316
|
316
|
|
|
317
|
317
|
if (!string.IsNullOrWhiteSpace(code))//工单编号
|
|
318
|
|
- sql += $" and F_WorkOrderId like '%" + code.Trim() + "%'";
|
|
|
318
|
+ sql += $" and c.F_WorkOrderId like '%" + code.Trim() + "%'";
|
|
319
|
319
|
|
|
320
|
320
|
string uwhere = " ";
|
|
321
|
321
|
if (state > -1)
|
|
|
@@ -326,12 +326,12 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
326
|
326
|
case 0://待提交
|
|
327
|
327
|
if (ro.F_RoleCode == "XTGLY" || ro.F_RoleCode == "JCRY" || ro.F_RoleCode == "JDYPTZX" || ro.F_RoleCode == "JDYBTZX" || ro.F_RoleCode == "ZR")
|
|
328
|
328
|
{
|
|
329
|
|
- sql += " AND F_State in(0)";
|
|
|
329
|
+ sql += " AND c.F_State in(0)";
|
|
330
|
330
|
}
|
|
331
|
331
|
else if (ro.F_RoleCode == "CLZY")
|
|
332
|
332
|
{
|
|
333
|
333
|
if (see == 0)
|
|
334
|
|
- sql += "AND F_State in(0)";
|
|
|
334
|
+ sql += "AND c.F_State in(0)";
|
|
335
|
335
|
else
|
|
336
|
336
|
return Success("暂无工单");
|
|
337
|
337
|
}
|
|
|
@@ -339,13 +339,13 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
339
|
339
|
return Error("无操作权限");
|
|
340
|
340
|
break;
|
|
341
|
341
|
case 1://待分派
|
|
342
|
|
- sql += "AND F_State in(1)";
|
|
|
342
|
+ sql += "AND c.F_State in(1)";
|
|
343
|
343
|
sql += RetuSql(ro, see, ua);
|
|
344
|
344
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "QTJS" || ro.F_RoleCode == "ZG")
|
|
345
|
345
|
return Error("无操作权限");
|
|
346
|
346
|
break;
|
|
347
|
347
|
case 3://待处理
|
|
348
|
|
- sql += "AND F_State=3";
|
|
|
348
|
+ sql += "AND c.F_State=3";
|
|
349
|
349
|
sql += RetuSql(ro, see, ua);
|
|
350
|
350
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "ZG")
|
|
351
|
351
|
{
|
|
|
@@ -355,7 +355,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
355
|
355
|
return Error("无操作权限");
|
|
356
|
356
|
break;
|
|
357
|
357
|
case 4://处理中
|
|
358
|
|
- sql += "AND F_State=4";
|
|
|
358
|
+ sql += "AND c.F_State=4";
|
|
359
|
359
|
sql += RetuSql(ro, see, ua);
|
|
360
|
360
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "ZG")
|
|
361
|
361
|
{
|
|
|
@@ -365,19 +365,19 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
365
|
365
|
return Error("无操作权限");
|
|
366
|
366
|
break;
|
|
367
|
367
|
case 5://退回待分派
|
|
368
|
|
- sql += "AND F_State=5";
|
|
|
368
|
+ sql += "AND c.F_State=5";
|
|
369
|
369
|
sql += RetuSql(ro, see, ua);
|
|
370
|
370
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "QTJS" || ro.F_RoleCode == "ZG")
|
|
371
|
371
|
return Error("无操作权限");
|
|
372
|
372
|
break;
|
|
373
|
373
|
case 6://退回待提交
|
|
374
|
|
- sql += "AND F_State=6";
|
|
|
374
|
+ sql += "AND c.F_State=6";
|
|
375
|
375
|
sql += RetuSql(ro, see, ua);
|
|
376
|
376
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "QTJS" || ro.F_RoleCode == "ZG")
|
|
377
|
377
|
return Error("无操作权限");
|
|
378
|
378
|
break;
|
|
379
|
379
|
case 7://抽检列表
|
|
380
|
|
- sql += "AND F_Duplicate=6";
|
|
|
380
|
+ sql += "AND c.F_Duplicate=6";
|
|
381
|
381
|
if (ro.F_RoleCode == "BSCJL" || ro.F_RoleCode == "YWY"|| ro .F_RoleCode =="ZG")
|
|
382
|
382
|
{
|
|
383
|
383
|
sql += "AND F_Notifications =" + ua.F_UserCode;
|
|
|
@@ -397,7 +397,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
397
|
397
|
return Error("无操作权限");
|
|
398
|
398
|
break;
|
|
399
|
399
|
case 10://已完结
|
|
400
|
|
- sql += "AND F_State=10";
|
|
|
400
|
+ sql += "AND c.F_State=10";
|
|
401
|
401
|
sql += RetuSql(ro, see, ua);
|
|
402
|
402
|
if ( ro.F_RoleCode == "YWY" || ro.F_RoleCode == "ZG")
|
|
403
|
403
|
{
|
|
|
@@ -408,10 +408,10 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
408
|
408
|
return Error("无操作权限");
|
|
409
|
409
|
break;
|
|
410
|
410
|
case 11:
|
|
411
|
|
- sql += $" and (F_Type=" + 1 + "or ( F_Duplicate in(1)and F_Type!=2 and F_Type < 5 ))";
|
|
|
411
|
+ sql += $" and (c.F_Type=" + 1 + "or ( F_Duplicate in(1)and c.F_Type!=2 and c.F_Type < 5 ))";
|
|
412
|
412
|
sql += RetuSql(ro, see, ua);
|
|
413
|
413
|
if (ro.F_RoleCode == "YWY" || ro.F_RoleCode == "ZG")
|
|
414
|
|
- sql += "AND F_DealUser=" + ua.F_UserCode;
|
|
|
414
|
+ sql += "AND c.F_DealUser=" + ua.F_UserCode;
|
|
415
|
415
|
if (ro.F_RoleCode == "QTJS")
|
|
416
|
416
|
return Error("无操作权限");
|
|
417
|
417
|
break;
|
|
|
@@ -426,7 +426,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
426
|
426
|
if (duplica)
|
|
427
|
427
|
{
|
|
428
|
428
|
if (GetDuplica(where) != null)
|
|
429
|
|
- sql += "AND F_Id in(" + GetDuplica(where) + ")";
|
|
|
429
|
+ sql += "AND c.F_Id in(" + GetDuplica(where) + ")";
|
|
430
|
430
|
else
|
|
431
|
431
|
return Success("暂无工单");
|
|
432
|
432
|
}
|
|
|
@@ -836,19 +836,19 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
836
|
836
|
sql += $" and (F_DealTimely= '1类问题' or F_DealTimely= 'Ⅰ级' )";
|
|
837
|
837
|
}
|
|
838
|
838
|
if (!string.IsNullOrEmpty(starttime))
|
|
839
|
|
- sql += " and datediff(day,F_CreateTime,'" + starttime + "')<=0 ";
|
|
|
839
|
+ sql += " and datediff(day,c.F_CreateTime,'" + starttime + "')<=0 ";
|
|
840
|
840
|
if (!string.IsNullOrEmpty(endtime))
|
|
841
|
|
- sql += " and datediff(day,F_CreateTime,'" + endtime + "')>=0 ";
|
|
|
841
|
+ sql += " and datediff(day,c.F_CreateTime,'" + endtime + "')>=0 ";
|
|
842
|
842
|
if (istime == 0)
|
|
843
|
843
|
{
|
|
844
|
|
- sql += " and datediff(day,F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')<=0 ";
|
|
845
|
|
- sql += " and datediff(day,F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')>=0 ";
|
|
|
844
|
+ sql += " and datediff(day,c.F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')<=0 ";
|
|
|
845
|
+ sql += " and datediff(day,c.F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')>=0 ";
|
|
846
|
846
|
}
|
|
847
|
847
|
if (istime > 0)
|
|
848
|
848
|
{
|
|
849
|
|
- sql += " and datediff(day,F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM")
|
|
|
849
|
+ sql += " and datediff(day,c.F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM")
|
|
850
|
850
|
+ "-01" + "')<=0 ";
|
|
851
|
|
- sql += " and datediff(day,F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')>=0 ";
|
|
|
851
|
+ sql += " and datediff(day,c.F_CreateTime,'" + DateTime.Now.ToString("yyyy-MM-dd") + "')>=0 ";
|
|
852
|
852
|
}
|
|
853
|
853
|
if (IsReduction > -1)
|
|
854
|
854
|
sql += " and F_IsReduction =" + IsReduction;
|
|
|
@@ -857,13 +857,13 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
857
|
857
|
|
|
858
|
858
|
duplica = true;
|
|
859
|
859
|
sql += $" and F_Type=" + 3;
|
|
860
|
|
- where += " and datediff(day,F_CreateTime,'" + duplicatetime + "')<=0 ";
|
|
|
860
|
+ where += " and datediff(day,n.F_CreateTime,'" + duplicatetime + "')<=0 ";
|
|
861
|
861
|
}
|
|
862
|
862
|
if (!string.IsNullOrEmpty(endduplicatetime))
|
|
863
|
863
|
{
|
|
864
|
864
|
duplica = true;
|
|
865
|
865
|
sql += $" and F_Type=" + 3;
|
|
866
|
|
- where += " and datediff(day,F_CreateTime,'" + endduplicatetime + "')>=0 ";
|
|
|
866
|
+ where += " and datediff(day,n.F_CreateTime,'" + endduplicatetime + "')>=0 ";
|
|
867
|
867
|
}
|
|
868
|
868
|
if (!string.IsNullOrEmpty(keywords))
|
|
869
|
869
|
{
|
|
|
@@ -1167,7 +1167,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
1167
|
1167
|
{
|
|
1168
|
1168
|
|
|
1169
|
1169
|
dt = BLL.PagerBLL.GetListPager(
|
|
1170
|
|
- "T_Bus_WorkOrder WITH(NOLOCK) ",
|
|
|
1170
|
+ "T_Bus_WorkOrder c WITH(NOLOCK) ",
|
|
1171
|
1171
|
"F_Id",
|
|
1172
|
1172
|
"*",
|
|
1173
|
1173
|
sql,
|
|
|
@@ -1382,7 +1382,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
1382
|
1382
|
|
|
1383
|
1383
|
string[] ccc = {
|
|
1384
|
1384
|
"工单编号","大区","办事处","投诉时间","序号","姓名","地址","联系电话","产品代码",
|
|
1385
|
|
- "产品名称","规格","+生产日期","产品编码","生产厂家","问题代码","质量问题","通知人"
|
|
|
1385
|
+ "产品名称","规格","生产日期","产品编码","生产厂家","问题代码","质量问题","通知人"
|
|
1386
|
1386
|
,"接听人" ,"落实情况","处理进度","工单类别","产品类型","投诉类型","分派时间","接单时间","处理时间","备注"
|
|
1387
|
1387
|
};
|
|
1388
|
1388
|
return ccc;
|
|
|
@@ -2004,7 +2004,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
2004
|
2004
|
public string GetDuplica(string time)
|
|
2005
|
2005
|
{
|
|
2006
|
2006
|
string str = string.Empty;
|
|
2007
|
|
- str = "select F_WoID from T_Wo_WorkOrderItem_New where F_ItemType=" + 11 + time;
|
|
|
2007
|
+ str = "select F_WoID from T_Wo_WorkOrderItem_New n where F_ItemType=" + 11 + time;
|
|
2008
|
2008
|
return str;
|
|
2009
|
2009
|
}
|
|
2010
|
2010
|
/// <summary>
|