Commit 63592621 authored by zp's avatar zp

Merge remote-tracking branch 'origin/20210426_not_net' into dev

parents 4a49d6e6 709f82bb
......@@ -1559,7 +1559,7 @@ public class ProductServiceImpl implements ProductService, Constant {
@Override
public List<ProductInfoVO> getProductListNotNet(List<String> ids) {
IfaImportedNonavFundExample example = new IfaImportedNonavFundExample();
example.createCriteria().andIdIn(ids);
example.createCriteria().andIdIn(ids).andDeleteTagEqualTo(0);
List<IfaImportedNonavFund> ifaImportedNonavFunds = this.ifaImportedNonavFundMapper.selectByExample(example);
if (CollUtil.isEmpty(ifaImportedNonavFunds)) {
return new ArrayList<>(0);
......@@ -1570,6 +1570,7 @@ public class ProductServiceImpl implements ProductService, Constant {
vo.setProductType(4);
vo.setFundName(ls.getFundName());
vo.setProductName(ls.getFundName());
vo.setFundFile(ls.getFundFile());
return vo;
}).collect(Collectors.toList());
}
......
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