|
|
|
@ -564,7 +564,12 @@ namespace Myshipping.Application
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray());
|
|
|
|
|
|
|
|
|
|
var ids = order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray();
|
|
|
|
|
if (ids.Count()>0) {
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(ids);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -1790,7 +1795,11 @@ namespace Myshipping.Application
|
|
|
|
|
}
|
|
|
|
|
if (issend)
|
|
|
|
|
{
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray());
|
|
|
|
|
var ids = order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray();
|
|
|
|
|
if (ids.Count() > 0)
|
|
|
|
|
{
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(ids);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -1964,12 +1973,14 @@ namespace Myshipping.Application
|
|
|
|
|
issend = true;
|
|
|
|
|
await _rep.AsUpdateable(it).IgnoreColumns().ExecuteCommandAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (issend)
|
|
|
|
|
{
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray());
|
|
|
|
|
var ids = order.Where(x => x.ParentId == 0).Select(x => x.Id).ToArray();
|
|
|
|
|
if (ids.Count() > 0)
|
|
|
|
|
{
|
|
|
|
|
await _bookingorderservice.SendBookingOrder(ids);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|