diff --git a/src/api/wms/balance/index.ts b/src/api/wms/balance/index.ts index 68161dc16..839ac877a 100644 --- a/src/api/wms/balance/index.ts +++ b/src/api/wms/balance/index.ts @@ -41,6 +41,18 @@ export const getBalancePage = async (params) => { return await request.get({ url: `/wms/balance/page`, params }) } } + +// 查询库存余额列表(包括已冻结,已失效的物料) +export const getBalancePageAll = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/wms/balance/seniorAll', data }) + } else { + return await request.get({ url: `/wms/balance/pageAll`, params }) + } +} + // 查询库存余额列表 export const getBalancePageReturn= async (params) => { if (params.isSearch) { diff --git a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts index 9cffbf23b..3e0b98967 100644 --- a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts +++ b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts @@ -83,45 +83,45 @@ export const CountPlanMain = useCrudSchemas(reactive([ } } }, - { - label: '物料忽略名单', - field: 'ignoreListOfItem', - sort: 'custom', - table: { - width: 150 - }, - form: { - componentProps: { - isSearchList: true, // 开启查询弹窗 - multiple:true,//是否可以多选 - searchListPlaceholder: '请选择物料忽略名单', // 输入框占位文本 - searchField: 'code', // 查询弹窗赋值字段 - searchTitle: '物料信息', // 查询弹窗标题 - searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 - searchPage: ItembasicApi.getItembasicPage // 查询弹窗所需分页方法 - } - } - }, - { - label: '库位忽略名单', - field: 'ignoreListOfLocation', - sort: 'custom', - table: { - width: 150 - }, - form: { - componentProps: { - isSearchList: true, // 开启查询弹窗 - multiple:true,//是否可以多选 - searchListPlaceholder: '请选择库位忽略名单', // 输入框占位文本 - searchField: 'code', // 查询弹窗赋值字段 - searchTitle: '库位信息', // 查询弹窗标题 - searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 - searchPage: LocationApi.getLocationPage // 查询弹窗所需分页方法 - - } - } - }, + // { + // label: '物料忽略名单', + // field: 'ignoreListOfItem', + // sort: 'custom', + // table: { + // width: 150 + // }, + // form: { + // componentProps: { + // isSearchList: true, // 开启查询弹窗 + // multiple:true,//是否可以多选 + // searchListPlaceholder: '请选择物料忽略名单', // 输入框占位文本 + // searchField: 'code', // 查询弹窗赋值字段 + // searchTitle: '物料信息', // 查询弹窗标题 + // searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 + // searchPage: ItembasicApi.getItembasicPage // 查询弹窗所需分页方法 + // } + // } + // }, + // { + // label: '库位忽略名单', + // field: 'ignoreListOfLocation', + // sort: 'custom', + // table: { + // width: 150 + // }, + // form: { + // componentProps: { + // isSearchList: true, // 开启查询弹窗 + // multiple:true,//是否可以多选 + // searchListPlaceholder: '请选择库位忽略名单', // 输入框占位文本 + // searchField: 'code', // 查询弹窗赋值字段 + // searchTitle: '库位信息', // 查询弹窗标题 + // searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 + // searchPage: LocationApi.getLocationPage // 查询弹窗所需分页方法 + // + // } + // } + // }, // { // label: '盘点范围列表', // field: 'scopeList', diff --git a/src/views/wms/inventoryManage/balance/index.vue b/src/views/wms/inventoryManage/balance/index.vue index 8a372224e..595b8ceb1 100644 --- a/src/views/wms/inventoryManage/balance/index.vue +++ b/src/views/wms/inventoryManage/balance/index.vue @@ -88,7 +88,7 @@ const updataTableColumns = (val) => { } const { tableObject, tableMethods } = useTable({ - getListApi: BalanceApi.getBalancePage // 分页接口 + getListApi: BalanceApi.getBalancePageAll // 分页接口 }) // 获得表格的各种操作