|
@@ -187,6 +187,13 @@ namespace Hotline.Api.Controllers
|
|
|
order.ActualHandleTime = DateTime.Now;
|
|
|
order.ActualHandlerId = _sessionContext.UserId;
|
|
|
|
|
|
+ //自贡任务 579 设置撤销件后该工单需处理成中心归档非会签件
|
|
|
+ if (_appOptions.Value.IsZiGong)
|
|
|
+ {
|
|
|
+ order.CounterSignType = null;
|
|
|
+ order.FileOrgIsCenter = true;
|
|
|
+ }
|
|
|
+
|
|
|
await _orderRepository.Updateable(order).UpdateColumns(it => new
|
|
|
{
|
|
|
it.ActualHandleOrgName,
|
|
@@ -197,8 +204,10 @@ namespace Hotline.Api.Controllers
|
|
|
it.ActualHandleOrgAreaName,
|
|
|
it.ActualHandlerName,
|
|
|
it.ActualHandleTime,
|
|
|
- it.ActualHandlerId
|
|
|
- }).ExecuteCommandAsync();
|
|
|
+ it.ActualHandlerId,
|
|
|
+ it.CounterSignType,
|
|
|
+ it.FileOrgIsCenter
|
|
|
+ }).ExecuteCommandAsync(HttpContext.RequestAborted);
|
|
|
|
|
|
#endregion
|
|
|
|