diff --git a/src/api/wms/supplierCycle/index.ts b/src/api/wms/supplierCycle/index.ts new file mode 100644 index 000000000..da29ff1fc --- /dev/null +++ b/src/api/wms/supplierCycle/index.ts @@ -0,0 +1,65 @@ +import request from '@/config/axios' + +export interface SupplierCycleVO { + id: number + supplierCode: string + monday: string + tuesday: string + wednesday: string + thursday: string + friday: string + saturday: string + sunday: string + version: string + remark: string + extraProperties: string + siteId: string + beginTime: Date + endTime: Date + available: string + status: string + concurrencyStamp: string + ruleUserId: number + departmentCode: string +} + +// 查询要货预测周期列表 +export const getSupplierCyclePage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/basic/supplier-cycle/senior', data }) + } else { + return await request.get({ url: `/basic/supplier-cycle/page`, params }) + } +} + +// 查询要货预测周期详情 +export const getSupplierCycle = async (id: number) => { + return await request.get({ url: `/basic/supplier-cycle/get?id=` + id }) +} + +// 新增要货预测周期 +export const createSupplierCycle = async (data: SupplierCycleVO) => { + return await request.post({ url: `/basic/supplier-cycle/create`, data }) +} + +// 修改要货预测周期 +export const updateSupplierCycle = async (data: SupplierCycleVO) => { + return await request.put({ url: `/basic/supplier-cycle/update`, data }) +} + +// 删除要货预测周期 +export const deleteSupplierCycle = async (id: number) => { + return await request.delete({ url: `/basic/supplier-cycle/delete?id=` + id }) +} + +// 导出要货预测周期 Excel +export const exportSupplierCycle = async (params) => { + return await request.download({ url: `/basic/supplier-cycle/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/basic/supplier-cycle/get-import-template' }) +} \ No newline at end of file diff --git a/src/views/wms/basicDataManage/supplierManage/supplierCycle/index.vue b/src/views/wms/basicDataManage/supplierManage/supplierCycle/index.vue new file mode 100644 index 000000000..a20c3f4b5 --- /dev/null +++ b/src/views/wms/basicDataManage/supplierManage/supplierCycle/index.vue @@ -0,0 +1,244 @@ + + + diff --git a/src/views/wms/basicDataManage/supplierManage/supplierCycle/supplierCycle.data.ts b/src/views/wms/basicDataManage/supplierManage/supplierCycle/supplierCycle.data.ts new file mode 100644 index 000000000..c17d4da1d --- /dev/null +++ b/src/views/wms/basicDataManage/supplierManage/supplierCycle/supplierCycle.data.ts @@ -0,0 +1,200 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +export const SupplierCycleRules = reactive({ + available: [required], + departmentCode: [required], +}) + +export const SupplierCycle = useCrudSchemas(reactive([ + { + label: 'id', + field: 'id', + sort: 'custom', + isForm: false, + isTable:false, + }, + { + label: '供应商代码', + field: 'supplierCode', + sort: 'custom', + isSearch: true, + }, + { + label: '星期一', + field: 'monday', + sort: 'custom', + }, + { + label: '星期二', + field: 'tuesday', + sort: 'custom', + }, + { + label: '星期三', + field: 'wednesday', + sort: 'custom', + }, + { + label: '星期四', + field: 'thursday', + sort: 'custom', + }, + { + label: '星期五', + field: 'friday', + sort: 'custom', + }, + { + label: '星期六', + field: 'saturday', + sort: 'custom', + }, + { + label: '星期日', + field: 'sunday', + sort: 'custom', + }, + { + label: '版本号', + field: 'version', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '备注', + field: 'remark', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + isTable:false, + isForm:false, + formatter: dateFormatter, + 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')] + } + }, + }, + { + label: '扩展属性', + field: 'extraProperties', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '地点ID', + field: 'siteId', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '开始时间', + field: 'beginTime', + sort: 'custom', + isTable:false, + isForm:false, + formatter: dateFormatter, + 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: 'endTime', + sort: 'custom', + isTable:false, + isForm:false, + formatter: dateFormatter, + 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: 'available', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '状态', + field: 'status', + sort: 'custom', + isTable:false, + isForm:false, + form: { + component: 'Radio' + }, + }, + { + label: '并发乐观锁', + field: 'concurrencyStamp', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '权限所属人员id', + field: 'ruleUserId', + sort: 'custom', + isTable:false, + isForm:false, + form: { + component: 'InputNumber', + value: 0 + }, + }, + { + label: '部门', + field: 'departmentCode', + sort: 'custom', + isTable:false, + isForm:false, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) diff --git a/src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts b/src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts index 471262417..110b85c76 100644 --- a/src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts +++ b/src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts @@ -222,6 +222,46 @@ export const DemandforecastingMain = useCrudSchemas(reactive([ } }, }, + { + label: '计划员', + field: 'planerId', + sort: 'custom', + table: { + width: 150 + }, + isTable:false, + isForm: false, + }, + { + label: '计划员名称', + field: 'planerUserName', + sort: 'custom', + table: { + width: 150 + }, + isTable:false, + isForm: false, + }, + { + label: '版本', + field: 'activeVersion', + sort: 'custom', + table: { + width: 150 + }, + isTable:false, + isForm: false, + }, + { + label: '到货日期', + field: 'dueDate', + sort: 'custom', + table: { + width: 150 + }, + isTable:false, + isForm: false, + }, { label: '操作', field: 'action',