|
|
@@ -780,7 +780,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
780
|
780
|
string[] ccc = {
|
|
781
|
781
|
"工单编号","大区","办事处","投诉时间","序号","姓名","地址","联系电话","产品代码",
|
|
782
|
782
|
"产品名称","规格","生产日期","产品编码","生产厂家","问题代码","质量问题","通知人"
|
|
783
|
|
- ,"接听人" ,"落实情况","处理进度","工单类别"
|
|
|
783
|
+ ,"接听人" ,"落实情况","处理进度","工单类别","分派时间","处理时间"
|
|
784
|
784
|
};
|
|
785
|
785
|
return ccc;
|
|
786
|
786
|
}
|
|
|
@@ -1194,8 +1194,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
1194
|
1194
|
model.F_Samplingproducts = it.F_Samplingproducts;//抽检产品
|
|
1195
|
1195
|
model.F_Factories = it.F_Factories;//涉及工厂
|
|
1196
|
1196
|
model.F_Datecheck = it.F_Datecheck;//抽检日期
|
|
1197
|
|
-
|
|
1198
|
|
-
|
|
|
1197
|
+ if (it.F_TransferTime != null)
|
|
|
1198
|
+ model.F_TransferTime = DateTime.Parse(it.F_TransferTime.ToString()).ToString("yyyy年MM月dd日HH时mm分");
|
|
1199
|
1199
|
|
|
1200
|
1200
|
model.F_CallId = it.F_CallId;//通话记录id
|
|
1201
|
1201
|
model.F_Notifications = it.F_Notifications;//通知人
|
|
|
@@ -1276,7 +1276,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
1276
|
1276
|
model.F_DealUser = user.F_UserName;
|
|
1277
|
1277
|
}
|
|
1278
|
1278
|
}
|
|
1279
|
|
- model.F_DealTime = it.F_DealTime;//处理时间
|
|
|
1279
|
+ if (it.F_DealTime != null)
|
|
|
1280
|
+ model.F_DealTime = DateTime.Parse(it.F_DealTime.ToString()).ToString("yyyy年MM月dd日HH时mm分");//it.F_DealTime;//处理时间
|
|
1280
|
1281
|
model.F_Returnnote = it.F_Returnnote;//退回说明
|
|
1281
|
1282
|
var itemlast = itembll.GetModelList(" isnull(F_IsUsed,'0')='1' and F_ItemType=" + 11 + " and F_WoID=" + it.F_Id + " ").FirstOrDefault();
|
|
1282
|
1283
|
if (itemlast != null)
|
|
|
@@ -2918,6 +2919,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
2918
|
2919
|
model.F_Office = F_Officeid.ToString();//转派办事处id
|
|
2919
|
2920
|
model.F_Distribution = F_Distribution; //转派分销组id
|
|
2920
|
2921
|
model.F_DealUser = touser;//已接单待处理;//已接单待处理
|
|
|
2922
|
+ model.F_TransferTime = DateTime .Now ;//
|
|
|
2923
|
+
|
|
2921
|
2924
|
workorderBLL.Update(model);
|
|
2922
|
2925
|
string optnext = "指派";
|
|
2923
|
2926
|
if (opt == "指派")
|