diff --git a/src/api/wms/instockRecord/types.ts b/src/api/wms/instockRecord/types.ts index be457f7..5658e69 100644 --- a/src/api/wms/instockRecord/types.ts +++ b/src/api/wms/instockRecord/types.ts @@ -72,6 +72,11 @@ export interface InstockRecordVO { */ updateTime: string; + /** + * 特殊标识(0调拨,1退库) + */ + specialType: string | number; + } export interface InstockRecordForm extends BaseEntity { @@ -142,6 +147,11 @@ export interface InstockRecordForm extends BaseEntity { */ erpSynchronousQty?: number; + /** + * 特殊标识(0调拨,1退库) + */ + specialType?: string | number; + } export interface InstockRecordQuery extends PageQuery { @@ -198,6 +208,11 @@ export interface InstockRecordQuery extends PageQuery { */ erpSynchronousQty?: number; + /** + * 特殊标识(0调拨,1退库) + */ + specialType?: string | number; + /** * 日期范围参数 */ diff --git a/src/api/wms/outstockRecord/types.ts b/src/api/wms/outstockRecord/types.ts index 1807bb4..aa29c28 100644 --- a/src/api/wms/outstockRecord/types.ts +++ b/src/api/wms/outstockRecord/types.ts @@ -62,6 +62,12 @@ export interface OutstockRecordVO { */ erpSynchronousQty: number; + + /** + * 特殊标识(0调拨,1退库) + */ + specialType: string | number; + } export interface OutstockRecordForm extends BaseEntity { @@ -122,6 +128,12 @@ export interface OutstockRecordForm extends BaseEntity { */ erpSynchronousQty?: number; + + /** + * 特殊标识(0调拨,1退库) + */ + specialType?: string | number; + } export interface OutstockRecordQuery extends PageQuery { @@ -148,6 +160,11 @@ export interface OutstockRecordQuery extends PageQuery { */ erpSynchronousStatus?: string; + /** + * 特殊标识(0调拨,1退库) + */ + specialType?: string | number; + /** * 日期范围参数 */ diff --git a/src/api/wms/wmsCheckTask/types.ts b/src/api/wms/wmsCheckTask/types.ts index b8ffcfc..ca1fce6 100644 --- a/src/api/wms/wmsCheckTask/types.ts +++ b/src/api/wms/wmsCheckTask/types.ts @@ -59,6 +59,16 @@ export interface WmsCheckTaskVO { */ executeMonth?: number; + /** + * 物料类型名称 + */ + matrialTypeName: string; + + /** + * 仓库名称 + */ + warehouseName: string; + } export interface WmsCheckTaskForm extends BaseEntity { @@ -113,6 +123,16 @@ export interface WmsCheckTaskForm extends BaseEntity { executeMonth?: number; + /** + * 物料类型名称 + */ + matrialTypeName?: string; + + /** + * 仓库名称 + */ + warehouseName?: string; + } export interface WmsCheckTaskQuery extends PageQuery { @@ -162,6 +182,16 @@ export interface WmsCheckTaskQuery extends PageQuery { */ wmsCheckTaskFrequency?: string; + /** + * 物料类型名称 + */ + matrialTypeName?: string; + + /** + * 仓库名称 + */ + warehouseName?: string; + /** * 日期范围参数 */ diff --git a/src/views/wms/instockOrderCopy/index.vue b/src/views/wms/instockOrderCopy/index.vue index b3cf853..dfad3b9 100644 --- a/src/views/wms/instockOrderCopy/index.vue +++ b/src/views/wms/instockOrderCopy/index.vue @@ -696,7 +696,7 @@ const state = reactive({ }); // 获取仓库 -getBaseWarehouseList().then(e => { +getBaseWarehouseList(null).then(e => { baseStoreList.value = e.data }) diff --git a/src/views/wms/instockRecord/index.vue b/src/views/wms/instockRecord/index.vue index 440d731..aacb110 100644 --- a/src/views/wms/instockRecord/index.vue +++ b/src/views/wms/instockRecord/index.vue @@ -82,7 +82,6 @@ - @@ -96,11 +95,16 @@ - + + + + + + +