Sfoglia il codice sorgente

Merge branch 'release' of http://110.188.24.182:10023/Fengwo/hotline into release

田爽 6 mesi fa
parent
commit
eef7f7727c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/Hotline/Orders/OrderVisitDomainService.cs

+ 1 - 1
src/Hotline/Orders/OrderVisitDomainService.cs

@@ -47,7 +47,7 @@ public class OrderVisitDomainService : IOrderVisitDomainService, IScopeDependenc
     public async Task UpdateSmsReplyAsync(MessageDto data)
     {
         _logger.LogInformation($"UpdateSmsReplyAsync 收到通知: {data.ToJson()}");
-        if (data.IsSmsReply == false || data.SmsReplyContent.IsNullOrEmpty() || data.ExternalId.IsNullOrEmpty()) return;
+        if (data.IsSmsReply == false || data.SmsReplyContent.IsNullOrEmpty()) return;
 
         var orderVisits = await _orderVisitRepository.Queryable()
             .Includes(m => m.Order)