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

optimize
wanghaomei 1 year ago
parent 01868eedf6
commit e9262bf23e

@ -922,7 +922,7 @@ namespace Myshipping.Application
} }
} }
await SaveLog(entity, mlist); 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); await UpdateMblno(entity);
@ -2156,14 +2156,22 @@ namespace Myshipping.Application
var allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "txxp_carrier_list").Select(x => x.Code).ToList(); var allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "txxp_carrier_list").Select(x => x.Code).ToList();
if (allowCarrier.Contains(order.CARRIERID)) if (allowCarrier.Contains(order.CARRIERID))
{ {
var txxpLink = await TxxpLink(input.BookingId); try
{
var txxpLink = await TxxpLink(input.BookingId);
}
catch { }
} }
//vgm链接 //vgm链接
allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "vgm_carrier_list").Select(x => x.Code).ToList(); allowCarrier = _cache.GetAllDictData().Result.Where(x => x.TypeCode == "vgm_carrier_list").Select(x => x.Code).ToList();
if (allowCarrier.Contains(order.CARRIERID)) if (allowCarrier.Contains(order.CARRIERID))
{ {
await VgmLink(input.BookingId); try
{
await VgmLink(input.BookingId);
}
catch { }
} }
await SendLetterYard(input.BookingId); await SendLetterYard(input.BookingId);

Loading…
Cancel
Save