diff --git a/src/api/qms/counter/index.ts b/src/api/qms/counter/index.ts new file mode 100644 index 000000000..30f143a44 --- /dev/null +++ b/src/api/qms/counter/index.ts @@ -0,0 +1,63 @@ +import request from '@/config/axios' + +export interface CounterVO { + id: number + itemCode: string + testTypeCode: string + workingCode: boolean + supplierCode: string + qualifiedTimes: number + lastQualifiedBatch: string + lastQualifiedTime: Date + unqualifiedTimes: number + lastUnqualifiedBatch: number + lastUnqualifiedTime: number + nextStage: number + available: string + deletionTime: Date + deleterId: string + extraProperties: string + concurrencyStamp: number + siteId: string +} + +// 查询物料检验计数器列表 +export const getCounterPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/basic/counter/senior', data }) + } else { + return await request.get({ url: `/basic/counter/page`, params }) + } +} + +// 查询物料检验计数器详情 +export const getCounter = async (id: number) => { + return await request.get({ url: `/basic/counter/get?id=` + id }) +} + +// 新增物料检验计数器 +export const createCounter = async (data: CounterVO) => { + return await request.post({ url: `/basic/counter/create`, data }) +} + +// 修改物料检验计数器 +export const updateCounter = async (data: CounterVO) => { + return await request.put({ url: `/basic/counter/update`, data }) +} + +// 删除物料检验计数器 +export const deleteCounter = async (id: number) => { + return await request.delete({ url: `/basic/counter/delete?id=` + id }) +} + +// 导出物料检验计数器 Excel +export const exportCounter = async (params) => { + return await request.download({ url: `/basic/counter/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/basic/counter/get-import-template' }) +} \ No newline at end of file diff --git a/src/views/qms/basicDataManage/counter/counter.data.ts b/src/views/qms/basicDataManage/counter/counter.data.ts new file mode 100644 index 000000000..6c83b068f --- /dev/null +++ b/src/views/qms/basicDataManage/counter/counter.data.ts @@ -0,0 +1,143 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' + +// 表单校验 +export const CounterRules = reactive({ + itemCode: [required], + qualifiedTimes: [required], + unqualifiedTimes: [required], + lastUnqualifiedBatch: [required], + lastUnqualifiedTime: [required], + nextStage: [required], + available: [required], + concurrencyStamp: [required] +}) + +export const Counter = useCrudSchemas(reactive([ + { + label: '物料编码', + field: 'itemCode', + sort: 'custom', + isSearch: true + }, + { + label: '检验类型编码', + field: 'testTypeCode', + sort: 'custom', + isSearch: true + }, + { + label: '工序编码', + field: 'workingCode', + sort: 'custom', + isSearch: true, + form: { + component: 'Radio' + } + }, + { + label: '供应商编码', + field: 'supplierCode', + sort: 'custom', + isSearch: true + }, + { + label: '连续合格次数', + field: 'qualifiedTimes', + sort: 'custom', + isSearch: false, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '最后合格批次', + field: 'lastQualifiedBatch', + sort: 'custom', + isSearch: false + }, + { + label: '最后合格时间', + field: 'lastQualifiedTime', + 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: 'unqualifiedTimes', + sort: 'custom', + isSearch: false, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '最后不合格批次', + field: 'lastUnqualifiedBatch', + sort: 'custom', + isSearch: false, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '最后不合格时间', + field: 'lastUnqualifiedTime', + sort: 'custom', + formatter: dateFormatter, + isSearch: false, + 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: 'nextStage', + sort: 'custom', + isSearch: false, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) diff --git a/src/views/qms/basicDataManage/counter/index.vue b/src/views/qms/basicDataManage/counter/index.vue new file mode 100644 index 000000000..a36880258 --- /dev/null +++ b/src/views/qms/basicDataManage/counter/index.vue @@ -0,0 +1,245 @@ + + +