From 1621d3f5b1baecb98f395f6bfa8991b6488b3577 Mon Sep 17 00:00:00 2001 From: Yxq <2290299376@qq.com> Date: Wed, 24 Dec 2025 10:35:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=89=B9=E9=87=8F=E7=9B=98?= =?UTF-8?q?=E7=82=B9=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev_wms_client/src/layout/batchInventory.vue | 718 ++++++++++++++++++ .../request/wms/BatchInventoryRequest.java | 23 + 2 files changed, 741 insertions(+) create mode 100644 dev_wms_client/src/layout/batchInventory.vue create mode 100644 dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/BatchInventoryRequest.java diff --git a/dev_wms_client/src/layout/batchInventory.vue b/dev_wms_client/src/layout/batchInventory.vue new file mode 100644 index 0000000..0a9946a --- /dev/null +++ b/dev_wms_client/src/layout/batchInventory.vue @@ -0,0 +1,718 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + 查询库存 + + + 清除输入 + + + 导出Excel + + + 批量盘点({{ selectedRows.length }}) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 选中数据概览: + + 料号种类: + {{ [...new Set(selectedRows.map(item => item.goodsId))].length }} 种 + + + 箱号数量: + {{ selectedRows.length }} 个 + + + + + 选中数据详情: + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/BatchInventoryRequest.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/BatchInventoryRequest.java new file mode 100644 index 0000000..30aaa37 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/BatchInventoryRequest.java @@ -0,0 +1,23 @@ +// 在com.wms_main.model.dto.request.wms包下创建 +package com.wms_main.model.dto.request.wms; + +import lombok.Data; +import java.util.List; + +@Data +public class BatchInventoryRequest { + private List items; + private String invUser; // 盘点用户 + private String invStand; // 盘点站台 + + @Data + public static class InventoryItem { + private String goodsId; + private String vehicleId; + private String specialStock; + private String specialStockNo; + private String specialStockItemNo; + private String batchNo; + } +} +