|
|
@@ -11271,16 +11271,11 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
11271
|
11271
|
//[Authority]
|
|
11272
|
11272
|
public ActionResult RebackWorkOrder()
|
|
11273
|
11273
|
{
|
|
11274
|
|
-
|
|
11275
|
|
-
|
|
11276
|
|
-
|
|
11277
|
|
-
|
|
11278
|
|
-
|
|
11279
|
11274
|
if (User.F_RoleCode == "WLDW" || User.F_RoleCode == "GLY" || User.F_RoleCode == "DDZG")
|
|
11280
|
11275
|
{
|
|
11281
|
11276
|
string workorderid = RequestString.GetFormString("workorderid");
|
|
11282
|
11277
|
string backreason = RequestString.GetFormString("backreason");
|
|
11283
|
|
-
|
|
|
11278
|
+ string file= RequestString.GetFormString("file");
|
|
11284
|
11279
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
|
|
11285
|
11280
|
Model.T_Bus_AssignedInfo modelT_Bus_AssignedInfo = assignBLL.GetNewModelByWorkOrderID(workorderid);
|
|
11286
|
11281
|
|
|
|
@@ -11309,7 +11304,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
11309
|
11304
|
model_T_Bus_Feedback.F_IsFeedEnd = 1;
|
|
11310
|
11305
|
model_T_Bus_Feedback.F_State = 1;
|
|
11311
|
11306
|
model_T_Bus_Feedback.F_Type = 3;
|
|
11312
|
|
-
|
|
|
11307
|
+ model_T_Bus_Feedback.F_File = file;
|
|
|
11308
|
+
|
|
11313
|
11309
|
new BLL.T_Bus_Feedback().Add(model_T_Bus_Feedback);
|
|
11314
|
11310
|
#endregion
|
|
11315
|
11311
|
|