|
|
|
@ -4,21 +4,24 @@ import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.thread.ThreadUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.alibaba.excel.EasyExcel;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.glxp.udi.admin.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.udi.admin.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.udi.admin.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.udi.admin.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.udi.admin.constant.ConstantStatus;
|
|
|
|
|
import com.glxp.udi.admin.entity.product.StackOrder;
|
|
|
|
|
import com.glxp.udi.admin.req.info.DeleteRequest;
|
|
|
|
|
import com.glxp.udi.admin.req.product.ImportStackOrderRequest;
|
|
|
|
|
import com.glxp.udi.admin.req.product.StackOrderFilterRequest;
|
|
|
|
|
import com.glxp.udi.admin.req.product.StackUploadRequest;
|
|
|
|
|
import com.glxp.udi.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.udi.admin.res.product.StackOrderResponse;
|
|
|
|
|
import com.glxp.udi.admin.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.udi.admin.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.udi.admin.entity.product.StackOrder;
|
|
|
|
|
import com.glxp.udi.admin.req.product.StackOrderFilterRequest;
|
|
|
|
|
import com.glxp.udi.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.udi.admin.service.product.StackCodeService;
|
|
|
|
|
import com.glxp.udi.admin.service.product.StackOrderService;
|
|
|
|
|
import com.glxp.udi.admin.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.udi.admin.vo.StackCodeVo;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
@ -26,7 +29,13 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.servlet.ServletOutputStream;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
import java.io.BufferedInputStream;
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.net.URLEncoder;
|
|
|
|
|
import java.nio.file.Files;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
@ -56,7 +65,7 @@ public class StackOrderController {
|
|
|
|
|
BeanUtil.copyProperties(stackOrder, response);
|
|
|
|
|
|
|
|
|
|
//查询此垛的扫码数量
|
|
|
|
|
Long codeNum = stackOrderService.countCode(stackOrder.getOrderId());
|
|
|
|
|
Long codeNum = stackOrderService.countCode(stackOrder.getId().toString());
|
|
|
|
|
response.setCodeNum(codeNum);
|
|
|
|
|
responses.add(response);
|
|
|
|
|
});
|
|
|
|
@ -109,11 +118,11 @@ public class StackOrderController {
|
|
|
|
|
}
|
|
|
|
|
stackOrderEntity.setCustomerId(customerService.getCustomerId() + "");
|
|
|
|
|
|
|
|
|
|
String stackOrderId = stackOrderService.insertOrder(stackOrderEntity);
|
|
|
|
|
String orderId = stackOrderService.insertOrder(stackOrderEntity);
|
|
|
|
|
//绑定垛号
|
|
|
|
|
stackUploadRequest.getStackCodeEntityList().forEach(stackCode -> stackCode.setOrderIdFk(stackOrderId));
|
|
|
|
|
stackUploadRequest.getStackCodeEntityList().forEach(stackCode -> stackCode.setOrderIdFk(orderId));
|
|
|
|
|
stackCodeService.batchInsert(stackUploadRequest.getStackCodeEntityList());
|
|
|
|
|
return ResultVOUtils.success(stackOrderId);
|
|
|
|
|
return ResultVOUtils.success(orderId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -188,5 +197,47 @@ public class StackOrderController {
|
|
|
|
|
return ResultVOUtils.success("导入成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出垛码
|
|
|
|
|
*
|
|
|
|
|
* @param response
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/udims/stack/order/exportStackOrder")
|
|
|
|
|
public void exportStackOrder(@RequestParam String orderId, @RequestParam String customerId,
|
|
|
|
|
HttpServletResponse response) {
|
|
|
|
|
try {
|
|
|
|
|
//查询垛码
|
|
|
|
|
List<StackCodeVo> codeList = stackCodeService.getExportData(orderId);
|
|
|
|
|
if (CollUtil.isEmpty(codeList)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
stackOrderService.updateExportStatus(ConstantStatus.ORDER_EXPORT_ED, Integer.valueOf(orderId));
|
|
|
|
|
String fileName = codeList.get(0).getOrderId() + "码详情.xlsx";
|
|
|
|
|
//保存导出文件的文件夹
|
|
|
|
|
String folderPath = filePath + "/stack/order/export/" + customerId + "/";
|
|
|
|
|
File file = new File(folderPath);
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
|
file.mkdirs();
|
|
|
|
|
}
|
|
|
|
|
file = new File(folderPath + fileName);
|
|
|
|
|
EasyExcel.write(file, StackCodeVo.class).sheet().doWrite(codeList);
|
|
|
|
|
|
|
|
|
|
InputStream inputStream = new BufferedInputStream(Files.newInputStream(file.toPath()));
|
|
|
|
|
byte[] bytes = new byte[inputStream.available()];
|
|
|
|
|
inputStream.read(bytes);
|
|
|
|
|
inputStream.close();
|
|
|
|
|
|
|
|
|
|
response.reset();
|
|
|
|
|
response.setContentType("application/octet-stream");
|
|
|
|
|
response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "utf-8"));
|
|
|
|
|
ServletOutputStream os = response.getOutputStream();
|
|
|
|
|
os.write(bytes);
|
|
|
|
|
os.flush();
|
|
|
|
|
os.close();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("导出垛码数据异常", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|