|
|
@ -12846,6 +12846,13 @@ namespace Myshipping.Application
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNOINNER));
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNOINNER));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(dto.VOYNO))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
newOrder.VOYNO = dto.VOYNO;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNO));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (dto.ETD.HasValue)
|
|
|
|
if (dto.ETD.HasValue)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
newOrder.ETD = dto.ETD;
|
|
|
|
newOrder.ETD = dto.ETD;
|
|
|
@ -12912,6 +12919,13 @@ namespace Myshipping.Application
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNOINNER));
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNOINNER));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (dto.enforceUpdateField.Any(a => a.Equals("VOYNO", StringComparison.OrdinalIgnoreCase)) && string.IsNullOrWhiteSpace(dto.VOYNO))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
newOrder.VOYNO = dto.VOYNO;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateColumnList.Add(nameof(BookingOrder.VOYNO));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (dto.enforceUpdateField.Any(a => a.Equals("PORTDISCHARGEID", StringComparison.OrdinalIgnoreCase)) && string.IsNullOrWhiteSpace(dto.PORTDISCHARGEID))
|
|
|
|
if (dto.enforceUpdateField.Any(a => a.Equals("PORTDISCHARGEID", StringComparison.OrdinalIgnoreCase)) && string.IsNullOrWhiteSpace(dto.PORTDISCHARGEID))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
newOrder.PORTDISCHARGEID = dto.PORTDISCHARGEID;
|
|
|
|
newOrder.PORTDISCHARGEID = dto.PORTDISCHARGEID;
|
|
|
|