diff --git a/src/api/wms/dock/index.ts b/src/api/wms/dock/index.ts index 894986ba7..0cf190ad5 100644 --- a/src/api/wms/dock/index.ts +++ b/src/api/wms/dock/index.ts @@ -21,7 +21,10 @@ export interface DockVO { export const getDockPage = async (params) => { return await request.get({ url: `/wms/dock/page`, params }) } - +// 查询月台列表 +export const getDockList = async (params) => { + return await request.get({ url: `/wms/dock/list`, params }) +} // 查询月台详情 export const getDock = async (id: number) => { return await request.get({ url: `/wms/dock/get?id=` + id }) diff --git a/src/api/wms/location/index.ts b/src/api/wms/location/index.ts index 09dd937d4..e3c982ad1 100644 --- a/src/api/wms/location/index.ts +++ b/src/api/wms/location/index.ts @@ -28,6 +28,10 @@ export interface LocationVO { export const getLocationPage = async (params) => { return await request.get({ url: `/wms/location/page`, params }) } +// 查询库位所有列表 +export const getLocationList = async (params) => { + return await request.get({ url: `/wms/location/list`, params }) +} // 查询库位详情 export const getLocation = async (id: number) => { diff --git a/src/api/wms/rule/index.ts b/src/api/wms/rule/index.ts index 81fc49f20..dced53321 100644 --- a/src/api/wms/rule/index.ts +++ b/src/api/wms/rule/index.ts @@ -6,6 +6,7 @@ export interface RuleVO { code: string name: string description: string + status: number condition: string configuration: string } diff --git a/src/api/wms/supplier/index.ts b/src/api/wms/supplier/index.ts index ed39172a4..1e95560af 100644 --- a/src/api/wms/supplier/index.ts +++ b/src/api/wms/supplier/index.ts @@ -21,10 +21,14 @@ export interface SupplierVO { remark: string } -// 查询供应商列表 +// 查询供应商列表分页 export const getSupplierPage = async (params) => { return await request.get({ url: `/wms/supplier/page`, params }) } +// 查询供应商列表 +export const getSupplierList = async (params) => { + return await request.get({ url: `/wms/supplier/list`, params }) +} // 查询供应商详情 export const getSupplier = async (id: number) => { diff --git a/src/api/wms/warehouse/index.ts b/src/api/wms/warehouse/index.ts index 0b1b9c326..12be52437 100644 --- a/src/api/wms/warehouse/index.ts +++ b/src/api/wms/warehouse/index.ts @@ -15,7 +15,10 @@ export interface WarehouseVO { export const getWarehousePage = async (params) => { return await request.get({ url: `/wms/warehouse/page`, params }) } - +// 查询仓库所有列表 +export const getWarehouseList = async (params) => { + return await request.get({ url: `/wms/warehouse/list`, params }) +} // 查询仓库详情 export const getWarehouse = async (id: number) => { return await request.get({ url: `/wms/warehouse/get?id=` + id }) diff --git a/src/views/wms/strategy/supplieDeliveryStrategy/AddForm.vue b/src/views/wms/strategy/supplieDeliveryStrategy/AddForm.vue index 0002fedc2..efcce05eb 100644 --- a/src/views/wms/strategy/supplieDeliveryStrategy/AddForm.vue +++ b/src/views/wms/strategy/supplieDeliveryStrategy/AddForm.vue @@ -6,21 +6,21 @@