|
|
|
@ -350,7 +350,13 @@ public partial class SeaExportService : ISeaExportService
|
|
|
|
|
//开启事务
|
|
|
|
|
await tenantDb.Ado.BeginTranAsync();
|
|
|
|
|
info.Note = "正常编辑";
|
|
|
|
|
await tenantDb.Updateable(info).EnableDiffLogEvent().ExecuteCommandAsync();//.IgnoreColumns(ignoreAllNullColumns: true)
|
|
|
|
|
await tenantDb.Updateable(info).IgnoreColumns(it => new
|
|
|
|
|
{
|
|
|
|
|
it.BusinessStatus,
|
|
|
|
|
it.BusinessStatusName,
|
|
|
|
|
it.IsVGM,it.IsBooking,it.IsLand,it.IsCustoms,
|
|
|
|
|
it.IsChangeETD,it.IsRefund
|
|
|
|
|
}).EnableDiffLogEvent().ExecuteCommandAsync();//.IgnoreColumns(ignoreAllNullColumns: true)
|
|
|
|
|
|
|
|
|
|
_logger.Info("执行完订单比对");
|
|
|
|
|
|
|
|
|
@ -483,6 +489,7 @@ public partial class SeaExportService : ISeaExportService
|
|
|
|
|
part.CBM = info.CBM;
|
|
|
|
|
part.TotalNo = info.TotalNo;
|
|
|
|
|
part.CntrNo = info.CntrNo;
|
|
|
|
|
//part.CntrTotal = info.CntrTotal;
|
|
|
|
|
await tenantDb.Updateable(part).ExecuteCommandAsync();
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|