From 08940753d5afde32279a6f359b7c4b1ef8601adc Mon Sep 17 00:00:00 2001 From: zhaoxuebing <1291173720@qq.com> Date: Mon, 28 Oct 2024 17:29:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=BA=E9=99=B7HL-6340?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/balanceChangeHistory/index.ts | 62 +++++ .../balanceChangeHistory.data.ts | 149 +++++++++++ .../balanceChangeHistory/index.vue | 244 ++++++++++++++++++ 3 files changed, 455 insertions(+) create mode 100644 src/api/wms/balanceChangeHistory/index.ts create mode 100644 src/views/wms/inventoryManage/balanceChangeHistory/balanceChangeHistory.data.ts create mode 100644 src/views/wms/inventoryManage/balanceChangeHistory/index.vue diff --git a/src/api/wms/balanceChangeHistory/index.ts b/src/api/wms/balanceChangeHistory/index.ts new file mode 100644 index 000000000..0d66d2c2d --- /dev/null +++ b/src/api/wms/balanceChangeHistory/index.ts @@ -0,0 +1,62 @@ +import request from '@/config/axios' + +export interface BalanceChangeHistoryVO { + beforeItemCode: string + beforeBatch: string + beforePackingNumber: string + beforeInventoryStatus: string + beforeLocationCode: string + beforeQty: number + beforeTransNumber: string + beforeId: number + afterItemCode: string + afterBatch: string + afterPackingNumber: string + afterInventoryStatus: string + afterLocationCode: string + afterQty: number + afterTransNumber: string + afterId: number + remark: string +} + +// 查询库存余额变更记录列表 +export const getBalanceChangeHistoryPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/wms/balance-change-history/senior', data }) + } else { + return await request.get({ url: `/wms/balance-change-history/page`, params }) + } +} + +// 查询库存余额变更记录详情 +export const getBalanceChangeHistory = async (id: number) => { + return await request.get({ url: `/wms/balance-change-history/get?id=` + id }) +} + +// 新增库存余额变更记录 +export const createBalanceChangeHistory = async (data: BalanceChangeHistoryVO) => { + return await request.post({ url: `/wms/balance-change-history/create`, data }) +} + +// 修改库存余额变更记录 +export const updateBalanceChangeHistory = async (data: BalanceChangeHistoryVO) => { + return await request.put({ url: `/wms/balance-change-history/update`, data }) +} + +// 删除库存余额变更记录 +export const deleteBalanceChangeHistory = async (id: number) => { + return await request.delete({ url: `/wms/balance-change-history/delete?id=` + id }) +} + +// 导出库存余额变更记录 Excel +export const exportBalanceChangeHistory = async (params) => { + return await request.download({ url: `/wms/balance-change-history/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/wms/balance-change-history/get-import-template' }) +} \ No newline at end of file diff --git a/src/views/wms/inventoryManage/balanceChangeHistory/balanceChangeHistory.data.ts b/src/views/wms/inventoryManage/balanceChangeHistory/balanceChangeHistory.data.ts new file mode 100644 index 000000000..fd59cecba --- /dev/null +++ b/src/views/wms/inventoryManage/balanceChangeHistory/balanceChangeHistory.data.ts @@ -0,0 +1,149 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +export const BalanceChangeHistoryRules = reactive({ +}) + +export const BalanceChangeHistory = useCrudSchemas(reactive([ + { + label: '变更前_物料代码', + field: 'beforeItemCode', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_批次', + field: 'beforeBatch', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_包装号', + field: 'beforePackingNumber', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_库存状态', + field: 'beforeInventoryStatus', + sort: 'custom', + isSearch: true, + form: { + component: 'Radio' + }, + }, + { + label: '变更前_库位代码', + field: 'beforeLocationCode', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_数量', + field: 'beforeQty', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_事务号', + field: 'beforeTransNumber', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_id', + field: 'beforeId', + sort: 'custom', + isSearch: true, + form: { + component: 'InputNumber', + value: 0 + }, + }, + { + label: '变更后_物料代码', + field: 'afterItemCode', + sort: 'custom', + isSearch: true, + }, + { + label: '变更后_批次', + field: 'afterBatch', + sort: 'custom', + isSearch: true, + }, + { + label: '变更后_包装号', + field: 'afterPackingNumber', + sort: 'custom', + isSearch: true, + }, + { + label: '变更后_库存状态', + field: 'afterInventoryStatus', + sort: 'custom', + isSearch: true, + form: { + component: 'Radio' + }, + }, + { + label: '变更后_库位代码', + field: 'afterLocationCode', + sort: 'custom', + isSearch: true, + }, + { + label: '变更后_数量', + field: 'afterQty', + sort: 'custom', + isSearch: true, + }, + { + label: '变更后_事务号', + field: 'afterTransNumber', + sort: 'custom', + isSearch: true, + }, + { + label: '变更前_id', + field: 'afterId', + sort: 'custom', + isSearch: true, + form: { + component: 'InputNumber', + value: 0 + }, + }, + { + label: '备注', + field: 'remark', + sort: 'custom', + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + isSearch: true, + search: { + component: 'DatePicker', + componentProps: { + valueFormat: 'YYYY-MM-DD HH:mm:ss', + type: 'daterange', + defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] + } + }, + isForm: false, + }, + // { + // label: '操作', + // field: 'action', + // isForm: false, + // table: { + // width: 150, + // fixed: 'right' + // } + // } +])) diff --git a/src/views/wms/inventoryManage/balanceChangeHistory/index.vue b/src/views/wms/inventoryManage/balanceChangeHistory/index.vue new file mode 100644 index 000000000..baa9aec20 --- /dev/null +++ b/src/views/wms/inventoryManage/balanceChangeHistory/index.vue @@ -0,0 +1,244 @@ + + +