|
@@ -4308,7 +4308,9 @@ public class OrderController : BaseController
|
|
|
var orderPushTypes = _mapper.Map<List<OrderPushType>>(dto.OrderPushTypes);
|
|
|
await _orderPushTypeRepository.AddRangeAsync(orderPushTypes);
|
|
|
var pushTypes = dto.OrderPushTypes.Select(x => x.PushType);
|
|
|
- order.PushType = string.Join(",", pushTypes);
|
|
|
+ var pushTypeCode = dto.OrderPushTypes.Select(x => x.PushTypeCode);
|
|
|
+ order.PushTypeCode = string.Join(",", pushTypeCode);
|
|
|
+ order.PushType = string.Join(",", pushTypes);
|
|
|
}
|
|
|
|
|
|
if (dto.Tags != null && dto.Tags.Any())
|