Explorar el Código

Merge branch 'cd319' into dev

田爽 hace 7 meses
padre
commit
c08cf0b894
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Hotline.Application/Subscribers/InternalCapSubscriber.cs

+ 1 - 1
src/Hotline.Application/Subscribers/InternalCapSubscriber.cs

@@ -248,7 +248,7 @@ namespace Hotline.Application.Subscribers
 						if (delays.Any())
 						{
 							delay = delays.First();
-							await _orderDelayRepository.Updateable().SetColumns(x => new OrderDelay() { AutomaticDelayNum = x.AutomaticDelayNum + 1 })
+							await _orderDelayRepository.Updateable().SetColumns(x => new OrderDelay() { AutomaticDelayNum = x.AutomaticDelayNum + 1, ApplyDelayTime = DateTime.Now })
 								.Where(x => x.Id == delay.Id).ExecuteCommandAsync(cancellationToken);
 						}
 						else