diff --git a/src/api/wms/outstockOrder/types.ts b/src/api/wms/outstockOrder/types.ts index 0689a8d..d9ec1e1 100644 --- a/src/api/wms/outstockOrder/types.ts +++ b/src/api/wms/outstockOrder/types.ts @@ -1,3 +1,5 @@ +import type { OutstockDetailForm } from '@/api/wms/outstockDetail/types'; + export interface OutstockOrderVO { /** * 出库单 主键 @@ -62,6 +64,12 @@ export interface OutstockOrderVO { */ customerId: string | number; + /** + * 仓库名称 + */ + warehouseName: string; + + } export interface OutstockOrderForm extends BaseEntity { @@ -127,6 +135,16 @@ export interface OutstockOrderForm extends BaseEntity { */ customerId?: string | number; + /** + * 仓库名称 + */ + warehouseName: string; + + /** + * 出库明细集合(一次性提交) + */ + detailList?: OutstockDetailForm[]; + } export interface OutstockOrderQuery extends PageQuery { @@ -193,6 +211,11 @@ export interface OutstockOrderQuery extends PageQuery { */ customerId?: string | number; + /** + * 仓库名称 + */ + warehouseName: string; + /** * 日期范围参数 */ diff --git a/src/views/wms/outstockOrderCopy/index.vue b/src/views/wms/outstockOrderCopy/index.vue index 2fdf5ed..3850049 100644 --- a/src/views/wms/outstockOrderCopy/index.vue +++ b/src/views/wms/outstockOrderCopy/index.vue @@ -15,6 +15,10 @@ + + 搜索 + 重置 + @@ -44,8 +48,7 @@ @current-change="parentTableCellClick" @selection-change="selectionChange" ref="parentTableRef"> - - +