|
|
@ -386,6 +386,7 @@ namespace Myshipping.Application
|
|
|
|
outModel.LogList = _repStatuslog.AsQueryable().Where(x => x.BookingId == entity.Id && x.Category == StaLogCateAudit).OrderByDescending(x => x.OpTime).ToList().Adapt<List<BookingCustomerLogDto>>();
|
|
|
|
outModel.LogList = _repStatuslog.AsQueryable().Where(x => x.BookingId == entity.Id && x.Category == StaLogCateAudit).OrderByDescending(x => x.OpTime).ToList().Adapt<List<BookingCustomerLogDto>>();
|
|
|
|
outModel.ServiceItemList = _repServiceItem.AsQueryable().Where(x => x.BookingId == entity.Id).ToList().Adapt<List<BookingServiceItemCustomerDto>>();
|
|
|
|
outModel.ServiceItemList = _repServiceItem.AsQueryable().Where(x => x.BookingId == entity.Id).ToList().Adapt<List<BookingServiceItemCustomerDto>>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return outModel;
|
|
|
|
return outModel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1908,6 +1909,19 @@ namespace Myshipping.Application
|
|
|
|
ins = true;
|
|
|
|
ins = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//订舱账号、密码
|
|
|
|
|
|
|
|
var jobj = new JObject();
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(custOrder.ExtendData))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
jobj = JObject.Parse(custOrder.ExtendData);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var jobjBookAcc=new JObject();
|
|
|
|
|
|
|
|
jobjBookAcc["Account"] = input.BOOKINGACCOUNT;
|
|
|
|
|
|
|
|
jobjBookAcc["Password"] = input.BOOKINGPASSWORD;
|
|
|
|
|
|
|
|
jobj["BookingAccount"] = jobjBookAcc;
|
|
|
|
|
|
|
|
custOrder.ExtendData = jobjBookAcc.ToJsonString();
|
|
|
|
|
|
|
|
|
|
|
|
var ctns = input.CtnList.Adapt<List<BookingCtn>>();
|
|
|
|
var ctns = input.CtnList.Adapt<List<BookingCtn>>();
|
|
|
|
var servList = input.ServiceItemList.Adapt<List<BookingServiceItem>>();
|
|
|
|
var servList = input.ServiceItemList.Adapt<List<BookingServiceItem>>();
|
|
|
|
|
|
|
|
|
|
|
|