Commit b89a3c7e authored by wei's avatar wei 🎱

导出供应商列表数据

parent 8da23d30
......@@ -171,7 +171,9 @@ public class ExtSupplierManageServiceImpl<V extends ExtSupplierManageVO> impleme
Map<String, DictDataVO> qualificationsContentMap = this.getDictDataVO(Constants.QUALIFICATIONS_CONTENT);
DxPageImpl<V> recursion = this.findRecursion(searchQueryCondition);
List<ExtSupplierManageVO> content = (List<ExtSupplierManageVO>) recursion.getContent();
if (CollectionUtils.isNotEmpty(content)) {
if (CollectionUtils.isEmpty(content)) {
return list;
}
for (ExtSupplierManageVO extSupplierManageVO : content) {
ExtSupplierVO extSupplierVO = new ExtSupplierVO();
BeanUtils.copyProperties(extSupplierManageVO, extSupplierVO);
......@@ -211,7 +213,6 @@ public class ExtSupplierManageServiceImpl<V extends ExtSupplierManageVO> impleme
}
list.add(extSupplierVO);
}
}
return list;
}
}
......
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