diff --git a/src/api/wms/supplierDeliMain/index.ts b/src/api/wms/supplierDeliMain/index.ts
new file mode 100644
index 000000000..af30d1239
--- /dev/null
+++ b/src/api/wms/supplierDeliMain/index.ts
@@ -0,0 +1,54 @@
+import request from '@/config/axios'
+
+export interface SupplierDeliMainVO {
+ id: number
+ supplierCode: string
+ supplierAddress: string
+ model: string
+ yearAndMonth: string
+ remark: string
+ available: string
+ siteId: string
+ concurrencyStamp: string
+}
+
+// 查询供应商便次配置主列表
+export const getSupplierDeliMainPage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/basic/supplier-deli-main/senior', data })
+ } else {
+ return await request.get({ url: `/basic/supplier-deli-main/page`, params })
+ }
+}
+
+// 查询供应商便次配置主详情
+export const getSupplierDeliMain = async (id: number) => {
+ return await request.get({ url: `/basic/supplier-deli-main/get?id=` + id })
+}
+
+// 新增供应商便次配置主
+export const createSupplierDeliMain = async (data: SupplierDeliMainVO) => {
+ return await request.post({ url: `/basic/supplier-deli-main/create`, data })
+}
+
+// 修改供应商便次配置主
+export const updateSupplierDeliMain = async (data: SupplierDeliMainVO) => {
+ return await request.put({ url: `/basic/supplier-deli-main/update`, data })
+}
+
+// 删除供应商便次配置主
+export const deleteSupplierDeliMain = async (id: number) => {
+ return await request.delete({ url: `/basic/supplier-deli-main/delete?id=` + id })
+}
+
+// 导出供应商便次配置主 Excel
+export const exportSupplierDeliMain = async (params) => {
+ return await request.download({ url: `/basic/supplier-deli-main/export-excel`, params })
+}
+
+// 下载用户导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/basic/supplier-deli-main/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/views/wms/supplierManage/supplierDeliMain/index.vue b/src/views/wms/supplierManage/supplierDeliMain/index.vue
new file mode 100644
index 000000000..c94bdbf9b
--- /dev/null
+++ b/src/views/wms/supplierManage/supplierDeliMain/index.vue
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+ 44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/wms/supplierManage/supplierDeliMain/supplierDeliDetail.data.ts b/src/views/wms/supplierManage/supplierDeliMain/supplierDeliDetail.data.ts
new file mode 100644
index 000000000..b0c904719
--- /dev/null
+++ b/src/views/wms/supplierManage/supplierDeliMain/supplierDeliDetail.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/supplierManage/supplierDeliMain/supplierDeliMain.data.ts b/src/views/wms/supplierManage/supplierDeliMain/supplierDeliMain.data.ts
new file mode 100644
index 000000000..1951c66cd
--- /dev/null
+++ b/src/views/wms/supplierManage/supplierDeliMain/supplierDeliMain.data.ts
@@ -0,0 +1,36 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+
+// 表单校验
+export const SupplierDeliMainRules = reactive({
+ supplierCode: [required],
+ supplierAddress: [required],
+ yearAndMonth: [required],
+})
+
+export const SupplierDeliMain = useCrudSchemas(reactive([
+ {
+ label: '供应商代码',
+ field: 'supplierCode',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '供应商地点',
+ field: 'supplierAddress',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '受入号',
+ field: 'model',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '年月',
+ field: 'yearAndMonth',
+ sort: 'custom',
+ isTable: false,
+ isSearch: true,
+ }
+]))