Przeglądaj źródła

居委退回审核增加附件

duhongyu 4 lat temu
rodzic
commit
988bc04e45

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

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

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

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