|
@@ -1414,6 +1414,17 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
_capPublisher.Publish(EventNames.HotlineLeaderSMS, new PublishLeaderSMSDto(order.Id, dic.DicDataName, dic.DicDataValue));
|
|
_capPublisher.Publish(EventNames.HotlineLeaderSMS, new PublishLeaderSMSDto(order.Id, dic.DicDataName, dic.DicDataValue));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (dto.Data.DuplicateId.NotNullOrEmpty())
|
|
|
|
+ {
|
|
|
|
+ if (order.DuplicateIds != null)
|
|
|
|
+ {
|
|
|
|
+ order.DuplicateIds.Add(dto.Data.DuplicateId);
|
|
|
|
+ }else
|
|
|
|
+ {
|
|
|
|
+ order.DuplicateIds = new List<string>() { dto.Data.DuplicateId };
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
_mapper.Map(dto.Data, order);
|
|
_mapper.Map(dto.Data, order);
|
|
|
|
|
|
if (expiredTimeConfig is not null)
|
|
if (expiredTimeConfig is not null)
|
|
@@ -7302,4 +7313,4 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
}
|
|
}
|
|
#endregion
|
|
#endregion
|
|
#endregion
|
|
#endregion
|
|
-}
|
|
|
|
|
|
+}
|