|
|
|
@ -1,11 +1,14 @@
|
|
|
|
|
package com.glxp.udi.admin.controller.product;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.glxp.udi.admin.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.udi.admin.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.udi.admin.req.info.DeleteRequest;
|
|
|
|
|
import com.glxp.udi.admin.req.product.StackUploadRequest;
|
|
|
|
|
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;
|
|
|
|
@ -16,12 +19,12 @@ import com.glxp.udi.admin.service.product.StackOrderService;
|
|
|
|
|
import com.glxp.udi.admin.common.enums.ResultEnum;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
@RestController
|
|
|
|
@ -42,9 +45,20 @@ public class StackOrderController {
|
|
|
|
|
}
|
|
|
|
|
stackOrderFilterRequest.setCustomerId(customerService.getCustomerId() + "");
|
|
|
|
|
IPage<StackOrder> page = stackOrderService.filterList(stackOrderFilterRequest);
|
|
|
|
|
PageSimpleResponse<StackOrder> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
List<StackOrderResponse> responses = new ArrayList<>();
|
|
|
|
|
page.getRecords().forEach(stackOrder -> {
|
|
|
|
|
StackOrderResponse response = new StackOrderResponse();
|
|
|
|
|
BeanUtil.copyProperties(stackOrder, response);
|
|
|
|
|
|
|
|
|
|
//查询此垛的扫码数量
|
|
|
|
|
Long codeNum = stackOrderService.countCode(stackOrder.getOrderId());
|
|
|
|
|
response.setCodeNum(codeNum);
|
|
|
|
|
responses.add(response);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
PageSimpleResponse<StackOrderResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(page.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(page.getRecords());
|
|
|
|
|
pageSimpleResponse.setList(responses);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -97,4 +111,26 @@ public class StackOrderController {
|
|
|
|
|
return ResultVOUtils.success(stackOrderId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导入excel文件建垛
|
|
|
|
|
*
|
|
|
|
|
* @param file
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udims/stack/order/importStackOrder")
|
|
|
|
|
public BaseResponse importStackOrder(@RequestParam("file") MultipartFile file) {
|
|
|
|
|
if (file.isEmpty()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传文件不能为空");
|
|
|
|
|
}
|
|
|
|
|
//保存文件
|
|
|
|
|
String fileName = file.getOriginalFilename();
|
|
|
|
|
String fileType = fileName.substring(fileName.lastIndexOf("."));
|
|
|
|
|
//文件类型判断
|
|
|
|
|
if (StrUtil.isBlank(fileType) || (!fileType.equals(".xls") || !fileType.equals(".xlsx"))) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "只能上传 xlx 或 xlsx 格式文件");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|