|
@@ -69,7 +69,7 @@ public class OrderDomainService : IOrderDomainService, IScopeDependency
|
|
|
/// 工单办理(每个节点都会触发)
|
|
|
/// </summary>
|
|
|
public async Task ManageFlowNextAsync(FlowAssignMode assignMode,
|
|
|
- bool isCountersignEnd, bool isCountersignStart,
|
|
|
+ bool isCountersignStart, bool isCountersignEnd,
|
|
|
string? orderId, DateTime? currentStepTime, string? CurrentStepName, DateTime expiredTime,
|
|
|
CancellationToken cancellationToken)
|
|
|
{
|
|
@@ -84,8 +84,9 @@ public class OrderDomainService : IOrderDomainService, IScopeDependency
|
|
|
|
|
|
//更新流转信息
|
|
|
order.ManageFlow(isCountersignStart, isCountersignEnd, currentStepTime, CurrentStepName, expiredTime);
|
|
|
-
|
|
|
+ _logger.LogInformation($"更新流转信息 over, order.AssignUserIds: {string.Join(',', order.AssignUserIds)}");
|
|
|
await _orderRepository.UpdateAsync(order, cancellationToken);
|
|
|
+ _logger.LogInformation($"update db over, order.AssignUserIds: {string.Join(',', order.AssignUserIds)}");
|
|
|
|
|
|
//todo push msg to next step handler
|
|
|
}
|