Commit 10087ae7 by jianan

新单跟进v2

parent d81a9680
......@@ -565,10 +565,12 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
apiExpectedSpeciesListRequest.setProductLaunchBizId(productLaunchBizId);
Result<List<ApiExpectedSpeciesListResponse>> result = apiExpectedSpeciesFeignClient.list(apiExpectedSpeciesListRequest);
if (ObjectUtils.isNotEmpty(result.getData())) {
if (result != null && result.getCode() == 200) {
return result.getData();
} else {
log.error("查询预计出佣规格失败: productLaunchBizId={}", productLaunchBizId);
throw new BusinessException(ResultCode.FAIL.getCode(), "查询预计出佣规格失败");
}
return Collections.emptyList();
}
@Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment