vgm直发报错问题

optimize
wanghaomei 2 years ago
parent e413959eae
commit 3e582baff3

@ -475,7 +475,8 @@ namespace Myshipping.Application
var entity = input.Adapt<BookingOrder>();
if (input.Id == 0)
{
if (string.IsNullOrEmpty( entity.VOYNO)) {
if (string.IsNullOrEmpty(entity.VOYNO))
{
entity.VOYNO = entity.VOYNOINNER;
}
@ -3468,6 +3469,11 @@ namespace Myshipping.Application
//船公司网站账号
var carrWebAccMap = _cache.GetAllDictData().Result.FirstOrDefault(x => x.TypeCode == "carrier_web_account_mapping" && x.Code == order.CARRIERID);
if (carrWebAccMap == null)
{
throw Oops.Bah("不支持的船公司或账号映射未配置");
}
var webacc = _webAccountConfig.GetAccountConfig(carrWebAccMap.Value, UserManager.UserId).Result;
if (webacc == null)
{

Loading…
Cancel
Save