Explorar o código

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

田爽 hai 6 meses
pai
achega
eef7f7727c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)