|
|
@@ -2747,10 +2747,6 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
2747
|
2747
|
}
|
|
2748
|
2748
|
}
|
|
2749
|
2749
|
}
|
|
2750
|
|
-
|
|
2751
|
|
-
|
|
2752
|
|
-
|
|
2753
|
|
-
|
|
2754
|
2750
|
#endregion
|
|
2755
|
2751
|
}
|
|
2756
|
2752
|
else
|
|
|
@@ -13268,6 +13264,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
13268
|
13264
|
|
|
13269
|
13265
|
if (nexttype == 0)
|
|
13270
|
13266
|
{
|
|
|
13267
|
+ keyValuePairs.Add("F_Note", "");
|
|
13271
|
13268
|
keyValuePairs.Add("F_WorkState", 7);
|
|
13272
|
13269
|
|
|
13273
|
13270
|
modelT_Bus_WorkOrder.F_WorkState = (int)EnumWorkState.visit;//已回访
|
|
|
@@ -13302,6 +13299,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
13302
|
13299
|
// modelT_Bus_WorkOrder.F_IsSms = 0;
|
|
13303
|
13300
|
keyValuePairs2.Add("F_Identification", 0);
|
|
13304
|
13301
|
// modelT_Bus_WorkOrder.F_Identification = 0;
|
|
|
13302
|
+ keyValuePairs2.Add("F_Note", "");
|
|
13305
|
13303
|
workorderBLL.UpdateWorkOrder(modelT_Bus_WorkOrder.F_Id, keyValuePairs2);
|
|
13306
|
13304
|
#endregion
|
|
13307
|
13305
|
opt = "于" + DateTime.Now
|
|
|
@@ -13332,6 +13330,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
13332
|
13330
|
{
|
|
13333
|
13331
|
Dictionary<string, object> keyValuePairs3 = new Dictionary<string, object>();
|
|
13334
|
13332
|
keyValuePairs3.Add("F_WorkState", (int)EnumWorkState.backaudit);
|
|
|
13333
|
+ keyValuePairs3.Add("F_Note", "");
|
|
13335
|
13334
|
modelT_Bus_WorkOrder.F_WorkState = (int)EnumWorkState.backaudit;//重办审核
|
|
13336
|
13335
|
if (statistics > 0)
|
|
13337
|
13336
|
{
|
|
|
@@ -13422,6 +13421,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
13422
|
13421
|
// modelT_Bus_WorkOrder.F_DealUser = "";
|
|
13423
|
13422
|
keyValuePairs3.Add("F_DealTime", null);
|
|
13424
|
13423
|
// modelT_Bus_WorkOrder.F_DealTime = null;
|
|
|
13424
|
+ keyValuePairs3.Add("F_Note", "");
|
|
13425
|
13425
|
if (workorderBLL.UpdateWorkOrder(modelT_Bus_WorkOrder.F_Id, keyValuePairs3))
|
|
13426
|
13426
|
{
|
|
13427
|
13427
|
var user = new BLL.T_Sys_UserAccount().GetModelList("F_DeptId in ('" + modelT_Bus_WorkOrder.F_MainDeptId + "') ");
|
|
|
@@ -16211,7 +16211,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
16211
|
16211
|
|
|
16212
|
16212
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
16213
|
16213
|
|
|
16214
|
|
- if (modelT_Bus_WorkOrder != null&& modelT_Bus_WorkOrder.F_WorkState== (int)EnumWorkState.visit)
|
|
|
16214
|
+ if (modelT_Bus_WorkOrder != null && (modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.dealed || modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit))
|
|
16215
|
16215
|
{
|
|
16216
|
16216
|
Dictionary<string, object> keyValuePairs = new Dictionary<string, object>();
|
|
16217
|
16217
|
keyValuePairs.Add("F_Note", modelT_Bus_WorkOrder.F_Note + "|||" + note);
|
|
|
@@ -16249,7 +16249,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
16249
|
16249
|
|
|
16250
|
16250
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
16251
|
16251
|
|
|
16252
|
|
- if (modelT_Bus_WorkOrder != null && modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit)
|
|
|
16252
|
+ if (modelT_Bus_WorkOrder != null && (modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.dealed || modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit))
|
|
16253
|
16253
|
{
|
|
16254
|
16254
|
Dictionary<string, object> keyValuePairs = new Dictionary<string, object>();
|
|
16255
|
16255
|
keyValuePairs.Add("F_Note", note);
|