|
|
|
@ -2705,7 +2705,7 @@ namespace Myshipping.Application
|
|
|
|
|
#region 入港时间
|
|
|
|
|
if (item.Status == "入港")
|
|
|
|
|
{
|
|
|
|
|
var order = _rep.AsQueryable().Filter(null, true).Where(x => x.Id == item.BookingId).ToList().FirstOrDefault();
|
|
|
|
|
var order = _rep.AsQueryable().Filter(null, true).First(x => x.Id == item.BookingId);
|
|
|
|
|
var goodconfig = _goodsStatusConfig.AsQueryable().Filter(null, true).Where(x => x.CreatedUserId == order.CreatedUserId && x.SystemCode == "YRG").ToList().FirstOrDefault();
|
|
|
|
|
if (goodconfig == null)
|
|
|
|
|
{
|
|
|
|
|