Przeglądaj źródła

居委退回审核增加附件

duhongyu 4 lat temu
rodzic
commit
988bc04e45

+ 3 - 7
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/workorder/WorkOrderController.cs

@@ -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
 

+ 1 - 1
CallCenterApi/CallCenterApi.Model/T_Bus_WorkOrder.cs

@@ -243,7 +243,7 @@ namespace CallCenterApi.Model
243 243
             get { return _f_workstate; }
244 244
         }
245 245
         /// <summary>
246
-        /// 提醒天数
246
+        /// 结案提交重办
247 247
         /// </summary>
248 248
         public int? F_RemindDay
249 249
         {