diff --git a/src/api/wms/outstockOrder/types.ts b/src/api/wms/outstockOrder/types.ts index d9ec1e1..216d4ff 100644 --- a/src/api/wms/outstockOrder/types.ts +++ b/src/api/wms/outstockOrder/types.ts @@ -67,7 +67,12 @@ export interface OutstockOrderVO { /** * 仓库名称 */ - warehouseName: string; + warehouseName?: string; + + /** + * 客户名称 + */ + customerName?: string; } @@ -138,7 +143,12 @@ export interface OutstockOrderForm extends BaseEntity { /** * 仓库名称 */ - warehouseName: string; + warehouseName?: string; + + /** + * 客户名称 + */ + customerName?: string; /** * 出库明细集合(一次性提交) @@ -214,7 +224,12 @@ export interface OutstockOrderQuery extends PageQuery { /** * 仓库名称 */ - warehouseName: string; + warehouseName?: string; + + /** + * 客户名称 + */ + customerName?: string; /** * 日期范围参数 diff --git a/src/views/wms/outstockOrderCopy/index.vue b/src/views/wms/outstockOrderCopy/index.vue index 3850049..717801d 100644 --- a/src/views/wms/outstockOrderCopy/index.vue +++ b/src/views/wms/outstockOrderCopy/index.vue @@ -78,7 +78,7 @@ - + +