From b29ae03c07d0a221259539552ebbe44c11ae4dbc Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Tue, 11 Mar 2025 09:49:23 +0800 Subject: [PATCH 1/9] =?UTF-8?q?YT-2087=E4=BE=9B=E5=BA=94=E5=95=86=E4=BE=BF?= =?UTF-8?q?=E6=AC=A1=E9=85=8D=E7=BD=AE=E8=A1=A8=EF=BC=8C=E4=BE=BF=E6=AC=A1?= =?UTF-8?q?=E5=A4=9A=E4=BA=8E6=E4=B8=AA=E6=98=BE=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierManage/supplierDeliMain/index.vue | 11 ++++++----- .../supplierDeliMain/supplierDeliMain.data.ts | 18 +++++++++--------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/views/wms/supplierManage/supplierDeliMain/index.vue b/src/views/wms/supplierManage/supplierDeliMain/index.vue index 9c921f1e3..653349546 100644 --- a/src/views/wms/supplierManage/supplierDeliMain/index.vue +++ b/src/views/wms/supplierManage/supplierDeliMain/index.vue @@ -33,7 +33,7 @@ + diff --git a/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliDetail.data.ts b/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliDetail.data.ts new file mode 100644 index 000000000..b0c904719 --- /dev/null +++ b/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliDetail.data.ts @@ -0,0 +1,114 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +/* +export const SupplierDeliDetailRules = reactive({ + masterId: [required], + deliNo: [required], + delayDeli: [required], + beginTime: [required], +}) +*/ + +export const SupplierDeliDetail = useCrudSchemas(reactive([ + { + label: 'id', + field: 'id', + sort: 'custom', + isForm: false, + }, + { + label: '主id', + field: 'masterId', + sort: 'custom', + isSearch: true, + form: { + component: 'InputNumber', + value: 0 + }, + }, + { + label: '便次', + field: 'deliNo', + sort: 'custom', + isSearch: true, + }, + { + label: '延迟便次', + field: 'delayDeli', + sort: 'custom', + isSearch: true, + }, + { + label: '开始时间', + field: 'beginTime', + 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')] + } + }, + form: { + component: 'DatePicker', + componentProps: { + type: 'datetime', + valueFormat: 'x' + } + }, + }, + { + label: '备注', + field: 'remark', + sort: 'custom', + isSearch: true, + }, + { + label: '是否可用默认TRUE', + field: 'available', + sort: 'custom', + isSearch: true, + }, + { + 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: '地点ID', + field: 'siteId', + sort: 'custom', + isSearch: true, + }, + { + label: '并发乐观锁', + field: 'concurrencyStamp', + sort: 'custom', + isSearch: true, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) diff --git a/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliMain.data.ts b/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliMain.data.ts new file mode 100644 index 000000000..90f5ad383 --- /dev/null +++ b/src/views/wms/basicDataManage/receivedNumberDeliMain/receivedNumberDeliMain.data.ts @@ -0,0 +1,54 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { formatDate } from '@/utils/formatTime' + +// 表单校验 +export const ReceivedNumberDeliMainRules = reactive({ + supplierCode: [required], + supplierAddress: [required], + yearAndMonth: [required], +}) + +export const ReceivedNumberDeliMain = useCrudSchemas(reactive([ + { + label: '受入号', + field: 'model', + sort: 'custom', + isSearch: true, + table:{ + width : 180 + } + }, + { + label: '延迟便次', + field: 'delayDeli', + sort: 'custom', + isSearch: false, + table:{ + width : 180 + } + }, + { + label: '年月', + field: 'yearAndMonth', + sort: 'custom', + isTable: false, + isSearch: true, + search: { + component: 'DatePicker', + value: formatDate(new Date(),'YYYY-MM'), + componentProps: { + type: 'month', + valueFormat: 'YYYY-MM', + } + } + }, + // { + // label: '操作', + // field: 'action', + // isForm: false, + // table: { + // width: 150, + // fixed: 'right' + // } + // } +])) From abbb14157cd9c834d053f84c78b2481a2ac38d45 Mon Sep 17 00:00:00 2001 From: zhaoyiran Date: Wed, 12 Mar 2025 17:04:34 +0800 Subject: [PATCH 6/9] =?UTF-8?q?=E5=8F=97=E5=85=A5=E5=8F=B7=E6=97=A5?= =?UTF-8?q?=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/modelCalendar/index.ts | 58 +++ .../supplierManage/modelCalendar/index.vue | 399 ++++++++++++++++++ .../modelCalendar/modelcalendar.data.ts | 72 ++++ .../modelCalendar/modelcalendardetail.data.ts | 114 +++++ 4 files changed, 643 insertions(+) create mode 100644 src/api/wms/modelCalendar/index.ts create mode 100644 src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue create mode 100644 src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendar.data.ts create mode 100644 src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendardetail.data.ts diff --git a/src/api/wms/modelCalendar/index.ts b/src/api/wms/modelCalendar/index.ts new file mode 100644 index 000000000..c421f6444 --- /dev/null +++ b/src/api/wms/modelCalendar/index.ts @@ -0,0 +1,58 @@ +import request from '@/config/axios' + +export interface ModelCalendarMainVO { + id: number + model: string + yearAndMonth: string + delayDeli: number + remark: string + available: string + siteId: string + concurrencyStamp: number +} + +// 查询受入号日历主列表 +export const getModelCalendarMainPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/wms/model-calendar-main/senior', data }) + } else { + return await request.get({ url: `/wms/model-calendar-main/page`, params }) + } +} + +// 查询受入号日历主详情 +export const getModelCalendarMain = async (id: number) => { + return await request.get({ url: `/wms/model-calendar-main/get?id=` + id }) +} + +// 新增受入号日历主 +export const createModelCalendarMain = async (data: ModelCalendarMainVO) => { + return await request.post({ url: `/wms/model-calendar-main/create`, data }) +} + +// 修改受入号日历主 +export const updateModelCalendarMain = async (data: ModelCalendarMainVO) => { + return await request.put({ url: `/wms/model-calendar-main/update`, data }) +} + +// 删除受入号日历主 +export const deleteModelCalendarMain = async (id: number) => { + return await request.delete({ url: `/wms/model-calendar-main/delete?ids=` + id }) +} + +// 导出受入号日历主 Excel +export const exportModelCalendarMain = async (params) => { + return await request.download({ url: `/wms/model-calendar-main/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/wms/model-calendar-main/get-import-template' }) +} + +// 查询供应商便次配置列表 +export const getPageTableHead = async (params) => { + return await request.get({ url: `/wms/supplier-deli-main/queryPageTableHead`, params }) +} \ No newline at end of file diff --git a/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue b/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue new file mode 100644 index 000000000..f5a4244e7 --- /dev/null +++ b/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue @@ -0,0 +1,399 @@ + + + + diff --git a/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendar.data.ts b/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendar.data.ts new file mode 100644 index 000000000..3a8932c31 --- /dev/null +++ b/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendar.data.ts @@ -0,0 +1,72 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { formatDate } from '@/utils/formatTime' + +// 表单校验 +export const ModelCalendarRules = reactive({ + supplierCode: [required], + supplierAddress: [required], + yearAndMonth: [required], +}) + +export const ModelCalendar = useCrudSchemas(reactive([ + // { + // label: '受入号', + // field: 'model', + // sort: 'custom', + // isSearch: true, + // table:{ + // width : 180 + // } + // }, + // { + // label: '供应商地点', + // field: 'supplierAddress', + // sort: 'custom', + // isSearch: true, + // table:{ + // width : 180 + // } + // }, + { + label: '受入号', + field: 'model', + sort: 'custom', + isSearch: true, + table:{ + width : 180 + } + }, + { + label: '延迟便次', + field: 'delayDeli', + sort: 'custom', + isSearch: false, + table:{ + width : 180 + } + }, + { + label: '年月', + field: 'yearAndMonth', + sort: 'custom', + isTable: false, + isSearch: true, + search: { + component: 'DatePicker', + value: formatDate(new Date(),'YYYY-MM'), + componentProps: { + type: 'month', + valueFormat: 'YYYY-MM', + } + } + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) diff --git a/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendardetail.data.ts b/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendardetail.data.ts new file mode 100644 index 000000000..b0c904719 --- /dev/null +++ b/src/views/wms/basicDataManage/supplierManage/modelCalendar/modelcalendardetail.data.ts @@ -0,0 +1,114 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +/* +export const SupplierDeliDetailRules = reactive({ + masterId: [required], + deliNo: [required], + delayDeli: [required], + beginTime: [required], +}) +*/ + +export const SupplierDeliDetail = useCrudSchemas(reactive([ + { + label: 'id', + field: 'id', + sort: 'custom', + isForm: false, + }, + { + label: '主id', + field: 'masterId', + sort: 'custom', + isSearch: true, + form: { + component: 'InputNumber', + value: 0 + }, + }, + { + label: '便次', + field: 'deliNo', + sort: 'custom', + isSearch: true, + }, + { + label: '延迟便次', + field: 'delayDeli', + sort: 'custom', + isSearch: true, + }, + { + label: '开始时间', + field: 'beginTime', + 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')] + } + }, + form: { + component: 'DatePicker', + componentProps: { + type: 'datetime', + valueFormat: 'x' + } + }, + }, + { + label: '备注', + field: 'remark', + sort: 'custom', + isSearch: true, + }, + { + label: '是否可用默认TRUE', + field: 'available', + sort: 'custom', + isSearch: true, + }, + { + 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: '地点ID', + field: 'siteId', + sort: 'custom', + isSearch: true, + }, + { + label: '并发乐观锁', + field: 'concurrencyStamp', + sort: 'custom', + isSearch: true, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) From ad89a3767ac90ecdd4059fb74f5998ea495de7e1 Mon Sep 17 00:00:00 2001 From: zhaoyiran Date: Wed, 12 Mar 2025 18:14:07 +0800 Subject: [PATCH 7/9] =?UTF-8?q?=E5=8F=97=E5=85=A5=E5=8F=B7=E6=97=A5?= =?UTF-8?q?=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basicDataManage/supplierManage/modelCalendar/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue b/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue index f5a4244e7..45dab975c 100644 --- a/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue +++ b/src/views/wms/basicDataManage/supplierManage/modelCalendar/index.vue @@ -64,7 +64,7 @@ - +