Commit 31f31930 by guojuxing

删除协作人

parent 207de355
......@@ -129,9 +129,9 @@ public class ClerkController extends DownloadUtils {
//调用生成方法,获取reportId
Integer reportId = DataDownloadUtils.createDownloadReport(report);
String path = request.getSession().getServletContext().getRealPath("/excel/csv/collaborator/file/");
String path = request.getSession().getServletContext().getRealPath("/excel/csv/clerk/file/");
//CollaboratorListDTO是分页接口的返回类,不同业务场景对应不同的返回类
//是分页接口的返回类,不同业务场景对应不同的返回类
ExecutorPoolSingleton.getInstance().executeTask(() -> {
DownloadDataLoader<ClerkDTO> loader = new DownloadDataLoader<ClerkDTO>() {
@Override
......
......@@ -486,7 +486,7 @@ public class StoreController extends DownloadUtils {
if(response.isSuccess() && response.getResult() > 0){
int total = response.getResult().intValue();
Integer downloadReport = getDownloadReport(request, storeExportQO, total);
String path = RequestContext.getContext().getRequest().getSession().getServletContext().getRealPath("/excel/csv/collaborator/file/");
String path = RequestContext.getContext().getRequest().getSession().getServletContext().getRealPath("/excel/csv/store/file/");
List<String> nameList = new ArrayList<>();
List<StoreListSourceVO> listSource = this.getStoreAllListSource(UserDetailUtils.getUserDetail().getEnterpriseId());
Map<String, String> map = listSource.stream().collect(Collectors.toMap(e -> e.getValue(), e -> e.getKey()));
......
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