From afa22a5908ecae648c3fa20368f17305a2d5235a Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Tue, 5 Aug 2025 14:52:33 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E4=BC=98=E5=8C=96=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E8=AE=A2=E5=8D=95=E5=85=B3=E8=81=94=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增采购订单和生产订单选择功能 - 添加质检标识字段 - 实现入库数量校验 - 优化订单编号输入逻辑 - 调整物料列表加载方式 --- src/api/wms/instockDetail/types.ts | 32 +++++ src/views/wms/instockOrderCopy/index.vue | 150 +++++++++++++++++++++-- 2 files changed, 169 insertions(+), 13 deletions(-) diff --git a/src/api/wms/instockDetail/types.ts b/src/api/wms/instockDetail/types.ts index 39c8229..27d90a4 100644 --- a/src/api/wms/instockDetail/types.ts +++ b/src/api/wms/instockDetail/types.ts @@ -70,6 +70,18 @@ export interface InstockDetailVO { materialCategoryName?: string; + + /** + * 是否质检 + */ + isInspection: string; + + /** + * 分包数量 + */ + apportionQty: number; + + } export interface InstockDetailForm extends BaseEntity { @@ -140,6 +152,16 @@ export interface InstockDetailForm extends BaseEntity { materialCategoryName?: string; + /** + * 是否质检 + */ + isInspection?: string; + + /** + * 分包数量 + */ + apportionQty?: number; + } export interface InstockDetailQuery extends PageQuery { @@ -211,6 +233,16 @@ export interface InstockDetailQuery extends PageQuery { materialCategoryName?: string; + /** + * 是否质检 + */ + isInspection?: string; + + /** + * 分包数量 + */ + apportionQty?: number; + /** * 日期范围参数 */ diff --git a/src/views/wms/instockOrderCopy/index.vue b/src/views/wms/instockOrderCopy/index.vue index ee8f1d7..089d52f 100644 --- a/src/views/wms/instockOrderCopy/index.vue +++ b/src/views/wms/instockOrderCopy/index.vue @@ -126,6 +126,11 @@ + + + @@ -178,9 +183,22 @@ > - + + + + + + + + + 关联 + + + + + + +