From 5b439ab2564a0cb28638a1176eb5770ff02fe7fb Mon Sep 17 00:00:00 2001
From: zhaoxuebing <1291173720@qq.com>
Date: Thu, 23 May 2024 16:57:57 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/wms/qadCostcentre/index.ts | 60 +++++
src/api/wms/qadProject/index.ts | 59 +++++
src/api/wms/subjectAccount/index.ts | 61 +++++
.../subject/qadCostcentre/index.vue | 244 ++++++++++++++++++
.../qadCostcentre/qadCostcentre.data.ts | 153 +++++++++++
.../subject/qadProject/index.vue | 244 ++++++++++++++++++
.../subject/qadProject/qadProject.data.ts | 186 +++++++++++++
.../subject/subjectAccount/index.vue | 244 ++++++++++++++++++
.../subjectAccount/subjectAccount.data.ts | 173 +++++++++++++
9 files changed, 1424 insertions(+)
create mode 100644 src/api/wms/qadCostcentre/index.ts
create mode 100644 src/api/wms/qadProject/index.ts
create mode 100644 src/api/wms/subjectAccount/index.ts
create mode 100644 src/views/wms/basicDataManage/subject/qadCostcentre/index.vue
create mode 100644 src/views/wms/basicDataManage/subject/qadCostcentre/qadCostcentre.data.ts
create mode 100644 src/views/wms/basicDataManage/subject/qadProject/index.vue
create mode 100644 src/views/wms/basicDataManage/subject/qadProject/qadProject.data.ts
create mode 100644 src/views/wms/basicDataManage/subject/subjectAccount/index.vue
create mode 100644 src/views/wms/basicDataManage/subject/subjectAccount/subjectAccount.data.ts
diff --git a/src/api/wms/qadCostcentre/index.ts b/src/api/wms/qadCostcentre/index.ts
new file mode 100644
index 000000000..02fe9df8e
--- /dev/null
+++ b/src/api/wms/qadCostcentre/index.ts
@@ -0,0 +1,60 @@
+import request from '@/config/axios'
+
+export interface QadCostcentreVO {
+ id: number
+ code: string
+ usageDescription: string
+ costcentreId: string
+ costcentreCode: string
+ costcentreDescription: string
+ costcentreActive: string
+ costcentreType: string
+ available: string
+ remark: string
+ deletionTime: Date
+ deleterId: string
+ extraProperties: string
+ concurrencyStamp: number
+ siteId: string
+}
+
+// 查询QAD成品中心列表
+export const getQadCostcentrePage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/wms/qad-costcentre/senior', data })
+ } else {
+ return await request.get({ url: `/wms/qad-costcentre/page`, params })
+ }
+}
+
+// 查询QAD成品中心详情
+export const getQadCostcentre = async (id: number) => {
+ return await request.get({ url: `/wms/qad-costcentre/get?id=` + id })
+}
+
+// 新增QAD成品中心
+export const createQadCostcentre = async (data: QadCostcentreVO) => {
+ return await request.post({ url: `/wms/qad-costcentre/create`, data })
+}
+
+// 修改QAD成品中心
+export const updateQadCostcentre = async (data: QadCostcentreVO) => {
+ return await request.put({ url: `/wms/qad-costcentre/update`, data })
+}
+
+// 删除QAD成品中心
+export const deleteQadCostcentre = async (id: number) => {
+ return await request.delete({ url: `/wms/qad-costcentre/delete?id=` + id })
+}
+
+// 导出QAD成品中心 Excel
+export const exportQadCostcentre = async (params) => {
+ return await request.download({ url: `/wms/qad-costcentre/export-excel`, params })
+}
+
+// 下载用户导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/wms/qad-costcentre/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/api/wms/qadProject/index.ts b/src/api/wms/qadProject/index.ts
new file mode 100644
index 000000000..ce9cd6e8e
--- /dev/null
+++ b/src/api/wms/qadProject/index.ts
@@ -0,0 +1,59 @@
+import request from '@/config/axios'
+
+export interface QadProjectVO {
+ id: number
+ projectId: string
+ projectCode: string
+ projectDescription: string
+ projectStartDate: string
+ projectEndDate: string
+ statusCode: string
+ available: string
+ remark: string
+ deletionTime: Date
+ deleterId: string
+ extraProperties: string
+ concurrencyStamp: number
+ siteId: string
+}
+
+// 查询QAD项目信息列表
+export const getQadProjectPage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/wms/qad-project/senior', data })
+ } else {
+ return await request.get({ url: `/wms/qad-project/page`, params })
+ }
+}
+
+// 查询QAD项目信息详情
+export const getQadProject = async (id: number) => {
+ return await request.get({ url: `/wms/qad-project/get?id=` + id })
+}
+
+// 新增QAD项目信息
+export const createQadProject = async (data: QadProjectVO) => {
+ return await request.post({ url: `/wms/qad-project/create`, data })
+}
+
+// 修改QAD项目信息
+export const updateQadProject = async (data: QadProjectVO) => {
+ return await request.put({ url: `/wms/qad-project/update`, data })
+}
+
+// 删除QAD项目信息
+export const deleteQadProject = async (id: number) => {
+ return await request.delete({ url: `/wms/qad-project/delete?id=` + id })
+}
+
+// 导出QAD项目信息 Excel
+export const exportQadProject = async (params) => {
+ return await request.download({ url: `/wms/qad-project/export-excel`, params })
+}
+
+// 下载用户导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/wms/qad-project/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/api/wms/subjectAccount/index.ts b/src/api/wms/subjectAccount/index.ts
new file mode 100644
index 000000000..9674cd532
--- /dev/null
+++ b/src/api/wms/subjectAccount/index.ts
@@ -0,0 +1,61 @@
+import request from '@/config/axios'
+
+export interface SubjectAccountVO {
+ id: number
+ code: string
+ usageDescription: string
+ costecentreId: string
+ costecentreCode: string
+ costecentreType: string
+ projectId: string
+ projectCode: string
+ address: string
+ available: string
+ remark: string
+ deletionTime: Date
+ deleterId: string
+ extraProperties: string
+ concurrencyStamp: number
+ siteId: string
+}
+
+// 查询科目账户配置列表
+export const getSubjectAccountPage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/wms/subject-account/senior', data })
+ } else {
+ return await request.get({ url: `/wms/subject-account/page`, params })
+ }
+}
+
+// 查询科目账户配置详情
+export const getSubjectAccount = async (id: number) => {
+ return await request.get({ url: `/wms/subject-account/get?id=` + id })
+}
+
+// 新增科目账户配置
+export const createSubjectAccount = async (data: SubjectAccountVO) => {
+ return await request.post({ url: `/wms/subject-account/create`, data })
+}
+
+// 修改科目账户配置
+export const updateSubjectAccount = async (data: SubjectAccountVO) => {
+ return await request.put({ url: `/wms/subject-account/update`, data })
+}
+
+// 删除科目账户配置
+export const deleteSubjectAccount = async (id: number) => {
+ return await request.delete({ url: `/wms/subject-account/delete?id=` + id })
+}
+
+// 导出科目账户配置 Excel
+export const exportSubjectAccount = async (params) => {
+ return await request.download({ url: `/wms/subject-account/export-excel`, params })
+}
+
+// 下载用户导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/wms/subject-account/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/views/wms/basicDataManage/subject/qadCostcentre/index.vue b/src/views/wms/basicDataManage/subject/qadCostcentre/index.vue
new file mode 100644
index 000000000..42d552e1f
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/qadCostcentre/index.vue
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/wms/basicDataManage/subject/qadCostcentre/qadCostcentre.data.ts b/src/views/wms/basicDataManage/subject/qadCostcentre/qadCostcentre.data.ts
new file mode 100644
index 000000000..cccc8aeac
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/qadCostcentre/qadCostcentre.data.ts
@@ -0,0 +1,153 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+import { dateFormatter } from '@/utils/formatTime'
+
+// 表单校验
+export const QadCostcentreRules = reactive({
+ code: [required],
+ usageDescription: [required],
+ available: [required],
+ concurrencyStamp: [required],
+})
+
+export const QadCostcentre = useCrudSchemas(reactive([
+ {
+ label: 'id',
+ field: 'id',
+ sort: 'custom',
+ isForm: false,
+ isTable:false,
+ },
+ {
+ label: '成本中心ID',
+ field: 'costcentreId',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '成本中心代码',
+ field: 'costcentreCode',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '成本中心描述',
+ field: 'costcentreDescription',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'Editor',
+ componentProps: {
+ valueHtml: '',
+ height: 200
+ }
+ },
+ },
+ {
+ label: '启用',
+ field: 'costcentreActive',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '成本中心类型',
+ field: 'costcentreType',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'SelectV2'
+ },
+ },
+ {
+ label: '是否可用',
+ field: 'available',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '备注',
+ field: 'remark',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '创建时间',
+ field: 'createTime',
+ 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')]
+ }
+ },
+ isForm: false,
+ },
+ {
+ label: '删除时间',
+ field: 'deletionTime',
+ sort: 'custom',
+ formatter: dateFormatter,
+ isSearch: false,
+ isTable: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: '删除者ID',
+ field: 'deleterId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '扩展属性',
+ field: 'extraProperties',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '并发乐观锁',
+ field: 'concurrencyStamp',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ form: {
+ component: 'InputNumber',
+ value: 0
+ },
+ },
+ {
+ label: '地点ID',
+ field: 'siteId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '操作',
+ field: 'action',
+ isForm: false,
+ isTable:false,
+ table: {
+ width: 150,
+ fixed: 'right'
+ }
+ }
+]))
diff --git a/src/views/wms/basicDataManage/subject/qadProject/index.vue b/src/views/wms/basicDataManage/subject/qadProject/index.vue
new file mode 100644
index 000000000..4afc173b4
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/qadProject/index.vue
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/wms/basicDataManage/subject/qadProject/qadProject.data.ts b/src/views/wms/basicDataManage/subject/qadProject/qadProject.data.ts
new file mode 100644
index 000000000..a6213b199
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/qadProject/qadProject.data.ts
@@ -0,0 +1,186 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+import { dateFormatter } from '@/utils/formatTime'
+
+// 表单校验
+export const QadProjectRules = reactive({
+ available: [required],
+ concurrencyStamp: [required],
+})
+
+export const QadProject = useCrudSchemas(reactive([
+ {
+ label: 'id',
+ field: 'id',
+ sort: 'custom',
+ isForm: false,
+ isTable:false,
+ },
+ {
+ label: '项目ID',
+ field: 'projectId',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '项目代码',
+ field: 'projectCode',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '项目描述',
+ field: 'projectDescription',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'Editor',
+ componentProps: {
+ valueHtml: '',
+ height: 200
+ }
+ },
+ },
+ {
+ label: '项目开始时间',
+ field: 'projectStartDate',
+ 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: 'projectEndDate',
+ 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: 'statusCode',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '是否可用',
+ field: 'available',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '备注',
+ field: 'remark',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '创建时间',
+ field: 'createTime',
+ 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')]
+ }
+ },
+ isForm: false,
+ },
+ {
+ label: '删除时间',
+ field: 'deletionTime',
+ sort: 'custom',
+ formatter: dateFormatter,
+ isSearch: false,
+ isTable: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: '删除者ID',
+ field: 'deleterId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '扩展属性',
+ field: 'extraProperties',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '并发乐观锁',
+ field: 'concurrencyStamp',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ form: {
+ component: 'InputNumber',
+ value: 0
+ },
+ },
+ {
+ label: '地点ID',
+ field: 'siteId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '操作',
+ field: 'action',
+ isForm: false,
+ isTable:false,
+ table: {
+ width: 150,
+ fixed: 'right'
+ }
+ }
+]))
diff --git a/src/views/wms/basicDataManage/subject/subjectAccount/index.vue b/src/views/wms/basicDataManage/subject/subjectAccount/index.vue
new file mode 100644
index 000000000..c17d92f32
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/subjectAccount/index.vue
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/wms/basicDataManage/subject/subjectAccount/subjectAccount.data.ts b/src/views/wms/basicDataManage/subject/subjectAccount/subjectAccount.data.ts
new file mode 100644
index 000000000..d82220542
--- /dev/null
+++ b/src/views/wms/basicDataManage/subject/subjectAccount/subjectAccount.data.ts
@@ -0,0 +1,173 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+import { dateFormatter } from '@/utils/formatTime'
+
+// 表单校验
+export const SubjectAccountRules = reactive({
+ code: [required],
+ usageDescription: [required],
+ costecentreId: [required],
+ costecentreCode: [required],
+ costecentreType: [required],
+ projectId: [required],
+ projectCode: [required],
+ available: [required],
+ concurrencyStamp: [required],
+})
+
+export const SubjectAccount = useCrudSchemas(reactive([
+ {
+ label: 'id',
+ field: 'id',
+ sort: 'custom',
+ isForm: false,
+ isTable:false,
+ },
+ {
+ label: '代码',
+ field: 'code',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '领用描述',
+ field: 'usageDescription',
+ sort: 'custom',
+ isSearch: true,
+ form: {
+ component: 'Editor',
+ componentProps: {
+ valueHtml: '',
+ height: 200
+ }
+ },
+ },
+ {
+ label: '成本中心ID',
+ field: 'costecentreId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '成本中心代码',
+ field: 'costecentreCode',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '成本中心类型',
+ field: 'costecentreType',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'SelectV2'
+ },
+ },
+ {
+ label: '项目ID',
+ field: 'projectId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '项目代码',
+ field: 'projectCode',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '科目',
+ field: 'address',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '是否可用',
+ field: 'available',
+ sort: 'custom',
+ },
+ {
+ label: '备注',
+ field: 'remark',
+ sort: 'custom',
+ },
+ {
+ label: '创建时间',
+ field: 'createTime',
+ sort: 'custom',
+ 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')]
+ }
+ },
+ isForm: false,
+ },
+ {
+ label: '删除时间',
+ field: 'deletionTime',
+ sort: 'custom',
+ formatter: dateFormatter,
+ isTable: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: '删除者ID',
+ field: 'deleterId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '扩展属性',
+ field: 'extraProperties',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false,
+ },
+ {
+ label: '并发乐观锁',
+ field: 'concurrencyStamp',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'InputNumber',
+ value: 0
+ },
+ isTable:false,
+ },
+ {
+ label: '地点ID',
+ field: 'siteId',
+ sort: 'custom',
+ isSearch: false,
+ isTable:false
+ },
+ {
+ label: '操作',
+ field: 'action',
+ isForm: false,
+ table: {
+ width: 150,
+ fixed: 'right'
+ }
+ }
+]))