|
|
@@ -3467,6 +3467,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3467
|
3467
|
//string finalopinion = RequestString.GetFormString("finalopinion");//结案意见
|
|
3468
|
3468
|
|
|
3469
|
3469
|
string callid = RequestString.GetFormString("callid");
|
|
|
3470
|
+ string guid= RequestString.GetFormString("guid");
|
|
3470
|
3471
|
|
|
3471
|
3472
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
3472
|
3473
|
Model.T_Bus_AssignedInfo modelT_Bus_AssignedInfo = assignBLL.GetNewModelByWorkOrderID(workorderid);
|
|
|
@@ -3510,7 +3511,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3510
|
3511
|
int id = new BLL.T_Bus_VisitResult().Add(modelT_Bus_VisitResult);
|
|
3511
|
3512
|
modelT_Bus_VisitResult.F_Id = id;
|
|
3512
|
3513
|
//保存回访记录
|
|
3513
|
|
- new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode);
|
|
|
3514
|
+ new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode, guid);
|
|
3514
|
3515
|
#endregion
|
|
3515
|
3516
|
}
|
|
3516
|
3517
|
else
|
|
|
@@ -3548,7 +3549,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3548
|
3549
|
int id=new BLL.T_Bus_VisitResult().Add(modelT_Bus_VisitResult);
|
|
3549
|
3550
|
modelT_Bus_VisitResult.F_Id = id;
|
|
3550
|
3551
|
//保存回访记录
|
|
3551
|
|
- new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode);
|
|
|
3552
|
+ new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode, guid);
|
|
3552
|
3553
|
}
|
|
3553
|
3554
|
#endregion
|
|
3554
|
3555
|
}
|
|
|
@@ -3576,7 +3577,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
3576
|
3577
|
|
|
3577
|
3578
|
new BLL.T_Bus_VisitResult().Update(cg);
|
|
3578
|
3579
|
//保存回访记录
|
|
3579
|
|
- new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode);
|
|
|
3580
|
+ new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode, guid);
|
|
3580
|
3581
|
}
|
|
3581
|
3582
|
#endregion
|
|
3582
|
3583
|
|
|
|
@@ -4631,6 +4632,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
4631
|
4632
|
int issatisfie = RequestString.GetInt("issatisfie", 0);//0不满意 1满意
|
|
4632
|
4633
|
int visitid = RequestString.GetInt("id", 0);
|
|
4633
|
4634
|
string result = RequestString.GetFormString("result");//回访情况
|
|
|
4635
|
+ string guid = RequestString.GetFormString("guid");
|
|
4634
|
4636
|
|
|
4635
|
4637
|
Model.T_Bus_VisitResult modelT_Bus_VisitResult = new BLL.T_Bus_VisitResult().GetModel(visitid);
|
|
4636
|
4638
|
if (modelT_Bus_VisitResult != null)
|
|
|
@@ -4646,7 +4648,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
4646
|
4648
|
|
|
4647
|
4649
|
new BLL.T_Bus_VisitResult().Update(modelT_Bus_VisitResult);
|
|
4648
|
4650
|
//保存回访记录
|
|
4649
|
|
- new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode);
|
|
|
4651
|
+ new BLL.T_Bus_VisitResultRecords().AddInfo(modelT_Bus_VisitResult, userModel.F_UserCode, guid);
|
|
4650
|
4652
|
#endregion
|
|
4651
|
4653
|
|
|
4652
|
4654
|
#region 插入操作记录
|