optimize
wet 1 year ago
parent dc981f77bd
commit 331b9dfa0f

@ -469,14 +469,14 @@ namespace Myshipping.Application
{ {
entity.ETA = m.ETA; entity.ETA = m.ETA;
} }
if (m.ATD != null) //if (m.ATD != null)
{ //{
entity.ATD = m.ATD; // entity.ATD = m.ATD;
} //}
if (m.YgtETD != null) //if (m.YgtETD != null)
{ //{
entity.YgtETD = m.YgtETD; // entity.YgtETD = m.YgtETD;
} //}
await _vesselinfo.AsUpdateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync(); await _vesselinfo.AsUpdateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
} }
////根据船公司船名航次更新船期信息 ////根据船公司船名航次更新船期信息
@ -495,14 +495,14 @@ namespace Myshipping.Application
{ {
it.ETD = item.ETD; it.ETD = item.ETD;
if (it.ATD != item.ATD && item.ATD != null) //if (it.ATD != item.ATD && item.ATD != null)
{ //{
it.ATD = item.ATD; // it.ATD = item.ATD;
} //}
if (it.YgtETD != item.YgtETD && item.YgtETD != null) //if (it.YgtETD != item.YgtETD && item.YgtETD != null)
{ //{
it.YgtETD = item.YgtETD; // it.YgtETD = item.YgtETD;
} //}
await _rep.AsUpdateable(it).IgnoreColumns(it => new await _rep.AsUpdateable(it).IgnoreColumns(it => new
{ {
it.ParentId, it.ParentId,
@ -546,26 +546,26 @@ namespace Myshipping.Application
NewValue = item.ETD != null ? item.ETD.ToSqlValue() : null, NewValue = item.ETD != null ? item.ETD.ToSqlValue() : null,
}); });
} }
if (it.ATD != item.ATD) //if (it.ATD != item.ATD)
{ //{
await _bookinglogdetail.InsertReturnSnowflakeIdAsync(new BookingLogDetail // await _bookinglogdetail.InsertReturnSnowflakeIdAsync(new BookingLogDetail
{ // {
PId = bid, // PId = bid,
Field = "ATD", // Field = "ATD",
OldValue = it.ATD != null ? it.ATD.ToSqlValue() : null, // OldValue = it.ATD != null ? it.ATD.ToSqlValue() : null,
NewValue = item.ATD != null ? item.ATD.ToSqlValue() : null, // NewValue = item.ATD != null ? item.ATD.ToSqlValue() : null,
}); // });
} //}
if (it.YgtETD != item.YgtETD) //if (it.YgtETD != item.YgtETD)
{ //{
await _bookinglogdetail.InsertReturnSnowflakeIdAsync(new BookingLogDetail // await _bookinglogdetail.InsertReturnSnowflakeIdAsync(new BookingLogDetail
{ // {
PId = bid, // PId = bid,
Field = "ETD", // Field = "ETD",
OldValue = it.YgtETD != null ? it.YgtETD.ToSqlValue() : null, // OldValue = it.YgtETD != null ? it.YgtETD.ToSqlValue() : null,
NewValue = item.YgtETD != null ? item.YgtETD.ToSqlValue() : null, // NewValue = item.YgtETD != null ? item.YgtETD.ToSqlValue() : null,
}); // });
} //}
} }
} }

Loading…
Cancel
Save