diff --git a/src/api/wms/instockPrint/types.ts b/src/api/wms/instockPrint/types.ts index 5c13ec4..42f8c5e 100644 --- a/src/api/wms/instockPrint/types.ts +++ b/src/api/wms/instockPrint/types.ts @@ -91,6 +91,11 @@ export interface InstockPrintVO { */ agvStatus?: string; + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest?: string; + } export interface InstockPrintForm extends BaseEntity { @@ -185,6 +190,13 @@ export interface InstockPrintForm extends BaseEntity { * AGV状态(0待拾取 / 1运输中 / 2完成) */ agvStatus?: string; + + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest?: string; + + } export interface InstockPrintQuery extends PageQuery { @@ -282,6 +294,11 @@ export interface InstockPrintQuery extends PageQuery { */ agvStatus?: string; + /** + * 质检要求(0必检,1免检) + */ + inspectionRequest?: string; + /** * 日期范围参数 diff --git a/src/views/wms/instockOrderCopy/index.vue b/src/views/wms/instockOrderCopy/index.vue index 9c1055d..b9608ac 100644 --- a/src/views/wms/instockOrderCopy/index.vue +++ b/src/views/wms/instockOrderCopy/index.vue @@ -850,6 +850,11 @@ const submitForm = async() => { childrenTableInfoForm.value.batchCode = generateBatchCode(childrenTableInfoForm.value) await updateInstockDetail(childrenTableInfoForm.value) + // === 新增代码:刷新子表数据 === + await getChildrenTable({ + instockId: partntTableSelectCell.value.instockId, + auditStatus: partntTableSelectCell.value.auditStatus + }) getChildrenTable({instockId: partntTableSelectCell.value.instockId}) childrenTableInfoVisible.value = false } diff --git a/src/views/wms/instockPrint/index.vue b/src/views/wms/instockPrint/index.vue index 7957bc8..0b8c1af 100644 --- a/src/views/wms/instockPrint/index.vue +++ b/src/views/wms/instockPrint/index.vue @@ -127,6 +127,12 @@ + + + +