|
|
@ -2,6 +2,7 @@ package com.yxt.yyth.biz.lpkreserveorder; |
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
import cn.hutool.core.date.DateTime; |
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.yxt.common.base.config.component.FileUploadComponent; |
|
|
@ -28,6 +29,7 @@ import com.yxt.yyth.biz.lpkgoods.LpkGoodsService; |
|
|
|
import com.yxt.yyth.biz.lpkreserveordergoods.LpkReserveOrderGoodsService; |
|
|
|
import com.yxt.yyth.biz.lpkstore.LpkStoreService; |
|
|
|
import org.apache.commons.collections.list.AbstractLinkedList; |
|
|
|
import org.apache.poi.ss.formula.functions.T; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
@ -191,8 +193,7 @@ public class LpkReserveOrderService extends MybatisBaseService<LpkReserveOrderMa |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean exportExcel(LpkReserveOrderQuery query) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
public void exportExcel(LpkReserveOrderQuery query) { |
|
|
|
QueryWrapper<LpkReserveOrderQuery> qw = new QueryWrapper<>(); |
|
|
|
qw.eq("1", "1"); |
|
|
|
if (StringUtils.isNotBlank(query.getStore())) { |
|
|
@ -256,6 +257,5 @@ public class LpkReserveOrderService extends MybatisBaseService<LpkReserveOrderMa |
|
|
|
// }
|
|
|
|
//导出预约订单信息列表
|
|
|
|
ExportExcelUtils.export(fileNameURL, exportList, ReserveOrderExport.class, response); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
|
} |
|
|
|