|
|
@ -1748,7 +1748,7 @@ namespace Myshipping.Application
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it.ATD = item.ATD;
|
|
|
|
it.ATD = item.ATD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (item.ATA != it.StartATA)
|
|
|
|
if (it.StartATA != item.ATA)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
////添加booking日志
|
|
|
|
////添加booking日志
|
|
|
|
var bid = await _bookinglog.InsertReturnSnowflakeIdAsync(new BookingLog
|
|
|
|
var bid = await _bookinglog.InsertReturnSnowflakeIdAsync(new BookingLog
|
|
|
@ -1767,7 +1767,7 @@ namespace Myshipping.Application
|
|
|
|
OldValue = it.StartATA == null ? "" : it.StartATA.ToString(),
|
|
|
|
OldValue = it.StartATA == null ? "" : it.StartATA.ToString(),
|
|
|
|
NewValue = item.ATA == null ? "" : item.ATA.ToString(),
|
|
|
|
NewValue = item.ATA == null ? "" : item.ATA.ToString(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it.StartATA = item.ATD;
|
|
|
|
it.StartATA = item.ATA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await _rep.AsUpdateable(it).IgnoreColumns().ExecuteCommandAsync();
|
|
|
|
await _rep.AsUpdateable(it).IgnoreColumns().ExecuteCommandAsync();
|
|
|
|
|
|
|
|
|
|
|
|