Commit 97017f42 by 陶光胜

门店导出修改

parent 33a3b248
......@@ -271,9 +271,9 @@ public class StoreController extends DownloadUtils {
String path = RequestContext.getContext().getRequest().getSession().getServletContext().getRealPath("/excel/csv/collaborator/file/");
List<String> nameList = new ArrayList<>();
List<StoreListSourceVO> listSource = this.getStoreAllListSource(UserDetailUtils.getUserDetail().getEnterpriseId());
for(String s : storeExportQO.getFieldCodeList()){
if(listSource.contains(s)){
nameList.add(StoreESFieldsEnum.valueOf(s).getDesc());
for(StoreListSourceVO vo : listSource){
if(storeExportQO.getFieldCodeList().contains(vo.getValue())){
nameList.add(vo.getKey());
}
}
ExecutorPoolSingleton.getInstance().executeTask(new Runnable() {
......
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