|
|
@@ -2118,10 +2118,6 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
2118
|
2118
|
}
|
|
2119
|
2119
|
}
|
|
2120
|
2120
|
}
|
|
2121
|
|
-
|
|
2122
|
|
-
|
|
2123
|
|
-
|
|
2124
|
|
-
|
|
2125
|
2121
|
#endregion
|
|
2126
|
2122
|
}
|
|
2127
|
2123
|
else
|
|
|
@@ -12619,6 +12615,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
12619
|
12615
|
|
|
12620
|
12616
|
if (nexttype == 0)
|
|
12621
|
12617
|
{
|
|
|
12618
|
+ keyValuePairs.Add("F_Note", "");
|
|
12622
|
12619
|
keyValuePairs.Add("F_WorkState", 7);
|
|
12623
|
12620
|
|
|
12624
|
12621
|
modelT_Bus_WorkOrder.F_WorkState = (int)EnumWorkState.visit;//已回访
|
|
|
@@ -12653,6 +12650,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
12653
|
12650
|
// modelT_Bus_WorkOrder.F_IsSms = 0;
|
|
12654
|
12651
|
keyValuePairs2.Add("F_Identification", 0);
|
|
12655
|
12652
|
// modelT_Bus_WorkOrder.F_Identification = 0;
|
|
|
12653
|
+ keyValuePairs2.Add("F_Note", "");
|
|
12656
|
12654
|
workorderBLL.UpdateWorkOrder(modelT_Bus_WorkOrder.F_Id, keyValuePairs2);
|
|
12657
|
12655
|
#endregion
|
|
12658
|
12656
|
opt = "于" + DateTime.Now
|
|
|
@@ -12683,6 +12681,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
12683
|
12681
|
{
|
|
12684
|
12682
|
Dictionary<string, object> keyValuePairs3 = new Dictionary<string, object>();
|
|
12685
|
12683
|
keyValuePairs3.Add("F_WorkState", (int)EnumWorkState.backaudit);
|
|
|
12684
|
+ keyValuePairs3.Add("F_Note", "");
|
|
12686
|
12685
|
modelT_Bus_WorkOrder.F_WorkState = (int)EnumWorkState.backaudit;//重办审核
|
|
12687
|
12686
|
if (statistics > 0)
|
|
12688
|
12687
|
{
|
|
|
@@ -12773,6 +12772,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
12773
|
12772
|
// modelT_Bus_WorkOrder.F_DealUser = "";
|
|
12774
|
12773
|
keyValuePairs3.Add("F_DealTime", null);
|
|
12775
|
12774
|
// modelT_Bus_WorkOrder.F_DealTime = null;
|
|
|
12775
|
+ keyValuePairs3.Add("F_Note", "");
|
|
12776
|
12776
|
if (workorderBLL.UpdateWorkOrder(modelT_Bus_WorkOrder.F_Id, keyValuePairs3))
|
|
12777
|
12777
|
{
|
|
12778
|
12778
|
var user = new BLL.T_Sys_UserAccount().GetModelList("F_DeptId in ('" + modelT_Bus_WorkOrder.F_MainDeptId + "') ");
|
|
|
@@ -15550,7 +15550,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
15550
|
15550
|
|
|
15551
|
15551
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
15552
|
15552
|
|
|
15553
|
|
- if (modelT_Bus_WorkOrder != null&& modelT_Bus_WorkOrder.F_WorkState== (int)EnumWorkState.visit)
|
|
|
15553
|
+ if (modelT_Bus_WorkOrder != null && (modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.dealed || modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit))
|
|
15554
|
15554
|
{
|
|
15555
|
15555
|
Dictionary<string, object> keyValuePairs = new Dictionary<string, object>();
|
|
15556
|
15556
|
keyValuePairs.Add("F_Note", modelT_Bus_WorkOrder.F_Note + "|||" + note);
|
|
|
@@ -15588,7 +15588,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
15588
|
15588
|
|
|
15589
|
15589
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
15590
|
15590
|
|
|
15591
|
|
- if (modelT_Bus_WorkOrder != null && modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit)
|
|
|
15591
|
+ if (modelT_Bus_WorkOrder != null && (modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.dealed || modelT_Bus_WorkOrder.F_WorkState == (int)EnumWorkState.visit))
|
|
15592
|
15592
|
{
|
|
15593
|
15593
|
Dictionary<string, object> keyValuePairs = new Dictionary<string, object>();
|
|
15594
|
15594
|
keyValuePairs.Add("F_Note", note);
|