Commit b89a3c7e authored by wei's avatar wei 🎱

导出供应商列表数据

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