From 603e980b423b895ce4ee938f12a3b2b5109770c5 Mon Sep 17 00:00:00 2001 From: zhaoxuebing <1291173720@qq.com> Date: Tue, 18 Feb 2025 16:00:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E7=BA=BF=E7=BB=93=E7=AE=97--FWHL-220-?= =?UTF-8?q?-=E4=B8=8A=E7=BA=BF=E7=BB=93=E7=AE=97=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E6=96=B0=E4=B8=8E=E9=87=87=E8=B4=AD=E6=94=B6=E8=B4=A7=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E5=BA=93=E7=A7=BB=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/onlinesettlementInfo/index.ts | 79 ++++ .../onlinesettlementInfo/index.vue | 244 +++++++++++ .../onlinesettlementInfo.data.ts | 384 ++++++++++++++++++ 3 files changed, 707 insertions(+) create mode 100644 src/api/wms/onlinesettlementInfo/index.ts create mode 100644 src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/index.vue create mode 100644 src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/onlinesettlementInfo.data.ts diff --git a/src/api/wms/onlinesettlementInfo/index.ts b/src/api/wms/onlinesettlementInfo/index.ts new file mode 100644 index 000000000..c69e6fd4f --- /dev/null +++ b/src/api/wms/onlinesettlementInfo/index.ts @@ -0,0 +1,79 @@ +import request from '@/config/axios' + +export interface OnlinesettlementInfoVO { + id: number + number: string + receiptRecordNumber: string + receiptDate: Date + outTransactionType: string + inTransactionType: string + supplierCode: string + supplierItemCode: string + poNumber: string + poLine: string + itemCode: string + itemName: string + itemDesc1: string + itemDesc2: string + projectCode: string + qty: number + uom: string + packingNumber: string + batch: string + inventoryStatus: string + fromLocationCode: string + fromLocationGroupCode: string + fromAreaCode: string + fromWarehouseCode: string + toLocationCode: string + toLocationGroupCode: string + toAreaCode: string + toWarehouseCode: string + settlementQty: number + settlementRecordNumber: string + settlementBusinessType: string + settlementDatetime: Date + concurrencyStamp: number + remark: string +} + +// 查询上线结算记录信息新列表 +export const getOnlinesettlementInfoPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/wms/onlinesettlement-info/senior', data }) + } else { + return await request.get({ url: `/wms/onlinesettlement-info/page`, params }) + } +} + +// 查询上线结算记录信息新详情 +export const getOnlinesettlementInfo = async (id: number) => { + return await request.get({ url: `/wms/onlinesettlement-info/get?id=` + id }) +} + +// 新增上线结算记录信息新 +export const createOnlinesettlementInfo = async (data: OnlinesettlementInfoVO) => { + return await request.post({ url: `/wms/onlinesettlement-info/create`, data }) +} + +// 修改上线结算记录信息新 +export const updateOnlinesettlementInfo = async (data: OnlinesettlementInfoVO) => { + return await request.put({ url: `/wms/onlinesettlement-info/update`, data }) +} + +// 删除上线结算记录信息新 +export const deleteOnlinesettlementInfo = async (id: number) => { + return await request.delete({ url: `/wms/onlinesettlement-info/delete?id=` + id }) +} + +// 导出上线结算记录信息新 Excel +export const exportOnlinesettlementInfo = async (params) => { + return await request.download({ url: `/wms/onlinesettlement-info/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/wms/onlinesettlement-info/get-import-template' }) +} \ No newline at end of file diff --git a/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/index.vue b/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/index.vue new file mode 100644 index 000000000..0c9d119f8 --- /dev/null +++ b/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/index.vue @@ -0,0 +1,244 @@ + + + diff --git a/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/onlinesettlementInfo.data.ts b/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/onlinesettlementInfo.data.ts new file mode 100644 index 000000000..4070e8dba --- /dev/null +++ b/src/views/wms/issueManage/onlinesettlement/onlinesettlementInfo/onlinesettlementInfo.data.ts @@ -0,0 +1,384 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +export const OnlinesettlementInfoRules = reactive({ + poNumber: [required], + poLine: [required], + itemCode: [required], + inventoryStatus: [required], + concurrencyStamp: [required], +}) + +export const OnlinesettlementInfo = useCrudSchemas(reactive([ + { + label: 'id', + field: 'id', + sort: 'custom', + isForm: false, + isTable:false, + }, + { + label: '单据号', + field: 'number', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '收料记录单号', + field: 'receiptRecordNumber', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '收货日期', + field: 'receiptDate', + sort: 'custom', + formatter: dateFormatter, + table: { + width: 180 + }, + 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')] + } + }, + form: { + component: 'DatePicker', + componentProps: { + type: 'datetime', + valueFormat: 'x' + } + }, + }, + { + label: '出库事务类型', + field: 'outTransactionType', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '入库事务类型', + field: 'inTransactionType', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '供应商代码', + field: 'supplierCode', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '供应商物料代码', + field: 'supplierItemCode', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '订单号', + field: 'poNumber', + sort: 'custom', + isSearch: false, + table: { + width: 180 + }, + }, + { + label: '订单行', + field: 'poLine', + sort: 'custom', + isSearch: false, + table: { + width: 180 + }, + }, + { + label: '物品代码', + field: 'itemCode', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '物品名称', + field: 'itemName', + sort: 'custom', + isSearch: false, + table: { + width: 180 + }, + }, + { + label: '物品描述1', + field: 'itemDesc1', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '物品描述2', + field: 'itemDesc2', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '项目代码', + field: 'projectCode', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '数量', + field: 'qty', + sort: 'custom', + isSearch: false, + table: { + width: 180 + }, + }, + { + label: '计量单位', + field: 'uom', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '包装号', + field: 'packingNumber', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '批次', + field: 'batch', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '库存状态', + field: 'inventoryStatus', + sort: 'custom', + isSearch: false, + isTable:false, + form: { + component: 'Radio' + }, + table: { + width: 180 + }, + }, + { + label: '来源库位代码', + field: 'fromLocationCode', + sort: 'custom', + isSearch: false, + table: { + width: 180 + }, + }, + { + label: '来源库位组代码', + field: 'fromLocationGroupCode', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '来源库区代码', + field: 'fromAreaCode', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '来源仓库', + field: 'fromWarehouseCode', + sort: 'custom', + table: { + width: 180 + }, + }, + { + label: '目标库位代码', + field: 'toLocationCode', + sort: 'custom', + isSearch: true, + table: { + width: 180 + }, + }, + { + label: '目标库位组代码', + field: 'toLocationGroupCode', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '目标库区代码', + field: 'toAreaCode', + sort: 'custom', + isTable:false, + table: { + width: 180 + }, + }, + { + label: '目标仓库', + field: 'toWarehouseCode', + sort: 'custom', + table: { + width: 180 + }, + }, + { + label: '结算数量', + field: 'settlementQty', + sort: 'custom', + table: { + width: 180 + }, + }, + { + label: '结算记录单号', + field: 'settlementRecordNumber', + sort: 'custom', + table: { + width: 180 + }, + }, + { + label: '结算业务类型', + field: 'settlementBusinessType', + sort: 'custom', + table: { + width: 180 + }, + }, + { + label: '结算日期', + field: 'settlementDatetime', + sort: 'custom', + formatter: dateFormatter, + isSearch: true, + table: { + width: 180 + }, + 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')] + } + }, + form: { + component: 'DatePicker', + componentProps: { + type: 'datetime', + valueFormat: 'x' + } + }, + }, + // { + // label: '并发乐观锁', + // field: 'concurrencyStamp', + // sort: 'custom', + // isSearch: false, + // isTable:false, + // form: { + // component: 'InputNumber', + // value: 0 + // }, + // }, + { + label: '备注', + field: 'remark', + sort: 'custom', + isSearch: false, + isTable:false, + table: { + width: 180 + }, + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + table: { + width: 180 + }, + 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' + // } + // } +]))