qinchaoyue il y a 7 mois
Parent
commit
e2c47c4d0c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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