소스 검색

非空异常处理

ingredientmanage
zhaoy 5 달 전
부모
커밋
d80cf370cc
1개의 변경된 파일9개의 추가작업 그리고 7개의 파일을 삭제
  1. +9
    -7
      BPA.SAAS.Manage.Application/DataBase/Services/GoodsService.cs

+ 9
- 7
BPA.SAAS.Manage.Application/DataBase/Services/GoodsService.cs 파일 보기

@@ -462,15 +462,17 @@ namespace BPA.SAAS.Manage.Application.DataBase.Services
GoodsUintName = SqlFunc.Subqueryable<BPA_GoodsUint>().Where(s => s.Id == a.GoodsUintId && s.IsDeleted == 0).Select(s => s.Name),
//GoodsAttributeList = new List<GoodsAttributeList>()
}).FirstAsync();
if (!res.IsAttrubute)
if (res!=null)
{
res.GoodsAttributeList = await _goodsAttributeService.GetByNameAttribute("默认属性");
}
else
{
res.GoodsAttributeList = await _goodsAttributeService.GetByGoodsIdAttribute(res.Id);
if (!res.IsAttrubute)
{
res.GoodsAttributeList = await _goodsAttributeService.GetByNameAttribute("默认属性");
}
else
{
res.GoodsAttributeList = await _goodsAttributeService.GetByGoodsIdAttribute(res.Id);
}
}

return res;
}
public async Task<bool> ExportGood(IFormFile file)


불러오는 중...
취소
저장