|
|
|
@ -377,6 +377,20 @@ namespace Myshipping.Application
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info.Main.SerialMsgInfo != null)
|
|
|
|
|
{
|
|
|
|
|
var storeInfo = new TaskStoreMsgInfo
|
|
|
|
|
{
|
|
|
|
|
PK_ID = IDGen.NextID().ToString(),
|
|
|
|
|
TASK_PKID = taskInfo.PK_ID,
|
|
|
|
|
MSG_JSON = info.Main.SerialMsgInfo.SerialMsg,
|
|
|
|
|
CreatedTime = taskInfo.CreatedTime,
|
|
|
|
|
UpdatedTime = taskInfo.CreatedTime,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await _taskStoreMsgInfoRepository.InsertAsync(storeInfo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.succ = true;
|
|
|
|
|
result.msg = "新增任务成功";
|
|
|
|
|
}
|
|
|
|
@ -3035,6 +3049,8 @@ namespace Myshipping.Application
|
|
|
|
|
|
|
|
|
|
TaskVgmCompareDto md = l.Adapt<TaskVgmCompareDto>();
|
|
|
|
|
|
|
|
|
|
md.compareDiffList = new List<string>();
|
|
|
|
|
|
|
|
|
|
if (currInfo != null)
|
|
|
|
|
{
|
|
|
|
|
if(l.SEALNO != currInfo.SEAL_NO)
|
|
|
|
@ -3089,6 +3105,8 @@ namespace Myshipping.Application
|
|
|
|
|
|
|
|
|
|
TaskVgmCompareDto md = l.Adapt<TaskVgmCompareDto>();
|
|
|
|
|
|
|
|
|
|
md.compareDiffList = new List<string>();
|
|
|
|
|
|
|
|
|
|
if (currInfo != null)
|
|
|
|
|
{
|
|
|
|
|
if (l.SEAL_NO != currInfo.SEALNO)
|
|
|
|
@ -3538,7 +3556,6 @@ namespace Myshipping.Application
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 发送截单EDI
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发送截单EDI
|
|
|
|
|