From a46836d7be81a282b1f5e6c2af4a8a2dbf8aa331 Mon Sep 17 00:00:00 2001 From: judy <278197488@qq.com> Date: Thu, 29 Aug 2024 09:31:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=85=E7=9B=98=E7=82=B9=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/shkj/wms/bo/BusinStockInvQueryBo.java | 71 +++------------ .../business/BusinStockInvController.java | 2 +- .../java/com/shkj/wms/vo/BusinStockInvVo.java | 79 +++-------------- .../mapper/wms/BusinStockInvMapper.xml | 86 +++---------------- 4 files changed, 39 insertions(+), 199 deletions(-) diff --git a/shkj-wms/src/main/java/com/shkj/wms/bo/BusinStockInvQueryBo.java b/shkj-wms/src/main/java/com/shkj/wms/bo/BusinStockInvQueryBo.java index 5be6bf0..8905d6f 100644 --- a/shkj-wms/src/main/java/com/shkj/wms/bo/BusinStockInvQueryBo.java +++ b/shkj-wms/src/main/java/com/shkj/wms/bo/BusinStockInvQueryBo.java @@ -42,80 +42,29 @@ public class BusinStockInvQueryBo extends BaseEntity { /** - * 盘点单号 + * 巷道 */ - private String invOrderNo; + private String tunnel; /** - * 盘点方式 明盘 open 盲盘 close + * 排 */ - private String invWay; - /** - * 仓库库位code - */ - private String locationCode; + private String locationRow; /** - * 盘点类型 - */ - private String invType; - /** - * 物料Id - */ - private String goodId; - /** - * 物料编码 - */ - private String goodCode; - /** - * 单位 - */ - @Excel(name = "单位", width = 20) - private String unit; - /** - * 库存状态(合格/不合格/待检/退货) - */ - private String status; - /** - * 差异状态 - */ - private String diffStatus; - /** - * 前端不需要传递 + * 列 */ - private String invStatus; - /** - * 托盘号 - */ - private String containerCode; - /** - * 订单类型 9:盘点出库 10:盘点入库 - */ - private String orderType; + private String locationColumn; /** - * 前端不需要传递 - */ - private String haveDifference; - /** - * 执行盘点时间 - */ - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Date execTime; - /** - * 完成盘点时间 + * 层 */ - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Date endTime; + private String layer; /** - * 物料Id集合 - */ - private List goodIdsList; - /** - * 是否盘点中 1:是 + * 前端不需要传递 */ - private String inProgress; + private String invStatus; } diff --git a/shkj-wms/src/main/java/com/shkj/wms/controller/business/BusinStockInvController.java b/shkj-wms/src/main/java/com/shkj/wms/controller/business/BusinStockInvController.java index 67da76f..fa257e3 100644 --- a/shkj-wms/src/main/java/com/shkj/wms/controller/business/BusinStockInvController.java +++ b/shkj-wms/src/main/java/com/shkj/wms/controller/business/BusinStockInvController.java @@ -47,7 +47,7 @@ public class BusinStockInvController extends BaseController { /** - * 查询盘点计划列表 + * 查询待盘点计划列表 */ @GetMapping("/list") public TableDataInfo list(BusinStockInvQueryBo bo) { diff --git a/shkj-wms/src/main/java/com/shkj/wms/vo/BusinStockInvVo.java b/shkj-wms/src/main/java/com/shkj/wms/vo/BusinStockInvVo.java index 9731045..3e6dcdb 100644 --- a/shkj-wms/src/main/java/com/shkj/wms/vo/BusinStockInvVo.java +++ b/shkj-wms/src/main/java/com/shkj/wms/vo/BusinStockInvVo.java @@ -14,95 +14,44 @@ import java.math.BigDecimal; * @date 2022-06-10 */ @Data -public class BusinStockInvVo extends BusinStockInv { +public class BusinStockInvVo { private static final long serialVersionUID = 1L; /** - * 货主名称 + * 盘点单号 */ - @Excel(name = "主键", sort = 1, width = 20) - private String consignorName; + private Long invId; /** - * 货主编码 + * 货位ID */ - @Excel(name = "主键", sort = 0, width = 20) - private String consignorCode; + private Long locationId; - - /** - * 实际数量 - */ - private BigDecimal actualQty; - /** - * 出数量 - */ - private BigDecimal outQty; - /** - * 物料编码 - */ - private String goodNo; /** - * 物料名称 - */ - private String goodName; - /** - * 规格 - */ - private String specifications; - /** - * 批号 - */ - private String batchNo; - /** - * 单位 - */ - private String unit; - - /** - * 货位code + * 货位编号 */ private String locationCode; /** - * 库区 - */ - private String areaCode; - /** - * 托盘代码 + * 车型 */ - private String containerCode; - /** - * 货位分组 - */ - private String locationGroup; - + private String vehicheModel; /** - * 库区名 + * 颜色 */ - private String areaName; + private String color; /** - * 库别 + * 货位状态 */ - private String storageCode; + private String locationStatus; /** - * 库别名称 - */ - private String storageName; - - - /** - * 货位名称 - */ - private String locationName; - /** - * 库存Id + * 保险杠数量 */ - private String stockId; + private String goodQty; diff --git a/shkj-wms/src/main/resources/mapper/wms/BusinStockInvMapper.xml b/shkj-wms/src/main/resources/mapper/wms/BusinStockInvMapper.xml index 60d2bdc..aafad78 100644 --- a/shkj-wms/src/main/resources/mapper/wms/BusinStockInvMapper.xml +++ b/shkj-wms/src/main/resources/mapper/wms/BusinStockInvMapper.xml @@ -39,87 +39,29 @@