|
@@ -2453,7 +2453,7 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
else
|
|
else
|
|
order.FileJson = new List<Share.Dtos.File.FileJson>();
|
|
order.FileJson = new List<Share.Dtos.File.FileJson>();
|
|
order.ReTransactNum++;
|
|
order.ReTransactNum++;
|
|
- await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
|
|
+ //await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
|
|
if (orderExtension is not null)
|
|
if (orderExtension is not null)
|
|
{
|
|
{
|
|
@@ -2477,7 +2477,7 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
}
|
|
}
|
|
|
|
|
|
_mapper.Map(expiredTimeConfig, order);
|
|
_mapper.Map(expiredTimeConfig, order);
|
|
- await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
|
|
+ //await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
|
|
//特提(撤回至发起)
|
|
//特提(撤回至发起)
|
|
if (!string.IsNullOrEmpty(order.WorkflowId))
|
|
if (!string.IsNullOrEmpty(order.WorkflowId))
|
|
@@ -2494,7 +2494,7 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
{
|
|
{
|
|
order.Status = EOrderStatus.WaitForAccept;
|
|
order.Status = EOrderStatus.WaitForAccept;
|
|
}
|
|
}
|
|
- await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
|
|
+ //await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
//处理回访和发布信息
|
|
//处理回访和发布信息
|
|
|
|
|
|
var publish = await _orderPublishRepository.GetAsync(x => x.OrderId == order.Id);
|
|
var publish = await _orderPublishRepository.GetAsync(x => x.OrderId == order.Id);
|
|
@@ -2520,8 +2520,9 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
- //await _workflowDomainService.RecallToStartStepAsync(order.WorkflowId, "省工单重派", current, cancellationToken);
|
|
|
|
- }
|
|
|
|
|
|
+ await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
|
+ //await _workflowDomainService.RecallToStartStepAsync(order.WorkflowId, "省工单重派", current, cancellationToken);
|
|
|
|
+ }
|
|
return _mapper.Map<AddOrderResponse>(order);
|
|
return _mapper.Map<AddOrderResponse>(order);
|
|
}
|
|
}
|
|
|
|
|