|
|
|
@ -133,9 +133,9 @@ namespace Myshipping.Application
|
|
|
|
|
|
|
|
|
|
var orderInfo = _bookingOrderRepository.AsQueryable().First(x => x.Id == long.Parse(bookingId));
|
|
|
|
|
|
|
|
|
|
if(orderInfo != null)
|
|
|
|
|
if (orderInfo != null)
|
|
|
|
|
{
|
|
|
|
|
if(compareResult.succ)
|
|
|
|
|
if (compareResult.succ)
|
|
|
|
|
{
|
|
|
|
|
if (compareResult.extra.IsExistsDiff)
|
|
|
|
|
{
|
|
|
|
@ -155,7 +155,8 @@ namespace Myshipping.Application
|
|
|
|
|
orderInfo.LstShipOrderCompareRltName = "无动态";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
orderInfo.LstShipOrderCompareId = compareResult.extra.TaskCompareId;
|
|
|
|
|
if (compareResult.extra != null)
|
|
|
|
|
orderInfo.LstShipOrderCompareId = compareResult.extra.TaskCompareId;
|
|
|
|
|
|
|
|
|
|
//更新
|
|
|
|
|
await _bookingOrderRepository.AsUpdateable(orderInfo).UpdateColumns(it => new
|
|
|
|
|