ljlong_2630
6 months ago
72 changed files with 7629 additions and 973 deletions
@ -0,0 +1,57 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface BasicFaultCauseVO { |
||||
|
id: number |
||||
|
parentId: number |
||||
|
code: string |
||||
|
name: string |
||||
|
describing: string |
||||
|
departmentCode: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
deletionTime: Date |
||||
|
deleterId: byte[] |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询故障原因列表
|
||||
|
export const getBasicFaultCausePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/basic-fault-cause/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/basic-fault-cause/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询故障原因详情
|
||||
|
export const getBasicFaultCause = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/basic-fault-cause/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增故障原因
|
||||
|
export const createBasicFaultCause = async (data: BasicFaultCauseVO) => { |
||||
|
return await request.post({ url: `/eam/basic-fault-cause/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改故障原因
|
||||
|
export const updateBasicFaultCause = async (data: BasicFaultCauseVO) => { |
||||
|
return await request.put({ url: `/eam/basic-fault-cause/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除故障原因
|
||||
|
export const deleteBasicFaultCause = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/basic-fault-cause/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出故障原因 Excel
|
||||
|
export const exportBasicFaultCause = async (params) => { |
||||
|
return await request.download({ url: `/eam/basic-fault-cause/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/eam/basic-fault-cause/get-import-template' }) |
||||
|
} |
@ -0,0 +1,56 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface BasicFaultTypeVO { |
||||
|
id: number |
||||
|
code: string |
||||
|
name: string |
||||
|
describing: string |
||||
|
departmentCode: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
deletionTime: Date |
||||
|
deleterId: byte[] |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询故障类型列表
|
||||
|
export const getBasicFaultTypePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/basic-fault-type/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/basic-fault-type/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询故障类型详情
|
||||
|
export const getBasicFaultType = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/basic-fault-type/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增故障类型
|
||||
|
export const createBasicFaultType = async (data: BasicFaultTypeVO) => { |
||||
|
return await request.post({ url: `/eam/basic-fault-type/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改故障类型
|
||||
|
export const updateBasicFaultType = async (data: BasicFaultTypeVO) => { |
||||
|
return await request.put({ url: `/eam/basic-fault-type/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除故障类型
|
||||
|
export const deleteBasicFaultType = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/basic-fault-type/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出故障类型 Excel
|
||||
|
export const exportBasicFaultType = async (params) => { |
||||
|
return await request.download({ url: `/eam/basic-fault-type/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/eam/basic-fault-type/get-import-template' }) |
||||
|
} |
@ -0,0 +1,56 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface DocumentTypeVO { |
||||
|
id: number |
||||
|
code: string |
||||
|
name: string |
||||
|
type: string |
||||
|
departmentCode: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
deletionTime: Date |
||||
|
deleterId: byte[] |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询文档类型列表
|
||||
|
export const getDocumentTypePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/document-type/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/document-type/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询文档类型详情
|
||||
|
export const getDocumentType = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/document-type/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增文档类型
|
||||
|
export const createDocumentType = async (data: DocumentTypeVO) => { |
||||
|
return await request.post({ url: `/eam/document-type/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改文档类型
|
||||
|
export const updateDocumentType = async (data: DocumentTypeVO) => { |
||||
|
return await request.put({ url: `/eam/document-type/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除文档类型
|
||||
|
export const deleteDocumentType = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/document-type/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出文档类型 Excel
|
||||
|
export const exportDocumentType = async (params) => { |
||||
|
return await request.download({ url: `/eam/document-type/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/eam/document-type/get-import-template' }) |
||||
|
} |
@ -0,0 +1,56 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface EquipmentMainPartVO { |
||||
|
id: number |
||||
|
name: string |
||||
|
code: string |
||||
|
type: string |
||||
|
departmentCode: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
deletionTime: Date |
||||
|
deleterId: byte[] |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询主要部件列表
|
||||
|
export const getEquipmentMainPartPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/equipment-main-part/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/equipment-main-part/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询主要部件详情
|
||||
|
export const getEquipmentMainPart = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/equipment-main-part/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增主要部件
|
||||
|
export const createEquipmentMainPart = async (data: EquipmentMainPartVO) => { |
||||
|
return await request.post({ url: `/eam/equipment-main-part/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改主要部件
|
||||
|
export const updateEquipmentMainPart = async (data: EquipmentMainPartVO) => { |
||||
|
return await request.put({ url: `/eam/equipment-main-part/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除主要部件
|
||||
|
export const deleteEquipmentMainPart = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/equipment-main-part/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出主要部件 Excel
|
||||
|
export const exportEquipmentMainPart = async (params) => { |
||||
|
return await request.download({ url: `/eam/equipment-main-part/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/eam/equipment-main-part/get-import-template' }) |
||||
|
} |
@ -0,0 +1,60 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ContainerDetailRequestVO { |
||||
|
id: number |
||||
|
masterId: number |
||||
|
number: string |
||||
|
containerNumber: string |
||||
|
fromLocationCode: string |
||||
|
toLocationCode: string |
||||
|
qty: number |
||||
|
uom: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
concurrencyStamp: number |
||||
|
fromOwnerCode: string |
||||
|
toOwnerCode: string |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理申请子列表
|
||||
|
export const getContainerDetailRequestPage = async (params) => { |
||||
|
console.log(params); |
||||
|
|
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/container-detail-request/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/container-detail-request/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理申请子详情
|
||||
|
export const getContainerDetailRequest = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/container-detail-request/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增器具管理申请子
|
||||
|
export const createContainerDetailRequest = async (data: ContainerDetailRequestVO) => { |
||||
|
return await request.post({ url: `/wms/container-detail-request/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改器具管理申请子
|
||||
|
export const updateContainerDetailRequest = async (data: ContainerDetailRequestVO) => { |
||||
|
return await request.put({ url: `/wms/container-detail-request/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除器具管理申请子
|
||||
|
export const deleteContainerDetailRequest = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/container-detail-request/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出器具管理申请子 Excel
|
||||
|
export const exportContainerDetailRequest = async (params) => { |
||||
|
return await request.download({ url: `/wms/container-detail-request/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/container-detail-request/get-import-template' }) |
||||
|
} |
@ -0,0 +1,82 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ContainerMainRequestVO { |
||||
|
id: number |
||||
|
type: string |
||||
|
available: string |
||||
|
remark: string |
||||
|
extraProperties: string |
||||
|
concurrencyStamp: number |
||||
|
siteId: string |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理申请主列表
|
||||
|
export const getContainerMainRequestPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/container-main-request/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/container-main-request/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理申请主详情
|
||||
|
export const getContainerMainRequest = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/container-main-request/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增器具管理申请主
|
||||
|
export const createContainerMainRequest = async (data: ContainerMainRequestVO) => { |
||||
|
return await request.post({ url: `/wms/container-main-request/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改器具管理申请主
|
||||
|
export const updateContainerMainRequest = async (data: ContainerMainRequestVO) => { |
||||
|
return await request.put({ url: `/wms/container-main-request/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除器具管理申请主
|
||||
|
export const deleteContainerMainRequest = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/container-main-request/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出器具管理申请主 Excel
|
||||
|
export const exportContainerMainRequest = async (params) => { |
||||
|
return await request.download({ url: `/wms/container-main-request/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/container-main-request/get-import-template' }) |
||||
|
} |
||||
|
|
||||
|
// 关闭
|
||||
|
export const close = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/close?id=' + id }) |
||||
|
} |
||||
|
|
||||
|
// 重新添加
|
||||
|
export const reAdd = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/reAdd?id=' + id }) |
||||
|
} |
||||
|
|
||||
|
// 提交审批
|
||||
|
export const submit = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/submit?id=' + id }) |
||||
|
} |
||||
|
|
||||
|
// 驳回
|
||||
|
export const refused = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/refused?id=' + id }) |
||||
|
} |
||||
|
|
||||
|
// 审批通过
|
||||
|
export const agree = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/agree?id=' + id }) |
||||
|
} |
||||
|
|
||||
|
// 处理
|
||||
|
export const handle = (id) => { |
||||
|
return request.put({ url: '/wms/container-main-request/handle?id=' + id }) |
||||
|
} |
@ -0,0 +1,58 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ContainerRecordDetailVO { |
||||
|
id: number |
||||
|
masterId: number |
||||
|
number: string |
||||
|
containerNumber: string |
||||
|
fromLocationCode: string |
||||
|
toLocationCode: string |
||||
|
qty: number |
||||
|
uom: string |
||||
|
remark: string |
||||
|
siteId: string |
||||
|
concurrencyStamp: number |
||||
|
fromOwnerCode: string |
||||
|
toOwnerCode: string |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理记录子列表
|
||||
|
export const getContainerRecordDetailPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/container-record-detail/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/container-record-detail/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理记录子详情
|
||||
|
export const getContainerRecordDetail = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/container-record-detail/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增器具管理记录子
|
||||
|
export const createContainerRecordDetail = async (data: ContainerRecordDetailVO) => { |
||||
|
return await request.post({ url: `/wms/container-record-detail/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改器具管理记录子
|
||||
|
export const updateContainerRecordDetail = async (data: ContainerRecordDetailVO) => { |
||||
|
return await request.put({ url: `/wms/container-record-detail/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除器具管理记录子
|
||||
|
export const deleteContainerRecordDetail = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/container-record-detail/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出器具管理记录子 Excel
|
||||
|
export const exportContainerRecordDetail = async (params) => { |
||||
|
return await request.download({ url: `/wms/container-record-detail/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/container-record-detail/get-import-template' }) |
||||
|
} |
@ -0,0 +1,56 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ContainerRecordMainVO { |
||||
|
id: number |
||||
|
type: string |
||||
|
number: string |
||||
|
requestNumber: string |
||||
|
status: string |
||||
|
available: string |
||||
|
remark: string |
||||
|
extraProperties: string |
||||
|
concurrencyStamp: number |
||||
|
siteId: string |
||||
|
departmentCode: string |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理记录主列表
|
||||
|
export const getContainerRecordMainPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/container-record-main/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/container-record-main/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询器具管理记录主详情
|
||||
|
export const getContainerRecordMain = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/container-record-main/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增器具管理记录主
|
||||
|
export const createContainerRecordMain = async (data: ContainerRecordMainVO) => { |
||||
|
return await request.post({ url: `/wms/container-record-main/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改器具管理记录主
|
||||
|
export const updateContainerRecordMain = async (data: ContainerRecordMainVO) => { |
||||
|
return await request.put({ url: `/wms/container-record-main/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除器具管理记录主
|
||||
|
export const deleteContainerRecordMain = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/container-record-main/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出器具管理记录主 Excel
|
||||
|
export const exportContainerRecordMain = async (params) => { |
||||
|
return await request.download({ url: `/wms/container-record-main/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/container-record-main/get-import-template' }) |
||||
|
} |
@ -0,0 +1,63 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface CustomerDeliveryForecastVO { |
||||
|
schdSite: string |
||||
|
schdOrder: string |
||||
|
schdLine: string |
||||
|
schdCust: string |
||||
|
schdShipto: string |
||||
|
schdDock: string |
||||
|
schdPart: string |
||||
|
schdNetReq: string |
||||
|
schdDate: Date |
||||
|
schdTime: Date |
||||
|
schdReference: string |
||||
|
schdOrdMult: string |
||||
|
schdCustpart: string |
||||
|
schdPkgCode: string |
||||
|
schdModelyr: string |
||||
|
schdCustref: string |
||||
|
schdPcrQty: string |
||||
|
available: string |
||||
|
} |
||||
|
|
||||
|
// 查询客户发货预测列表
|
||||
|
export const getCustomerDeliveryForecastPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/customer-delivery-forecast/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/customer-delivery-forecast/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询客户发货预测详情
|
||||
|
export const getCustomerDeliveryForecast = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/customer-delivery-forecast/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增客户发货预测
|
||||
|
export const createCustomerDeliveryForecast = async (data: CustomerDeliveryForecastVO) => { |
||||
|
return await request.post({ url: `/wms/customer-delivery-forecast/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改客户发货预测
|
||||
|
export const updateCustomerDeliveryForecast = async (data: CustomerDeliveryForecastVO) => { |
||||
|
return await request.put({ url: `/wms/customer-delivery-forecast/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除客户发货预测
|
||||
|
export const deleteCustomerDeliveryForecast = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/customer-delivery-forecast/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出客户发货预测 Excel
|
||||
|
export const exportCustomerDeliveryForecast = async (params) => { |
||||
|
return await request.download({ url: `/wms/customer-delivery-forecast/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/customer-delivery-forecast/get-import-template' }) |
||||
|
} |
@ -0,0 +1,160 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const BasicFaultCauseRules = reactive({ |
||||
|
code: [required], |
||||
|
name: [required], |
||||
|
}) |
||||
|
|
||||
|
export const BasicFaultCause = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '父id(没有则为0)', |
||||
|
field: 'parentId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'describing', |
||||
|
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: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TURE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TURE' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '删除时间', |
||||
|
field: 'deletionTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail: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, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="BasicFaultCause.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="BasicFaultCause.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="BasicFaultCauseRules" |
||||
|
:formAllSchemas="BasicFaultCause.allSchemas" |
||||
|
:apiUpdate="BasicFaultCauseApi.updateBasicFaultCause" |
||||
|
:apiCreate="BasicFaultCauseApi.createBasicFaultCause" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="BasicFaultCause.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/eam/basic-fault-cause/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { BasicFaultCause,BasicFaultCauseRules } from './basicFaultCause.data' |
||||
|
import * as BasicFaultCauseApi from '@/api/eam/basicFaultCause' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'BasicFaultCause' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(BasicFaultCause.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: BasicFaultCauseApi.getBasicFaultCausePage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'eam:basicFaultCause:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'eam:basicFaultCause:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'eam:basicFaultCause:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'eam:basicFaultCause:update'}), // 编辑 |
||||
|
//defaultButtons.mainListDeleteBtn({hasPermi:'eam:basicFaultCause:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =BasicFaultCause.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await BasicFaultCauseApi.createBasicFaultCause(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await BasicFaultCauseApi.updateBasicFaultCause(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicBasicFaultCause') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await BasicFaultCauseApi.deleteBasicFaultCause(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await BasicFaultCauseApi.exportBasicFaultCause(tableObject.params) |
||||
|
download.excel(data, '故障原因.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '故障原因导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await BasicFaultCauseApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,147 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const BasicFaultTypeRules = reactive({ |
||||
|
code: [required], |
||||
|
name: [required], |
||||
|
}) |
||||
|
|
||||
|
export const BasicFaultType = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'describing', |
||||
|
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: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TURE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TURE' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '删除时间', |
||||
|
field: 'deletionTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail: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, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="BasicFaultType.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="BasicFaultType.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="BasicFaultTypeRules" |
||||
|
:formAllSchemas="BasicFaultType.allSchemas" |
||||
|
:apiUpdate="BasicFaultTypeApi.updateBasicFaultType" |
||||
|
:apiCreate="BasicFaultTypeApi.createBasicFaultType" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="BasicFaultType.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/eam/basic-fault-type/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { BasicFaultType,BasicFaultTypeRules } from './basicFaultType.data' |
||||
|
import * as BasicFaultTypeApi from '@/api/eam/basicFaultType' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'BasicFaultType' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(BasicFaultType.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: BasicFaultTypeApi.getBasicFaultTypePage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'eam:basicFaultType:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'eam:basicFaultType:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'eam:basicFaultType:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'eam:basicFaultType:update'}), // 编辑 |
||||
|
//defaultButtons.mainListDeleteBtn({hasPermi:'eam:basicFaultType:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =BasicFaultType.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await BasicFaultTypeApi.createBasicFaultType(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await BasicFaultTypeApi.updateBasicFaultType(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicBasicFaultType') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await BasicFaultTypeApi.deleteBasicFaultType(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await BasicFaultTypeApi.exportBasicFaultType(tableObject.params) |
||||
|
download.excel(data, '故障类型.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '故障类型导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await BasicFaultTypeApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,149 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const DocumentTypeRules = reactive({ |
||||
|
code: [required], |
||||
|
name: [required], |
||||
|
type: [required], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
export const DocumentType = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型设备', |
||||
|
field: 'type', |
||||
|
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: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TURE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TURE' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '删除时间', |
||||
|
field: 'deletionTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail: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, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="DocumentType.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="DocumentType.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="DocumentTypeRules" |
||||
|
:formAllSchemas="DocumentType.allSchemas" |
||||
|
:apiUpdate="DocumentTypeApi.updateDocumentType" |
||||
|
:apiCreate="DocumentTypeApi.createDocumentType" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="DocumentType.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/eam/document-type/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { DocumentType,DocumentTypeRules } from './documentType.data' |
||||
|
import * as DocumentTypeApi from '@/api/eam/documentType' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'DocumentType' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(DocumentType.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: DocumentTypeApi.getDocumentTypePage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'eam:documentType:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'eam:documentType:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'eam:documentType:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'eam:documentType:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'eam:documentType:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =DocumentType.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await DocumentTypeApi.createDocumentType(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await DocumentTypeApi.updateDocumentType(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicDocumentType') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await DocumentTypeApi.deleteDocumentType(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await DocumentTypeApi.exportDocumentType(tableObject.params) |
||||
|
download.excel(data, '文档类型.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '文档类型导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await DocumentTypeApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,149 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const EquipmentMainPartRules = reactive({ |
||||
|
name: [required], |
||||
|
code: [required], |
||||
|
type: [required], |
||||
|
}) |
||||
|
|
||||
|
export const EquipmentMainPart = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备工装枚举', |
||||
|
field: 'type', |
||||
|
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: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TURE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TURE' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '删除时间', |
||||
|
field: 'deletionTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail: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, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="EquipmentMainPart.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="EquipmentMainPart.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="EquipmentMainPartRules" |
||||
|
:formAllSchemas="EquipmentMainPart.allSchemas" |
||||
|
:apiUpdate="EquipmentMainPartApi.updateEquipmentMainPart" |
||||
|
:apiCreate="EquipmentMainPartApi.createEquipmentMainPart" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="EquipmentMainPart.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/eam/equipment-main-part/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { EquipmentMainPart,EquipmentMainPartRules } from './equipmentMainPart.data' |
||||
|
import * as EquipmentMainPartApi from '@/api/eam/equipmentMainPart' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'EquipmentMainPart' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(EquipmentMainPart.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: EquipmentMainPartApi.getEquipmentMainPartPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'eam:equipmentMainPart:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'eam:equipmentMainPart:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'eam:equipmentMainPart:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'eam:equipmentMainPart:update'}), // 编辑 |
||||
|
//defaultButtons.mainListDeleteBtn({hasPermi:'eam:equipmentMainPart:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =EquipmentMainPart.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await EquipmentMainPartApi.createEquipmentMainPart(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await EquipmentMainPartApi.updateEquipmentMainPart(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicEquipmentMainPart') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await EquipmentMainPartApi.deleteEquipmentMainPart(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await EquipmentMainPartApi.exportEquipmentMainPart(tableObject.params) |
||||
|
download.excel(data, '主要部件.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '主要部件导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await EquipmentMainPartApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,127 @@ |
|||||
|
<template> |
||||
|
<Dialog |
||||
|
:title="dialogTitle" |
||||
|
v-model="dialogVisible" |
||||
|
:close-on-click-modal="true" |
||||
|
:vLoading="formLoading" |
||||
|
width="600px" |
||||
|
> |
||||
|
<template #title>{{ dialogTitle }} </template> |
||||
|
<el-form :model="form"> |
||||
|
<el-form-item label="工序"> |
||||
|
<el-input v-model="form.processCode" disabled /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="生产人员"> |
||||
|
<el-select v-model="form.personSelected" multiple> |
||||
|
<el-option v-for="item in personOption" :key="item.workerCode" :label="item.workerName" :value="item.workerCode" /> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="质检人员"> |
||||
|
<el-input v-model="form.checkPerson" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="合格数量" @change="handleCount" :key="qcount"> |
||||
|
<el-input-number |
||||
|
v-model="form.qualified" |
||||
|
@change="handleCount" |
||||
|
></el-input-number> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="不合格数量"> |
||||
|
<el-input-number v-model="form.unqualified" @change="handleCount" :key="qcount"></el-input-number> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="不合格原因"> |
||||
|
<el-input v-model="form.remark"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<template #footer> |
||||
|
<el-button @click="dialogVisible = false">关闭</el-button> |
||||
|
<el-button type="primary" :disabled="saveFlag" @click="saveReport">保存</el-button> |
||||
|
</template> </Dialog |
||||
|
> |
||||
|
</template> |
||||
|
<script lang="ts" setup> |
||||
|
import { Dialog } from '@/components/Dialog' |
||||
|
import * as workschedulingApi from '@/api/mes/workScheduling' |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const rowData = ref() |
||||
|
const dialogVisible = ref(false) |
||||
|
const dialogTitle = ref() |
||||
|
const formLoading = ref(false) |
||||
|
const personOption=ref([]) |
||||
|
const saveFlag=ref(false) |
||||
|
const planDayCode=ref() |
||||
|
const form = reactive({ |
||||
|
id:0, |
||||
|
planDayCode: "", |
||||
|
processCode:"", |
||||
|
personSelected:[], |
||||
|
qualified:0, |
||||
|
unqualified:0, |
||||
|
remark:"", |
||||
|
checkPerson:"" |
||||
|
}) |
||||
|
const openDetail = async (row: any, titleName: any,code:string) => { |
||||
|
rowData.value = row |
||||
|
//console.log('row-68',row) |
||||
|
dialogVisible.value = true |
||||
|
dialogTitle.value = titleName |
||||
|
form.processCode=row.nodeCode |
||||
|
form.personSelected=[] |
||||
|
form.planDayCode=code |
||||
|
form.personSelected=[] |
||||
|
form.qualified=0 |
||||
|
form.unqualified=0 |
||||
|
form.id=row.id |
||||
|
planDayCode.value=code |
||||
|
getCurrentWorkerList(row.nodeCode) |
||||
|
|
||||
|
} |
||||
|
|
||||
|
//获取工序人员 |
||||
|
const getCurrentWorkerList = async (val) => { |
||||
|
|
||||
|
let params = { |
||||
|
planDayCode: planDayCode.value, |
||||
|
processCode: val |
||||
|
} |
||||
|
personOption.value = await workschedulingApi.getCurrentWorkerList(params) |
||||
|
|
||||
|
} |
||||
|
const qcount=ref(0) |
||||
|
//数量处理 |
||||
|
const handleCount = () => { |
||||
|
qcount.value++ |
||||
|
if (form.qualified> rowData.value.planCount - form.unqualified) { |
||||
|
message.alert('合格数量超限!计划总数【'+rowData.value.planCount+'】') |
||||
|
form.qualified =rowData.value.planCount - form.unqualified |
||||
|
|
||||
|
return |
||||
|
} |
||||
|
|
||||
|
if (form.unqualified> rowData.value.planCount -form.qualified ) { |
||||
|
message.alert('不合格数量超限!') |
||||
|
form.unqualified =rowData.value.planCount-form.qualified |
||||
|
return |
||||
|
} |
||||
|
} |
||||
|
//提交质检 |
||||
|
const saveReport = async() => { |
||||
|
|
||||
|
saveFlag.value = true |
||||
|
try { |
||||
|
await workschedulingApi.processQualified(form) |
||||
|
}finally{ |
||||
|
saveFlag.value = false |
||||
|
dialogVisible.value = false |
||||
|
emit('close') |
||||
|
} |
||||
|
//console.log("report-saveReport-82",data) |
||||
|
//await workschedulingApi.reportWorkByProcess(data) |
||||
|
|
||||
|
} |
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits(['success', 'close']) |
||||
|
defineOptions({ name: 'qualifiedCheck' }) |
||||
|
defineExpose({ openDetail }) // 提供 open 方法,用于打开弹窗 |
||||
|
</script> |
@ -0,0 +1,185 @@ |
|||||
|
<template> |
||||
|
<Dialog |
||||
|
:title="dialogTitle" |
||||
|
v-model="dialogVisible" |
||||
|
:close-on-click-modal="true" |
||||
|
:vLoading="formLoading" |
||||
|
width="fit-content" |
||||
|
> |
||||
|
<template #title>{{ dialogTitle }} </template> |
||||
|
<el-button type="primary" @click="addRow" style="float:right;;">添加</el-button> |
||||
|
<el-table :data="tableData" style="border: 1px;stripe; width:1300px ;" > |
||||
|
<el-table-column prop="processName" label="工序名称" width="200px"> |
||||
|
<template #default="scope"> |
||||
|
<el-select v-model="scope.row.processCodeSelected" @change="processChange" value-key="processCode"> |
||||
|
<el-option v-for="item in processOption" :key="item.processCode" :label="item.processName" :value="item.processCode" /> |
||||
|
</el-select> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="reportName" label="报工人" width="200px"> |
||||
|
<template #default="scope"> |
||||
|
<el-select v-model="scope.row.personSelected" multiple :value-key="workerCode"> |
||||
|
<el-option v-for="item in personOption" :key="item.workerCode" :label="item.workerName" :value="item.workerCode" /> |
||||
|
</el-select> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="reportCount" label="报工数量" width="200px" > |
||||
|
<template #default="scope"> |
||||
|
<el-input-number v-model="scope.row.reportCount" @change="handleCount(scope.row)" :key="count"></el-input-number> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="workTerm" label="工时" width="200px" > |
||||
|
<template #default="scope"> |
||||
|
<el-input-number v-model="scope.row.workTerm"></el-input-number> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="checkFlag" label="已质检" width="80px" > |
||||
|
<template #default="scope"> |
||||
|
|
||||
|
<el-switch inactive-value="false" v-model="scope.row.checkFlag" ></el-switch> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="qualified" label="合格数" width="200px" > |
||||
|
|
||||
|
<template #default="scope" > |
||||
|
<el-input-number v-model="scope.row.qualified" @change="handleCount(scope.row)" :key="qcount" :disabled="scope.row.checkFlag=='false'" ></el-input-number> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column prop="unqualified" label="不合格数" width="100px"> |
||||
|
<template #default="scope"> |
||||
|
<el-input v-model="scope.row.unqualified" disabled="true">{{scope.row.unqualified= scope.row.reportCount -scope.row.qualified}}</el-input> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="操作" width="100px"> |
||||
|
<template #default="scope"> |
||||
|
<el-button type="text" @click="deleteRow(scope.$index)">删除</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
|
||||
|
<template #footer> |
||||
|
<el-button @click="dialogVisible = false">关闭</el-button> |
||||
|
<el-button type="primary" :disabled="saveFlag" @click="saveReport">保存</el-button> |
||||
|
</template> </Dialog |
||||
|
> |
||||
|
</template> |
||||
|
<script lang="ts" setup> |
||||
|
import { Dialog } from '@/components/Dialog' |
||||
|
import * as workschedulingApi from '@/api/mes/workScheduling' |
||||
|
import dayjs from 'dayjs' |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const rowData = ref() |
||||
|
const openDetail = async (row: any, titleName: any) => { |
||||
|
rowData.value = row |
||||
|
dialogVisible.value = true |
||||
|
dialogTitle.value = titleName |
||||
|
getProcessList(row) |
||||
|
|
||||
|
} |
||||
|
const dialogVisible = ref(false) |
||||
|
const dialogTitle = ref() |
||||
|
const formLoading = ref(false) |
||||
|
const processOption = ref([]) |
||||
|
const personOption=ref([]) |
||||
|
const processCodeSelected = ref() |
||||
|
const personSelected = ref() |
||||
|
const checkFlag = ref(false) |
||||
|
const reportCount = ref() |
||||
|
const workTerm = ref() |
||||
|
const saveFlag=ref(false) |
||||
|
const tableData=ref([{}]) |
||||
|
const addRow=()=>{ |
||||
|
|
||||
|
if(tableData.value.length<processOption.value.length){ |
||||
|
tableData.value.push({ |
||||
|
processCode:processCodeSelected.value, |
||||
|
processName:processOption.value?.find(item=>item.processCode==processCodeSelected.value)?.processName, |
||||
|
reportName:personOption.value?.find(item=>item.workerCode==personSelected.value)?.workerName, |
||||
|
reportCount:reportCount.value, |
||||
|
workTerm:workTerm.value, |
||||
|
checkFlag:checkFlag.value}) |
||||
|
}else{ |
||||
|
message.alert('超出可报工的工序数量,不能再添加!') |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
const deleteRow = (index: number) => { |
||||
|
tableData.value.splice(index, 1) |
||||
|
} |
||||
|
//获取工序列表 |
||||
|
const getProcessList=async(row)=>{ |
||||
|
let params={ |
||||
|
planDayCode:row.planMasterCode, |
||||
|
schedulingCode:row.schedulingCode |
||||
|
} |
||||
|
processOption.value=await workschedulingApi.getProcessList(params) |
||||
|
} |
||||
|
const processChange=(val:any)=>{ |
||||
|
//console.log("processChange-81",val) |
||||
|
getCurrentWorkerList(val) |
||||
|
} |
||||
|
//获取工序人员 |
||||
|
const getCurrentWorkerList = async (val) => { |
||||
|
//console.log("personOption-91",val) |
||||
|
let params = { |
||||
|
planDayCode: rowData.value.planMasterCode, |
||||
|
processCode: val |
||||
|
} |
||||
|
personOption.value = await workschedulingApi.getCurrentWorkerList(params) |
||||
|
|
||||
|
} |
||||
|
const count = ref(0) |
||||
|
const qcount = ref(1) |
||||
|
//报工数量处理 |
||||
|
const handleCount = (row) => { |
||||
|
if (row.reportCount > rowData.value.planCount) { |
||||
|
message.alert('报工数量不能超出计划数量!计划数【'+rowData.value.planCount+'】') |
||||
|
row.reportCount =rowData.value.planCount |
||||
|
//tableData.value[index].reportCount =rowData.value.planCount |
||||
|
count.value++ |
||||
|
return |
||||
|
} |
||||
|
//message.alert(row.checkFlag==true?'1':'2') |
||||
|
if (row.checkFlag) { |
||||
|
if (row.reportCount < row.qualified) { |
||||
|
message.alert('合格数不能超出报工数!') |
||||
|
row.qualified=row.reportCount |
||||
|
qcount.value++ |
||||
|
return |
||||
|
} |
||||
|
if (row.qualified == undefined || row.qualified == 0) { |
||||
|
row.qualified = row.reportCount |
||||
|
qcount.value++ |
||||
|
} |
||||
|
|
||||
|
row.unqualified= row.reportCount- row.qualified |
||||
|
} |
||||
|
} |
||||
|
//提交报工 |
||||
|
const saveReport = async() => { |
||||
|
|
||||
|
saveFlag.value = true |
||||
|
try { |
||||
|
let data = { |
||||
|
planMasterCode: rowData.value.planMasterCode, |
||||
|
schedulingCode: rowData.value.schedulingCode, |
||||
|
schedulingDetailList: tableData.value |
||||
|
} |
||||
|
//console.log("report-saveReport-170",data) |
||||
|
workschedulingApi.reportWorkByTask(data) |
||||
|
}finally{ |
||||
|
saveFlag.value = false |
||||
|
dialogVisible.value = false |
||||
|
emit('close') |
||||
|
} |
||||
|
//console.log("report-saveReport-82",data) |
||||
|
//await workschedulingApi.reportWorkByProcess(data) |
||||
|
|
||||
|
} |
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits(['success', 'close']) |
||||
|
|
||||
|
defineExpose({ openDetail }) // 提供 open 方法,用于打开弹窗 |
||||
|
</script> |
@ -0,0 +1,135 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const CustomerDeliveryForecastRules = reactive({ |
||||
|
}) |
||||
|
|
||||
|
export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '地点代码', |
||||
|
field: 'schdSite', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '销售日程单号', |
||||
|
field: 'schdOrder', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '日程单行号', |
||||
|
field: 'schdLine', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '客户代码', |
||||
|
field: 'schdCust', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '发货至', |
||||
|
field: 'schdShipto', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '码头', |
||||
|
field: 'schdDock', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '物料编码', |
||||
|
field: 'schdPart', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '净需求', |
||||
|
field: 'schdNetReq', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '需求日期', |
||||
|
field: 'schdDate', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
valueFormat: 'x' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '需求时间', |
||||
|
field: 'schdTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
valueFormat: 'x' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '需求参考', |
||||
|
field: 'schdReference', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '包装倍数', |
||||
|
field: 'schdOrdMult', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '客户零件号', |
||||
|
field: 'schdCustpart', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '包装代码', |
||||
|
field: 'schdPkgCode', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '模型年', |
||||
|
field: 'schdModelyr', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '客户参考', |
||||
|
field: 'schdCustref', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '先前累计需求数量', |
||||
|
field: 'schdPcrQty', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '操作',
|
||||
|
// field: 'action',
|
||||
|
// isForm: false,
|
||||
|
// table: {
|
||||
|
// width: 150,
|
||||
|
// fixed: 'right'
|
||||
|
// }
|
||||
|
// }
|
||||
|
])) |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="CustomerDeliveryForecast.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="CustomerDeliveryForecast.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="CustomerDeliveryForecastRules" |
||||
|
:formAllSchemas="CustomerDeliveryForecast.allSchemas" |
||||
|
:apiUpdate="CustomerDeliveryForecastApi.updateCustomerDeliveryForecast" |
||||
|
:apiCreate="CustomerDeliveryForecastApi.createCustomerDeliveryForecast" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="CustomerDeliveryForecast.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/customer-delivery-forecast/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { CustomerDeliveryForecast,CustomerDeliveryForecastRules } from './customerDeliveryForecast.data' |
||||
|
import * as CustomerDeliveryForecastApi from '@/api/wms/customerDeliveryForecast' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'CustomerDeliveryForecast' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(CustomerDeliveryForecast.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:customerDeliveryForecast:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:customerDeliveryForecast:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:customerDeliveryForecast:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'wms:customerDeliveryForecast:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'wms:customerDeliveryForecast:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =CustomerDeliveryForecast.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await CustomerDeliveryForecastApi.createCustomerDeliveryForecast(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await CustomerDeliveryForecastApi.updateCustomerDeliveryForecast(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicCustomerDeliveryForecast') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await CustomerDeliveryForecastApi.deleteCustomerDeliveryForecast(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await CustomerDeliveryForecastApi.exportCustomerDeliveryForecast(tableObject.params) |
||||
|
download.excel(data, '客户发货预测.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '客户发货预测导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await CustomerDeliveryForecastApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,504 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { TableColumn } from '@/types/table' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
import * as BalanceApi from '@/api/wms/balance' |
||||
|
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
||||
|
|
||||
|
import * as LocationApi from '@/api/wms/location' |
||||
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
||||
|
|
||||
|
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerMainRequestRules = reactive({ |
||||
|
type:[ |
||||
|
{ required: true, message: '请选择类型', trigger: 'change' }, |
||||
|
], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
||||
|
const queryParams = { |
||||
|
pageSize:10, |
||||
|
pageNo:1, |
||||
|
code:'ContainerRequest' |
||||
|
} |
||||
|
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
||||
|
const requestsettingData =data?.list[0]||{} |
||||
|
|
||||
|
// 获取当前操作人的部门
|
||||
|
import { useUserStore } from '@/store/modules/user' |
||||
|
const userStore = useUserStore() |
||||
|
const userDept = userStore.userSelfInfo.dept |
||||
|
// id 转str 否则form回显匹配不到
|
||||
|
userDept.id = userDept.id.toString() |
||||
|
const userDeptArray:any = [userDept] |
||||
|
|
||||
|
export const ContainerMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, { |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
dictType: DICT_TYPE.REQUEST_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 120 |
||||
|
}, |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '部门', |
||||
|
field: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
||||
|
return userDeptArray.find((account) => account.id == cellValue)?.name |
||||
|
}, |
||||
|
form: { |
||||
|
value: userDept.id, |
||||
|
component: 'Select', |
||||
|
api: () => userDeptArray, |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
optionsAlias: { |
||||
|
labelField: 'name', |
||||
|
valueField: 'id' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动提交', |
||||
|
field: 'autoCommit', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoCommit, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动通过', |
||||
|
field: 'autoAgree', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoAgree, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动执行', |
||||
|
field: 'autoExecute', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoExecute, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '直接生成记录', |
||||
|
field: 'directCreateRecord', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.directCreateRecord, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '扩展属性', |
||||
|
field: 'extraProperties', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerDetailRequestRules = reactive({ |
||||
|
toLocationCode: [ |
||||
|
{ required: true, message: '请选择目标库位', trigger: 'blur' } |
||||
|
], |
||||
|
containerNumber: [ |
||||
|
{ required: true, message: '请选择器具号', trigger: 'blur' } |
||||
|
], |
||||
|
toinventoryStatus: [ |
||||
|
{ required: true, message: '请选择倒库存状态', trigger: 'blur' } |
||||
|
], |
||||
|
toQty: [ |
||||
|
{ required: true, message: '请输入到数量', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
export const ContainerDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '主表ID', |
||||
|
field: 'masterId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '器具号', |
||||
|
field: 'containerNumber', |
||||
|
sort: 'custom', |
||||
|
tableForm:{ |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '库存余额信息', |
||||
|
searchAllSchemas: Balance.allSchemas, |
||||
|
searchPage: BalanceApi.selectConfigToBalance, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '库存余额信息', |
||||
|
searchAllSchemas: Balance.allSchemas, |
||||
|
searchPage: BalanceApi.selectConfigToBalance, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '来源库位代码', |
||||
|
field: 'fromLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '目标库位代码', |
||||
|
field: 'toLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm:{ |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '从库存状态', |
||||
|
field: 'fromInventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到库存状态', |
||||
|
field: 'toInventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '从数量',
|
||||
|
// field: 'fromQty',
|
||||
|
// sort: 'custom',
|
||||
|
// tableForm: {
|
||||
|
// disabled: true,
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '到数量', |
||||
|
field: 'toQty', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm:{ |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从货主代码', |
||||
|
field: 'fromOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '到货主代码', |
||||
|
field: 'toOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
@ -0,0 +1,507 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="ContainerMainRequest.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #number="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.number)"> |
||||
|
<span>{{ row.number }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row,$index }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="ContainerMainRequestRules" |
||||
|
:formAllSchemas="ContainerMainRequest.allSchemas" |
||||
|
:tableAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:tableFormRules="ContainerDetailRequestRules" |
||||
|
:tableData="tableData" |
||||
|
:apiUpdate="ContainerMainRequestApi.updateContainerMainRequest" |
||||
|
:apiCreate="ContainerMainRequestApi.createContainerMainRequest" |
||||
|
:isBusiness="true" |
||||
|
fromeWhere="ContainerMainRequest" |
||||
|
@handleAddTable="handleAddTable" |
||||
|
@handleDeleteTable="handleDeleteTable" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
@submitForm="submitForm" |
||||
|
:isShowButton = isShowButton |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="false" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:detailAllSchemasRules="ContainerDetailRequestRules" |
||||
|
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest" |
||||
|
:apiUpdate="ContainerDetailRequestApi.updateContainerDetailRequest" |
||||
|
:apiPage="ContainerDetailRequestApi.getContainerDetailRequestPage" |
||||
|
:apiDelete="ContainerDetailRequestApi.deleteContainerDetailRequest" |
||||
|
fromeWhere="ContainerDetailRequest" |
||||
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
||||
|
:detailButtonIsShowAdd="trueFalse" |
||||
|
:detailButtonIsShowDelete="trueFalse" |
||||
|
/> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/container-main-request/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ContainerMainRequest,ContainerMainRequestRules,ContainerDetailRequest,ContainerDetailRequestRules } from './containerMainRequest.data' |
||||
|
import * as ContainerMainRequestApi from '@/api/wms/containerMainRequest' |
||||
|
import * as ContainerDetailRequestApi from '@/api/wms/containerDetailRequest' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'ContainerManageRequest' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const businessType = ref() |
||||
|
const fromLocationCode = ref() |
||||
|
const toLocationCode = ref() |
||||
|
const importFileName = ref() |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(ContainerMainRequest.allSchemas.tableColumns) |
||||
|
console.log(99 , routeName.value) |
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ContainerDetailRequestApi.getContainerDetailRequestPage // 分页接口 |
||||
|
}) |
||||
|
// 判断 路由名称 进行条件过滤 |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
if ( routeName.value == 'ReturnContainerManageRequest') { |
||||
|
tableObject.params = { |
||||
|
type:'RETURN' |
||||
|
} |
||||
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{ |
||||
|
if(item.field == 'type'){ |
||||
|
item.value = "RETURN" |
||||
|
}}); |
||||
|
businessType.value = 'ReturnContainerManage' |
||||
|
importFileName.value = '器具返回申请' |
||||
|
} else if ( routeName.value == 'MoveContainerManageRequest') { |
||||
|
tableObject.params = { |
||||
|
type:'MOVE' |
||||
|
} |
||||
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{ |
||||
|
if(item.field == 'type'){ |
||||
|
item.value = "MOVE" |
||||
|
}}); |
||||
|
businessType.value = 'MoveContainerManage' |
||||
|
importFileName.value = '器具转移申请' |
||||
|
} else if ( routeName.value == 'DeliverContainerManageRequest') { |
||||
|
tableObject.params = { |
||||
|
type: 'DELIVER', |
||||
|
} |
||||
|
//主表字段赋值 |
||||
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{ |
||||
|
if(item.field == 'type'){ |
||||
|
item.value = "DELIVER" |
||||
|
}}); |
||||
|
businessType.value = 'DeliverContainerManage' |
||||
|
importFileName.value = '器具发运申请' |
||||
|
} else if( routeName.value == 'ContainerManageRequest'){ |
||||
|
businessType.value = 'ContainerManage' |
||||
|
importFileName.value = '器具管理申请' |
||||
|
} |
||||
|
|
||||
|
//定义 展示子表数据时是否显示新增/修改/删除按钮 |
||||
|
const trueFalse = ref(false) |
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
|
nextTick(() => { |
||||
|
if (type == 'tableForm') { |
||||
|
if(formField == 'containerNumber') { |
||||
|
row['containerNumber'] = val[0]['itemCode'] |
||||
|
row['uom'] = val[0]['uom'] |
||||
|
row['fromLocationCode'] = val[0]['locationCode'] |
||||
|
row['fromInventoryStatus'] = val[0]['inventoryStatus'] |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
row['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
row[formField] = val[0][searchField] |
||||
|
} |
||||
|
} |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回——详情 |
||||
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
if(formField == 'containerNumber') { |
||||
|
setV['containerNumber'] = val[0]['code'] |
||||
|
setV['uom'] = val[0]['uom'] |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
setV['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
setV[formField] = val[0][searchField] |
||||
|
} |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改 tableform 属性 |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.map(item => { |
||||
|
console.log(businessType.value+99999999); |
||||
|
|
||||
|
if(item.field == 'containerNumber') { |
||||
|
if (fromLocationCode.value == null) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value , |
||||
|
isMainValue: false |
||||
|
} |
||||
|
] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
} |
||||
|
] |
||||
|
} else { |
||||
|
delete item.tableForm.searchCondition |
||||
|
} |
||||
|
} |
||||
|
if(item.field == "toLocationCode"){ |
||||
|
if (toLocationCode.value) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
}else if (toLocationCode.value == null) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value , |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-main-request:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:container-main-request:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-main-request:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 根据状态返回该按钮是否显示 |
||||
|
const isShowMainButton = (row,val) => { |
||||
|
if (val.indexOf(row.status) > -1) { |
||||
|
return false |
||||
|
} else { |
||||
|
return true |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row,$index) => { |
||||
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
||||
|
if(findIndex>0&&findIndex<$index){ |
||||
|
return [] |
||||
|
} |
||||
|
return [ |
||||
|
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','2','3','4','6']),hasPermi:'wms:container-main-request:close'}), // 关闭 |
||||
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']),hasPermi:'wms:container-main-request:reAdd'}), //重新添加 |
||||
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:submit'}), // 提交审批 |
||||
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:refused'}), // 驳回 |
||||
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:agree'}), // 审批通过 |
||||
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:container-main-request:handle'}), // 处理 |
||||
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:update'}), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main-request:delete'}), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'mainClose') { // 关闭 |
||||
|
await message.confirm('确认要关闭吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.close(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainReAdd') { // 重新添加 |
||||
|
await message.confirm('确认要重新添加吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.reAdd(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainSubmit') { // 提交审批 |
||||
|
await message.confirm('确认要提交审批吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.submit(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainTurnDown') { // 驳回 |
||||
|
await message.confirm('确认要驳回吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.refused(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainApprove') { // 审批通过 |
||||
|
await message.confirm('确认要审批通过吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.agree(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainHandle') { // 处理 |
||||
|
await message.confirm('确认要处理吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.handle(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
const isShowButton = ref(true) |
||||
|
|
||||
|
/** |
||||
|
* tableForm方法 |
||||
|
*/ |
||||
|
const tableFormKeys = {} |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.forEach(item => { |
||||
|
tableFormKeys[item.field] = item.default ? item.default : '' |
||||
|
}) |
||||
|
const tableData = ref([]) |
||||
|
|
||||
|
// 添加明细 |
||||
|
const handleAddTable = () => { |
||||
|
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys))) |
||||
|
} |
||||
|
// 删除明细 |
||||
|
const handleDeleteTable = (item, index) => { |
||||
|
tableData.value.splice(index, 1) |
||||
|
} |
||||
|
|
||||
|
//为true表示子表数据中存在数量为0的数据 |
||||
|
const flag = ref() |
||||
|
|
||||
|
// form表单提交 |
||||
|
const submitForm = async (formType,data) => { |
||||
|
data.subList = tableData.value // 拼接子表数据参数 |
||||
|
data.subList.forEach(item => { |
||||
|
if(item.toQty == 0){ |
||||
|
message.error(`到数量不能为0!`) |
||||
|
flag.value = true |
||||
|
return; |
||||
|
} |
||||
|
}) |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
data.businessType = businessType.value |
||||
|
await ContainerMainRequestApi.createContainerMainRequest(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ContainerMainRequestApi.updateContainerMainRequest(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} finally { |
||||
|
basicFormRef.value.formLoading = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicContainerMainRequest') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ContainerMainRequestApi.deleteContainerMainRequest(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await ContainerMainRequestApi.exportContainerMainRequest(tableObject.params) |
||||
|
download.excel(data, '器具管理申请主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: 'importFileName.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await ContainerMainRequestApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,284 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { TableColumn } from '@/types/table' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerRecordMainRules = reactive({ |
||||
|
available: [required], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
// 获取当前操作人的部门
|
||||
|
import { useUserStore } from '@/store/modules/user' |
||||
|
const userStore = useUserStore() |
||||
|
const userDept = userStore.userSelfInfo.dept |
||||
|
// id 转str 否则form回显匹配不到
|
||||
|
userDept.id = userDept.id.toString() |
||||
|
const userDeptArray:any = [userDept] |
||||
|
|
||||
|
export const ContainerRecordMain = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '申请单号', |
||||
|
field: 'requestNumber', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 120 |
||||
|
}, |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
isTable:false |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '部门', |
||||
|
field: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
||||
|
return userDeptArray.find((account) => account.id == cellValue)?.name |
||||
|
}, |
||||
|
form: { |
||||
|
value: userDept.id, |
||||
|
component: 'Select', |
||||
|
api: () => userDeptArray, |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
optionsAlias: { |
||||
|
labelField: 'name', |
||||
|
valueField: 'id' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '扩展属性', |
||||
|
field: 'extraProperties', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerRecordDetailRules = reactive({ |
||||
|
fromLocationCode: [required], |
||||
|
toLocationCode: [required], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
export const ContainerRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '主表ID', |
||||
|
field: 'masterId', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '器具号', |
||||
|
field: 'containerNumber', |
||||
|
sort: 'custom' |
||||
|
}, |
||||
|
{ |
||||
|
label: '来源库位代码', |
||||
|
field: 'fromLocationCode', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '目标库位代码', |
||||
|
field: 'toLocationCode', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '到数量', |
||||
|
field: 'toQty', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm:{ |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从货主代码', |
||||
|
field: 'fromOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '到货主代码', |
||||
|
field: 'toOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,249 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="[...ContainerRecordMain.allSchemas.searchSchema,...ContainerRecordDetail.allSchemas.searchSchema]" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="ContainerRecordMain.allSchemas" |
||||
|
:detailAllSchemas="ContainerRecordDetail.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #number="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.number)"> |
||||
|
<span>{{ row.number }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row,$index }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="ContainerRecordMainRules" |
||||
|
:formAllSchemas="ContainerRecordMain.allSchemas" |
||||
|
:tableAllSchemas="ContainerRecordDetail.allSchemas" |
||||
|
:tableFormRules="ContainerRecordDetailRules" |
||||
|
:isBusiness="true" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="false" |
||||
|
:allSchemas="ContainerRecordMain.allSchemas" |
||||
|
:detailAllSchemas="ContainerRecordDetail.allSchemas" |
||||
|
:detailAllSchemasRules="ContainerRecordDetailRules" |
||||
|
:apiPage="ContainerRecordDetailApi.getContainerRecordDetailPage" |
||||
|
/> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ContainerRecordMain,ContainerRecordMainRules,ContainerRecordDetail,ContainerRecordDetailRules } from './containerRecordMain.data' |
||||
|
import * as ContainerRecordMainApi from '@/api/wms/containerRecordMain' |
||||
|
import * as ContainerRecordDetailApi from '@/api/wms/containerRecordDetail' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache' |
||||
|
|
||||
|
defineOptions({ name: 'ContainerRecordMain' }) |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const businessType = ref() |
||||
|
const importFileName = ref() |
||||
|
const tableColumns = ref([...ContainerRecordMain.allSchemas.tableColumns,...ContainerRecordDetail.allSchemas.tableMainColumns]) |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ContainerRecordDetailApi.getContainerRecordDetailPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 判断 路由名称 进行条件过滤 |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
if ( routeName.value == 'ReturnContainerManageRecord') { |
||||
|
tableObject.params = { |
||||
|
type:'RETURN' |
||||
|
} |
||||
|
businessType.value = 'ReturnContainerManage' |
||||
|
importFileName.value = '器具返回记录' |
||||
|
} else if ( routeName.value == 'MoveContainerManageRecord') { |
||||
|
tableObject.params = { |
||||
|
type:'MOVE' |
||||
|
} |
||||
|
businessType.value = 'MoveContainerManage' |
||||
|
importFileName.value = '器具转移记录' |
||||
|
} else if ( routeName.value == 'InitialContainerManageRecord') { |
||||
|
tableObject.params = { |
||||
|
type:'INITIAL', |
||||
|
} |
||||
|
businessType.value = 'InitialContainerManage' |
||||
|
importFileName.value = '器具初始化记录' |
||||
|
} |
||||
|
else if ( routeName.value == 'ScrapContainerManageRecord') { |
||||
|
tableObject.params = { |
||||
|
type:'SCRAP' |
||||
|
} |
||||
|
businessType.value = 'ScrapContainerManage' |
||||
|
importFileName.value = '器具报废记录' |
||||
|
} else if ( routeName.value == 'DeliverContainerManageRecord') { |
||||
|
tableObject.params = { |
||||
|
type: 'DELIVER', |
||||
|
} |
||||
|
businessType.value = 'DeliverContainerManage' |
||||
|
importFileName.value = '器具发运记录' |
||||
|
} else if( routeName.value == 'ContainerManageRecord'){ |
||||
|
businessType.value = 'ContainerManage' |
||||
|
importFileName.value = '器具管理记录' |
||||
|
} |
||||
|
|
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-record-detail:create'}), // 新增 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-record-detail:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row,$index) => { |
||||
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
||||
|
if(findIndex>0&&findIndex<$index){ |
||||
|
return [] |
||||
|
} |
||||
|
return [ |
||||
|
// defaultButtons.mainListEditBtn({hasPermi:'wms:container-record-main:update'}), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-record-main:delete'}), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 获取部门 用于详情 部门回显 |
||||
|
const { wsCache } = useCache() |
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name |
||||
|
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode)) |
||||
|
detailRef.value.openDetail(row, titleName, titleValue) |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ContainerRecordMainApi.deleteContainerRecordMain(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await ContainerRecordMainApi.exportContainerRecordMain(tableObject.params) |
||||
|
download.excel(data, '器具管理记录主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,462 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="ContainerMainRequest.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #number="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.number)"> |
||||
|
<span>{{ row.number }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row,$index }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="ContainerMainRequestRules" |
||||
|
:formAllSchemas="ContainerMainRequest.allSchemas" |
||||
|
:tableAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:tableFormRules="ContainerDetailRequestRules" |
||||
|
:tableData="tableData" |
||||
|
:apiUpdate="ContainerMainRequestApi.updateContainerMainRequest" |
||||
|
:apiCreate="ContainerMainRequestApi.createContainerMainRequest" |
||||
|
:isBusiness="true" |
||||
|
fromeWhere="ContainerMainRequest" |
||||
|
@handleAddTable="handleAddTable" |
||||
|
@handleDeleteTable="handleDeleteTable" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
@submitForm="submitForm" |
||||
|
:isShowButton = isShowButton |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="false" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:detailAllSchemasRules="ContainerDetailRequestRules" |
||||
|
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest" |
||||
|
:apiUpdate="ContainerDetailRequestApi.createContainerDetailRequest" |
||||
|
:apiPage="ContainerDetailRequestApi.getContainerDetailRequestPage" |
||||
|
:apiDelete="ContainerDetailRequestApi.deleteContainerDetailRequest" |
||||
|
fromeWhere="ContainerDetailRequest" |
||||
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
||||
|
:detailButtonIsShowAdd="trueFalse" |
||||
|
:detailButtonIsShowDelete="trueFalse" |
||||
|
/> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/container-main-request/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ContainerMainRequest,ContainerMainRequestRules,ContainerDetailRequest,ContainerDetailRequestRules } from './initialContainerMainRequest.data' |
||||
|
import * as ContainerMainRequestApi from '@/api/wms/containerMainRequest' |
||||
|
import * as ContainerDetailRequestApi from '@/api/wms/containerDetailRequest' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'InitialContainerManageRequest' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const businessType = ref() |
||||
|
const toLocationCode = ref() |
||||
|
const importFileName = ref() |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(ContainerMainRequest.allSchemas.tableColumns) |
||||
|
console.log(99 , routeName.value) |
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ContainerDetailRequestApi.getContainerDetailRequestPage // 分页接口 |
||||
|
}) |
||||
|
// 判断 路由名称 进行条件过滤 |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
if ( routeName.value == 'InitialContainerManageRequest') { |
||||
|
tableObject.params = { |
||||
|
type:'INITIAL', |
||||
|
} |
||||
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{ |
||||
|
if(item.field == 'type'){ |
||||
|
item.value = "INITIAL" |
||||
|
}}); |
||||
|
businessType.value = 'InitialContainerManage' |
||||
|
importFileName.value = '器具初始化申请' |
||||
|
} |
||||
|
|
||||
|
//定义 展示子表数据时是否显示新增/修改/删除按钮 |
||||
|
const trueFalse = ref(false) |
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
|
nextTick(() => { |
||||
|
if (type == 'tableForm') { |
||||
|
if(formField == 'containerNumber') { |
||||
|
row['containerNumber'] = val[0]['code'] |
||||
|
row['uom'] = val[0]['uom'] |
||||
|
row['toInventoryStatus'] = 'OK' |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
row['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
row[formField] = val[0][searchField] |
||||
|
} |
||||
|
} |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回——详情 |
||||
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
if(formField == 'containerNumber') { |
||||
|
setV['containerNumber'] = val[0]['code'] |
||||
|
setV['uom'] = val[0]['uom'] |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
setV['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
setV[formField] = val[0][searchField] |
||||
|
} |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改 tableform 属性 |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.map(item => { |
||||
|
if(item.field == "toLocationCode"){ |
||||
|
if (toLocationCode.value) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
}else if (toLocationCode.value == null) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value , |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 根据状态返回该按钮是否显示 |
||||
|
const isShowMainButton = (row,val) => { |
||||
|
if (val.indexOf(row.status) > -1) { |
||||
|
return false |
||||
|
} else { |
||||
|
return true |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-main-request:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:container-main-request:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-main-request:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row,$index) => { |
||||
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
||||
|
if(findIndex>0&&findIndex<$index){ |
||||
|
return [] |
||||
|
} |
||||
|
return [ |
||||
|
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','2','3','4','6']),hasPermi:'wms:container-main-request:close'}), // 关闭 |
||||
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']),hasPermi:'wms:container-main-request:reAdd'}), //重新添加 |
||||
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:submit'}), // 提交审批 |
||||
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:refused'}), // 驳回 |
||||
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:agree'}), // 审批通过 |
||||
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:container-main-request:handle'}), // 处理 |
||||
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:update'}), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main-request:delete'}), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'mainClose') { // 关闭 |
||||
|
await message.confirm('确认要关闭吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.close(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainReAdd') { // 重新添加 |
||||
|
await message.confirm('确认要重新添加吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.reAdd(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainSubmit') { // 提交审批 |
||||
|
await message.confirm('确认要提交审批吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.submit(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainTurnDown') { // 驳回 |
||||
|
await message.confirm('确认要驳回吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.refused(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainApprove') { // 审批通过 |
||||
|
await message.confirm('确认要审批通过吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.agree(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainHandle') { // 处理 |
||||
|
await message.confirm('确认要 处理吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.handle(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
const isShowButton = ref(true) |
||||
|
|
||||
|
/** |
||||
|
* tableForm方法 |
||||
|
*/ |
||||
|
const tableFormKeys = {} |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.forEach(item => { |
||||
|
tableFormKeys[item.field] = item.default ? item.default : '' |
||||
|
}) |
||||
|
const tableData = ref([]) |
||||
|
|
||||
|
// 添加明细 |
||||
|
const handleAddTable = () => { |
||||
|
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys))) |
||||
|
} |
||||
|
// 删除明细 |
||||
|
const handleDeleteTable = (item, index) => { |
||||
|
tableData.value.splice(index, 1) |
||||
|
} |
||||
|
|
||||
|
//为true表示子表数据中存在数量为0的数据 |
||||
|
const flag = ref() |
||||
|
|
||||
|
// form表单提交 |
||||
|
const submitForm = async (formType,data) => { |
||||
|
data.subList = tableData.value // 拼接子表数据参数 |
||||
|
data.subList.forEach(item => { |
||||
|
if(item.qty == 0){ |
||||
|
message.error(`到数量不能为0!`) |
||||
|
flag.value = true |
||||
|
return; |
||||
|
} |
||||
|
}) |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
data.businessType = businessType.value |
||||
|
console.log(data.businessType,999); |
||||
|
|
||||
|
await ContainerMainRequestApi.createContainerMainRequest(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ContainerMainRequestApi.updateContainerMainRequest(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} finally { |
||||
|
basicFormRef.value.formLoading = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicContainerMainRequest') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ContainerMainRequestApi.deleteContainerMainRequest(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await ContainerMainRequestApi.exportContainerMainRequest(tableObject.params) |
||||
|
download.excel(data, '器具管理申请主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: 'importFileName.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await ContainerMainRequestApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
./initialContainerMainRequest.data |
@ -0,0 +1,475 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { TableColumn } from '@/types/table' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
import * as BalanceApi from '@/api/wms/balance' |
||||
|
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
||||
|
|
||||
|
import * as LocationApi from '@/api/wms/location' |
||||
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
||||
|
|
||||
|
import * as ItembasicApi from '@/api/wms/itembasic' |
||||
|
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data' |
||||
|
|
||||
|
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerMainRequestRules = reactive({ |
||||
|
type:[ |
||||
|
{ required: true, message: '请选择类型', trigger: 'change' }, |
||||
|
], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
||||
|
const queryParams = { |
||||
|
pageSize:10, |
||||
|
pageNo:1, |
||||
|
code:'ContainerRequest' |
||||
|
} |
||||
|
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
||||
|
const requestsettingData =data?.list[0]||{} |
||||
|
|
||||
|
// 获取当前操作人的部门
|
||||
|
import { useUserStore } from '@/store/modules/user' |
||||
|
const userStore = useUserStore() |
||||
|
const userDept = userStore.userSelfInfo.dept |
||||
|
// id 转str 否则form回显匹配不到
|
||||
|
userDept.id = userDept.id.toString() |
||||
|
const userDeptArray:any = [userDept] |
||||
|
|
||||
|
export const ContainerMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
dictType: DICT_TYPE.REQUEST_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 120 |
||||
|
}, |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '部门', |
||||
|
field: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
||||
|
return userDeptArray.find((account) => account.id == cellValue)?.name |
||||
|
}, |
||||
|
form: { |
||||
|
value: userDept.id, |
||||
|
component: 'Select', |
||||
|
api: () => userDeptArray, |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
optionsAlias: { |
||||
|
labelField: 'name', |
||||
|
valueField: 'id' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动提交', |
||||
|
field: 'autoCommit', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoCommit, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动通过', |
||||
|
field: 'autoAgree', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoAgree, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动执行', |
||||
|
field: 'autoExecute', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoExecute, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '直接生成记录', |
||||
|
field: 'directCreateRecord', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.directCreateRecord, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '扩展属性', |
||||
|
field: 'extraProperties', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 200, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerDetailRequestRules = reactive({ |
||||
|
toLocationCode: [ |
||||
|
{ required: true, message: '请选择目标库位', trigger: 'blur' } |
||||
|
], |
||||
|
containerNumber: [ |
||||
|
{ required: true, message: '请选择器具号', trigger: 'blur' } |
||||
|
], |
||||
|
toQty: [ |
||||
|
{ required: true, message: '请输入到数量', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
export const ContainerDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '主表ID', |
||||
|
field: 'masterId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '器具号', |
||||
|
field: 'containerNumber', |
||||
|
sort: 'custom', |
||||
|
tableForm:{ |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '器具信息', |
||||
|
searchAllSchemas: Itembasic.allSchemas, |
||||
|
searchPage: ItembasicApi.selectConfigToItembasic, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '器具信息', |
||||
|
searchAllSchemas: Itembasic.allSchemas, |
||||
|
searchPage: ItembasicApi.selectConfigToItembasic, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '目标库位代码', |
||||
|
field: 'toLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm:{ |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '到库存状态', |
||||
|
field: 'toInventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '到数量', |
||||
|
field: 'toQty', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
disabled: true |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从货主代码', |
||||
|
field: 'fromOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '到货主代码', |
||||
|
field: 'toOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 200, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
@ -0,0 +1,487 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="ContainerMainRequest.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #number="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.number)"> |
||||
|
<span>{{ row.number }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row,$index }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="ContainerMainRequestRules" |
||||
|
:formAllSchemas="ContainerMainRequest.allSchemas" |
||||
|
:tableAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:tableFormRules="ContainerDetailRequestRules" |
||||
|
:tableData="tableData" |
||||
|
:apiUpdate="ContainerMainRequestApi.updateContainerMainRequest" |
||||
|
:apiCreate="ContainerMainRequestApi.createContainerMainRequest" |
||||
|
:isBusiness="true" |
||||
|
fromeWhere="ContainerMainRequest" |
||||
|
@handleAddTable="handleAddTable" |
||||
|
@handleDeleteTable="handleDeleteTable" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
@submitForm="submitForm" |
||||
|
:isShowButton = isShowButton |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="false" |
||||
|
:allSchemas="ContainerMainRequest.allSchemas" |
||||
|
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
||||
|
:detailAllSchemasRules="ContainerDetailRequestRules" |
||||
|
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest" |
||||
|
:apiUpdate="ContainerDetailRequestApi.updateContainerDetailRequest" |
||||
|
:apiPage="ContainerDetailRequestApi.getContainerDetailRequestPage" |
||||
|
:apiDelete="ContainerDetailRequestApi.deleteContainerDetailRequest" |
||||
|
fromeWhere="ContainerDetailRequest" |
||||
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
||||
|
:detailButtonIsShowAdd="trueFalse" |
||||
|
:detailButtonIsShowDelete="trueFalse" |
||||
|
/> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/container-main-request/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ContainerMainRequest,ContainerMainRequestRules,ContainerDetailRequest,ContainerDetailRequestRules } from './scrapContainerMainRequest.data' |
||||
|
import * as ContainerMainRequestApi from '@/api/wms/containerMainRequest' |
||||
|
import * as ContainerDetailRequestApi from '@/api/wms/containerDetailRequest' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'ScrapContainerManageRequest' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const businessType = ref() |
||||
|
const toLocationCode = ref() |
||||
|
const fromLocationCode = ref() |
||||
|
const importFileName = ref() |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(ContainerMainRequest.allSchemas.tableColumns) |
||||
|
console.log(99 , routeName.value) |
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ContainerDetailRequestApi.getContainerDetailRequestPage // 分页接口 |
||||
|
}) |
||||
|
// 判断 路由名称 进行条件过滤 |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
if ( routeName.value == 'ScrapContainerManageRequest') { |
||||
|
tableObject.params = { |
||||
|
type:'SCRAP' |
||||
|
} |
||||
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{ |
||||
|
if(item.field == 'type'){ |
||||
|
item.value = "SCRAP" |
||||
|
}}); |
||||
|
businessType.value = 'ScrapContainerManage' |
||||
|
importFileName.value = '器具报废申请' |
||||
|
} |
||||
|
|
||||
|
//定义 展示子表数据时是否显示新增/修改/删除按钮 |
||||
|
const trueFalse = ref(false) |
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
|
nextTick(() => { |
||||
|
if (type == 'tableForm') { |
||||
|
if(formField == 'containerNumber') { |
||||
|
row['containerNumber'] = val[0]['itemCode'] |
||||
|
row['uom'] = val[0]['uom'] |
||||
|
row['fromLocationCode'] = val[0]['locationCode'] |
||||
|
row['fromInventoryStatus'] = val[0]['inventoryStatus'] |
||||
|
row['toInventoryStatus'] = 'SCRAP' |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
row['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
row[formField] = val[0][searchField] |
||||
|
} |
||||
|
} |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回——详情 |
||||
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
if(formField == 'containerNumber') { |
||||
|
setV['containerNumber'] = val[0]['itemCode'] |
||||
|
setV['uom'] = val[0]['uom'] |
||||
|
}else if(formField == 'toLocationCode'){ |
||||
|
setV['toLocationCode'] = val[0]['code'] |
||||
|
}else { |
||||
|
setV[formField] = val[0][searchField] |
||||
|
} |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改 tableform 属性 |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.map(item => { |
||||
|
if(item.field == 'containerNumber') { |
||||
|
if (fromLocationCode.value == null) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value , |
||||
|
isMainValue: false |
||||
|
} |
||||
|
] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
} |
||||
|
] |
||||
|
} else { |
||||
|
delete item.tableForm.searchCondition |
||||
|
} |
||||
|
} |
||||
|
if(item.field == "toLocationCode"){ |
||||
|
if (toLocationCode.value) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
}else if (toLocationCode.value == null) { |
||||
|
item.tableForm.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value , |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
item.form.componentProps.searchCondition = [ |
||||
|
{ |
||||
|
key: 'businessType', |
||||
|
value: businessType.value, |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 根据状态返回该按钮是否显示 |
||||
|
const isShowMainButton = (row,val) => { |
||||
|
if (val.indexOf(row.status) > -1) { |
||||
|
return false |
||||
|
} else { |
||||
|
return true |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-main-request:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:container-main-request:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-main-request:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row,$index) => { |
||||
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
||||
|
if(findIndex>0&&findIndex<$index){ |
||||
|
return [] |
||||
|
} |
||||
|
return [ |
||||
|
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','2','3','4','6']),hasPermi:'wms:container-main-request:close'}), // 关闭 |
||||
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']),hasPermi:'wms:container-main-request:reAdd'}), //重新添加 |
||||
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:submit'}), // 提交审批 |
||||
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:refused'}), // 驳回 |
||||
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:agree'}), // 审批通过 |
||||
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:container-main-request:handle'}), // 处理 |
||||
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:update'}), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main-request:delete'}), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'mainClose') { // 关闭 |
||||
|
await message.confirm('确认要关闭吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.close(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainReAdd') { // 重新添加 |
||||
|
await message.confirm('确认要重新添加吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.reAdd(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainSubmit') { // 提交审批 |
||||
|
await message.confirm('确认要提交审批吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.submit(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainTurnDown') { // 驳回 |
||||
|
await message.confirm('确认要驳回吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.refused(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainApprove') { // 审批通过 |
||||
|
await message.confirm('确认要审批通过吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.agree(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'mainHandle') { // 处理 |
||||
|
await message.confirm('确认要 处理吗?') |
||||
|
tableObject.loading = true |
||||
|
ContainerMainRequestApi.handle(row.masterId).then(() => { |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
tableObject.loading = false |
||||
|
getList() |
||||
|
}).catch(err => { |
||||
|
tableObject.loading = false |
||||
|
console.log(err) |
||||
|
}) |
||||
|
} else if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
const isShowButton = ref(true) |
||||
|
|
||||
|
/** |
||||
|
* tableForm方法 |
||||
|
*/ |
||||
|
const tableFormKeys = {} |
||||
|
ContainerDetailRequest.allSchemas.tableFormColumns.forEach(item => { |
||||
|
tableFormKeys[item.field] = item.default ? item.default : '' |
||||
|
if(item.field == 'toInventoryStatus'){ |
||||
|
tableFormKeys[item.field] = "SCRAP" |
||||
|
} |
||||
|
}) |
||||
|
const tableData = ref([]) |
||||
|
|
||||
|
// 添加明细 |
||||
|
const handleAddTable = () => { |
||||
|
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys))) |
||||
|
} |
||||
|
// 删除明细 |
||||
|
const handleDeleteTable = (item, index) => { |
||||
|
tableData.value.splice(index, 1) |
||||
|
} |
||||
|
|
||||
|
//为true表示子表数据中存在数量为0的数据 |
||||
|
const flag = ref() |
||||
|
|
||||
|
// form表单提交 |
||||
|
const submitForm = async (formType,data) => { |
||||
|
data.subList = tableData.value // 拼接子表数据参数 |
||||
|
data.subList.forEach(item => { |
||||
|
if(item.qty == 0){ |
||||
|
message.error(`到数量不能为0!`) |
||||
|
flag.value = true |
||||
|
return; |
||||
|
} |
||||
|
}) |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
data.businessType = businessType.value |
||||
|
console.log(data.businessType,999); |
||||
|
|
||||
|
await ContainerMainRequestApi.createContainerMainRequest(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ContainerMainRequestApi.updateContainerMainRequest(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} finally { |
||||
|
basicFormRef.value.formLoading = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicContainerMainRequest') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ContainerMainRequestApi.deleteContainerMainRequest(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await ContainerMainRequestApi.exportContainerMainRequest(tableObject.params) |
||||
|
download.excel(data, '器具管理申请主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: 'importFileName.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await ContainerMainRequestApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,502 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { TableColumn } from '@/types/table' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
import * as BalanceApi from '@/api/wms/balance' |
||||
|
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
||||
|
|
||||
|
import * as LocationApi from '@/api/wms/location' |
||||
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
||||
|
|
||||
|
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerMainRequestRules = reactive({ |
||||
|
type: [ |
||||
|
{ required: true, message: '请选择类型', trigger: 'change' }, |
||||
|
], |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
||||
|
const queryParams = { |
||||
|
pageSize: 10, |
||||
|
pageNo: 1, |
||||
|
code: 'ContainerRequest' |
||||
|
} |
||||
|
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
||||
|
const requestsettingData = data?.list[0] || {} |
||||
|
|
||||
|
// 获取当前操作人的部门
|
||||
|
import { useUserStore } from '@/store/modules/user' |
||||
|
const userStore = useUserStore() |
||||
|
const userDept = userStore.userSelfInfo.dept |
||||
|
// id 转str 否则form回显匹配不到
|
||||
|
userDept.id = userDept.id.toString() |
||||
|
const userDeptArray: any = [userDept] |
||||
|
|
||||
|
export const ContainerMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, { |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
dictType: DICT_TYPE.REQUEST_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 120 |
||||
|
}, |
||||
|
form: { |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '部门', |
||||
|
field: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
||||
|
return userDeptArray.find((account) => account.id == cellValue)?.name |
||||
|
}, |
||||
|
form: { |
||||
|
value: userDept.id, |
||||
|
component: 'Select', |
||||
|
api: () => userDeptArray, |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
optionsAlias: { |
||||
|
labelField: 'name', |
||||
|
valueField: 'id' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动提交', |
||||
|
field: 'autoCommit', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoCommit, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动通过', |
||||
|
field: 'autoAgree', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoAgree, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '自动执行', |
||||
|
field: 'autoExecute', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.autoExecute, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '直接生成记录', |
||||
|
field: 'directCreateRecord', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isForm: false, |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: requestsettingData.directCreateRecord, |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE', |
||||
|
disabled: true |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '扩展属性', |
||||
|
field: 'extraProperties', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 100 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ContainerDetailRequestRules = reactive({ |
||||
|
toLocationCode: [ |
||||
|
{ required: true, message: '请选择目标库位', trigger: 'blur' } |
||||
|
], |
||||
|
containerNumber: [ |
||||
|
{ required: true, message: '请选择器具号', trigger: 'blur' } |
||||
|
], |
||||
|
toQty: [ |
||||
|
{ required: true, message: '请输入到数量', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
export const ContainerDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '主表ID', |
||||
|
field: 'masterId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '器具号', |
||||
|
field: 'containerNumber', |
||||
|
sort: 'custom', |
||||
|
tableForm: { |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '库存余额信息', |
||||
|
searchAllSchemas: Balance.allSchemas, |
||||
|
searchPage: BalanceApi.selectConfigToBalance, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择器具号', |
||||
|
searchField: 'itemCode', |
||||
|
searchTitle: '库存余额信息', |
||||
|
searchAllSchemas: Balance.allSchemas, |
||||
|
searchPage: BalanceApi.selectConfigToBalance, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '来源库位代码', |
||||
|
field: 'fromLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '目标库位代码', |
||||
|
field: 'toLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
isInpuFocusShow: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectPageItemAreaToLocation, |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择到库位代码', |
||||
|
searchField: 'code', |
||||
|
searchTitle: '库位信息', |
||||
|
searchAllSchemas: Location.allSchemas, |
||||
|
searchPage: LocationApi.selectPageItemAreaToLocation, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '从库存状态', |
||||
|
field: 'fromInventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到库存状态', |
||||
|
field: 'toInventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
disabled: true |
||||
|
}, |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '从数量',
|
||||
|
// field: 'fromQty',
|
||||
|
// sort: 'custom',
|
||||
|
// tableForm: {
|
||||
|
// disabled: true,
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '到数量', |
||||
|
field: 'toQty', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
table: { |
||||
|
width: 200 |
||||
|
}, |
||||
|
isForm: false, |
||||
|
isTableForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从货主代码', |
||||
|
field: 'fromOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '到货主代码', |
||||
|
field: 'toOwnerCode', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isTableForm: false, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
Loading…
Reference in new issue