|
|
@@ -5322,9 +5322,12 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
5322
|
5322
|
/// </summary>
|
|
5323
|
5323
|
/// <returns></returns>
|
|
5324
|
5324
|
//[Authority]
|
|
5325
|
|
- public ActionResult push_case_finish(string workoderid, string sldwdm)
|
|
|
5325
|
+ public ActionResult hbpush_case_finish(string workoderid, string sldwdm)
|
|
5326
|
5326
|
{
|
|
|
5327
|
+ try
|
|
|
5328
|
+ {
|
|
5327
|
5329
|
|
|
|
5330
|
+
|
|
5328
|
5331
|
|
|
5329
|
5332
|
Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workoderid);
|
|
5330
|
5333
|
if (modelT_Bus_WorkOrder == null)
|
|
|
@@ -5434,6 +5437,13 @@ namespace CallCenterApi.Interface.Controllers.workorder
|
|
5434
|
5437
|
};
|
|
5435
|
5438
|
return Content(obj.ToJson());
|
|
5436
|
5439
|
}
|
|
|
5440
|
+ }
|
|
|
5441
|
+ catch (Exception e)
|
|
|
5442
|
+ {
|
|
|
5443
|
+ LogFactory.GetLogger("推送结果的").Error(e.ToString());
|
|
|
5444
|
+ throw;
|
|
|
5445
|
+
|
|
|
5446
|
+ }
|
|
5437
|
5447
|
}
|
|
5438
|
5448
|
|
|
5439
|
5449
|
|