保存如果通知时,生成小票或VGM链接失败,不提示错误

optimize
wanghaomei 1 year ago
parent 01868eedf6
commit e9262bf23e

@ -922,7 +922,7 @@ namespace Myshipping.Application
}
}
await SaveLog(entity, mlist);
if (!string.IsNullOrEmpty(entity.MBLNO) && (entity.MBLNO != mlist.MBLNO||entity.YARDID!=mlist.YARDID||entity.CARRIERID!=mlist.CARRIERID))
if (!string.IsNullOrEmpty(entity.MBLNO) && (entity.MBLNO != mlist.MBLNO || entity.YARDID != mlist.YARDID || entity.CARRIERID != mlist.CARRIERID))
{
//更改提单号
await UpdateMblno(entity);
@ -2155,16 +2155,24 @@ namespace Myshipping.Application
//生成提箱小票
var allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "txxp_carrier_list").Select(x => x.Code).ToList();
if (allowCarrier.Contains(order.CARRIERID))
{
try
{
var txxpLink = await TxxpLink(input.BookingId);
}
catch { }
}
//vgm链接
allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "vgm_carrier_list").Select(x => x.Code).ToList();
if (allowCarrier.Contains(order.CARRIERID))
{
try
{
await VgmLink(input.BookingId);
}
catch { }
}
await SendLetterYard(input.BookingId);
return rtnId;

Loading…
Cancel
Save