添砖-JAVA\Administrator
5 months ago
37 changed files with 2864 additions and 4546 deletions
@ -0,0 +1,80 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ItemVO { |
||||
|
number : string |
||||
|
name : string |
||||
|
brand : string |
||||
|
specifications : string |
||||
|
isConstant : string |
||||
|
subject : string |
||||
|
classification : string |
||||
|
uom : string |
||||
|
singlePrice : number |
||||
|
reprocurement : number |
||||
|
safetyStock : number |
||||
|
cost : string |
||||
|
purchaser : string |
||||
|
financer : string |
||||
|
isFramework : string |
||||
|
isRadeIn : string |
||||
|
siteId : string |
||||
|
available : string |
||||
|
concurrencyStamp : number |
||||
|
} |
||||
|
|
||||
|
// 查询备件列表
|
||||
|
export const getItemPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = { ...params } |
||||
|
return await request.post({ url: '/eam/item/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/item/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 生成标签
|
||||
|
export const genDevice = async (data) => { |
||||
|
return await request.post({ url: `/eam/item/genDevice`, data }) |
||||
|
} |
||||
|
|
||||
|
// 查询备件详情
|
||||
|
export const getItem = async (id : number) => { |
||||
|
return await request.get({ url: `/eam/item/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增备件
|
||||
|
export const createItem = async (data : ItemVO) => { |
||||
|
return await request.post({ url: `/eam/item/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改备件
|
||||
|
export const updateItem = async (data : ItemVO) => { |
||||
|
return await request.put({ url: `/eam/item/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除备件
|
||||
|
export const deleteItem = async (id : number) => { |
||||
|
return await request.delete({ url: `/eam/item/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出备件 Excel
|
||||
|
export const exportItem = async (params) => { |
||||
|
return await request.download({ url: `/eam/item/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 修改备件
|
||||
|
export const getItemList = async (params) => { |
||||
|
return await request.get({ url: `/eam/item/getListByNumber`, params }) |
||||
|
} |
||||
|
|
||||
|
// // 删除备件
|
||||
|
// export const getaaa = async () => {
|
||||
|
// return await request.get({ url: `/eam/producePlan/produce`})
|
||||
|
// }
|
||||
|
|
||||
|
// 备件不分页
|
||||
|
|
||||
|
export const getItemNoPage = async (params) => { |
||||
|
return await request.get({ url: `/eam/item/noPage`, params }) |
||||
|
} |
@ -0,0 +1,63 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ItemApplyMainVO { |
||||
|
number: string |
||||
|
name: string |
||||
|
type: string |
||||
|
applyId: number |
||||
|
applyDeptId: number |
||||
|
approveId: number |
||||
|
approveTime: Date |
||||
|
outId: number |
||||
|
outTime: Date |
||||
|
siteId: string |
||||
|
available: string |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询备件申领记录主列表
|
||||
|
export const getItemApplyMainPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/item-apply-request-main/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/item-apply-request-main/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询备件申领记录主详情
|
||||
|
export const getItemApplyMain = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/item-apply-request-main/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增备件申领记录主
|
||||
|
export const createItemApplyMain = async (data: ItemApplyMainVO) => { |
||||
|
return await request.post({ url: `/eam/item-apply-request-main/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改备件申领记录主
|
||||
|
export const updateItemApplyMain = async (data: ItemApplyMainVO) => { |
||||
|
return await request.put({ url: `/eam/item-apply-request-main/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除备件申领记录主
|
||||
|
export const deleteItemApplyMain = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/item-apply-request-main/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 撤销备件申领记录主
|
||||
|
export const backoutItemApplyMain = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/item-apply-request-main/backout?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
// 导出备件申领记录主 Excel
|
||||
|
export const exportItemApplyMain = async (params) => { |
||||
|
return await request.download({ url: `/eam/item-apply-request-main/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/eam/item-apply-request-main/get-import-template' }) |
||||
|
} |
@ -0,0 +1,55 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface LocationVO { |
||||
|
number: string |
||||
|
name: string |
||||
|
description: string |
||||
|
areaNumber: string |
||||
|
type: string |
||||
|
isInAccount: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询库位列表
|
||||
|
export const getLocationPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/location/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/location/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询库位详情
|
||||
|
export const getLocation = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/location/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增库位
|
||||
|
export const createLocation = async (data: LocationVO) => { |
||||
|
return await request.post({ url: `/eam/location/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改库位
|
||||
|
export const updateLocation = async (data: LocationVO) => { |
||||
|
return await request.put({ url: `/eam/location/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除库位
|
||||
|
export const deleteLocation = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/location/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出库位 Excel
|
||||
|
export const exportLocation = async (params) => { |
||||
|
return await request.download({ url: `/eam/location/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
// 查询库位列表
|
||||
|
export const getLocationNoPage = async (params) => { |
||||
|
return await request.get({ url: `/eam/location/noPage`, params }) |
||||
|
} |
@ -0,0 +1,48 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface LocationAreaVO { |
||||
|
number: string |
||||
|
name: string |
||||
|
description: string |
||||
|
type: string |
||||
|
siteId: string |
||||
|
available: string |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询库区列表
|
||||
|
export const getLocationAreaPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/eam/location-area/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/eam/location-area/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询库区详情
|
||||
|
export const getLocationArea = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/location-area/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增库区
|
||||
|
export const createLocationArea = async (data: LocationAreaVO) => { |
||||
|
return await request.post({ url: `/eam/location-area/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改库区
|
||||
|
export const updateLocationArea = async (data: LocationAreaVO) => { |
||||
|
return await request.put({ url: `/eam/location-area/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除库区
|
||||
|
export const deleteLocationArea = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/location-area/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出库区 Excel
|
||||
|
export const exportLocationArea = async (params) => { |
||||
|
return await request.download({ url: `/eam/location-area/export-excel`, params }) |
||||
|
} |
||||
|
|
@ -1,63 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsApplyDetailVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
masterId: number |
|
||||
sparePartsCode: string |
|
||||
isRadeIn: string |
|
||||
applyQty: number |
|
||||
currentQty: number |
|
||||
type: string |
|
||||
currentSinglePrice: number |
|
||||
equipmentCode: byte[] |
|
||||
jobNumber: byte[] |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件领用申请子列表
|
|
||||
export const getSparePartsApplyDetailPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = {...params} |
|
||||
return await request.post({ url: '/eam/spare-parts-apply-detail/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-detail/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件领用申请子详情
|
|
||||
export const getSparePartsApplyDetail = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-detail/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件领用申请子
|
|
||||
export const createSparePartsApplyDetail = async (data: SparePartsApplyDetailVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-apply-detail/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件领用申请子
|
|
||||
export const updateSparePartsApplyDetail = async (data: SparePartsApplyDetailVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-apply-detail/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件领用申请子
|
|
||||
export const deleteSparePartsApplyDetail = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-apply-detail/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件领用申请子 Excel
|
|
||||
export const exportSparePartsApplyDetail = async (params) => { |
|
||||
return await request.download({ url: `/eam/spare-parts-apply-detail/export-excel`, params }) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-apply-detail/get-import-template' }) |
|
||||
} |
|
@ -1,87 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsApplyMainVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
description: string |
|
||||
applyDeptId: string |
|
||||
sumVal: number |
|
||||
status: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件领用申请列表
|
|
||||
export const getSparePartsApplyMainPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-apply-main/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-main/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件领用申请详情
|
|
||||
export const getSparePartsApplyMain = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-main/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件领用申请
|
|
||||
export const createSparePartsApplyMain = async (data: SparePartsApplyMainVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-apply-main/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件领用申请
|
|
||||
export const updateSparePartsApplyMain = async (data: SparePartsApplyMainVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-apply-main/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件领用申请
|
|
||||
export const deleteSparePartsApplyMain = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-apply-main/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件领用申请 Excel
|
|
||||
export const exportSparePartsApplyMain = async (params) => { |
|
||||
return await request.download({ url: `/eam/spare-parts-apply-main/export-excel`, params }) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-apply-main/get-import-template' }) |
|
||||
} |
|
||||
|
|
||||
// 撤回
|
|
||||
export const cancelSparePartsApplyMain = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-main/cancel?id=` + id }) |
|
||||
} |
|
||||
// 审核
|
|
||||
export const submitSparePartsApplyMain = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-main/submitExamine?id=` + id }) |
|
||||
} |
|
||||
// 审核驳回
|
|
||||
export const rejectSparePartsApplyMain = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-apply-main/reject?id=` + id }) |
|
||||
} |
|
||||
// 审核通过
|
|
||||
export const approveSparePartsApplyMain = async (data) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-apply-main/approve`, data }) |
|
||||
} |
|
||||
|
|
||||
// 完成
|
|
||||
export const finishSparePartsApplyMain = async (id) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-apply-main/finish?id=` + id }) |
|
||||
} |
|
@ -1,58 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsInLocationDetailVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
masterId: number |
|
||||
sparePartsCode: string |
|
||||
isRadeIn: string |
|
||||
applyQty: number |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子列表
|
|
||||
export const getSparePartsInLocationDetailPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = {...params} |
|
||||
return await request.post({ url: '/eam/spare-parts-in-location-detail/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-detail/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子详情
|
|
||||
export const getSparePartsInLocationDetail = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-detail/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录子
|
|
||||
export const createSparePartsInLocationDetail = async (data: SparePartsInLocationDetailVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-detail/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录子
|
|
||||
export const updateSparePartsInLocationDetail = async (data: SparePartsInLocationDetailVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-in-location-detail/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录子
|
|
||||
export const deleteSparePartsInLocationDetail = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-in-location-detail/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录子 Excel
|
|
||||
export const exportSparePartsInLocationDetail = async (params) => { |
|
||||
return await request.download({ url: `/eam/spare-parts-in-location-detail/export-excel`, params }) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-in-location-detail/get-import-template' }) |
|
||||
} |
|
@ -1,91 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsInLocationMainVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
theme: string |
|
||||
status: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
areaCode: string |
|
||||
locationCode: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主列表
|
|
||||
export const getSparePartsInLocationMainPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = {...params} |
|
||||
return await request.post({ url: '/eam/spare-parts-in-location-main/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主详情
|
|
||||
export const getSparePartsInLocationMain = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录主
|
|
||||
export const createSparePartsInLocationMain = async (data: SparePartsInLocationMainVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-main/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录主
|
|
||||
export const updateSparePartsInLocationMain = async (data: SparePartsInLocationMainVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-in-location-main/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录主
|
|
||||
export const deleteSparePartsInLocationMain = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-in-location-main/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录主 Excel
|
|
||||
export const exportSparePartsInLocationMain = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
const data = {...params} |
|
||||
return await request.downloadPost({ url: `/eam/spare-parts-in-location-main/export-excel-senior`, data }) |
|
||||
}else{ |
|
||||
return await request.download({ url: `/eam/spare-parts-in-location-main/export-excel`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-in-location-main/get-import-template' }) |
|
||||
} |
|
||||
|
|
||||
// 撤回
|
|
||||
export const cancelSparePartsInLocation = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main/cancel?id=` + id }) |
|
||||
} |
|
||||
// 审核
|
|
||||
export const submitExamineSparePartsInLocation = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main/submitExamine?id=` + id }) |
|
||||
} |
|
||||
// 审核驳回
|
|
||||
export const rejectSparePartsInLocation = async (id) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main/reject?id=` + id }) |
|
||||
} |
|
||||
// 审核通过
|
|
||||
export const approveSparePartsInLocation = async (data) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-main/approve`,data }) |
|
||||
} |
|
||||
// 完成
|
|
||||
export const finishSparePartsInLocation = async (id) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-main/finish?id=` + id }) |
|
||||
} |
|
@ -1,58 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsInLocationDetailRecordVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
masterId: number |
|
||||
sparePartsCode: string |
|
||||
isRadeIn: string |
|
||||
applyQty: number |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子列表
|
|
||||
export const getSparePartsInLocationRecordDetailPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = {...params} |
|
||||
return await request.post({ url: '/eam/spare-parts-in-location-detail-record/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-detail-record/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子详情
|
|
||||
export const getSparePartsInLocationRecordDetail = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-detail-record/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录子
|
|
||||
export const createSparePartsInLocationRecordDetail= async (data: SparePartsInLocationDetailRecordVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-detail-record/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录子
|
|
||||
export const updateSparePartsInLocationRecordDetail = async (data: SparePartsInLocationDetailRecordVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-in-location-detail-record/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录子
|
|
||||
export const deleteSparePartsInLocationRecordDetail = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-in-location-detail-record/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录子 Excel
|
|
||||
export const exportSparePartsInLocationRecordDetail = async (params) => { |
|
||||
return await request.download({ url: `/eam/spare-parts-in-location-detail-record/export-excel`, params }) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-in-location-detail-record/get-import-template' }) |
|
||||
} |
|
@ -1,72 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsInLocationMainRecordVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
theme: string |
|
||||
status: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
areaCode: string |
|
||||
locationCode: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主列表
|
|
||||
export const getSparePartsInLocationRecordMainPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-in-location-main-record/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main-record/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主详情
|
|
||||
export const getSparePartsInLocationRecordMain = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main-record/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录主
|
|
||||
export const createSparePartsInLocationRecordMain = async ( |
|
||||
data: SparePartsInLocationMainRecordVO |
|
||||
) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-main-record/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录主
|
|
||||
export const updateSparePartsInLocationRecordMain = async ( |
|
||||
data: SparePartsInLocationMainRecordVO |
|
||||
) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-in-location-main-record/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录主
|
|
||||
export const deleteSparePartsInLocationRecordMain= async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-in-location-main-record/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录主 Excel
|
|
||||
export const exportSparePartsInLocationRecordMain = async (params) => { |
|
||||
return await request.download({ |
|
||||
url: `/eam/spare-parts-in-location-main-record/export-excel`, |
|
||||
params |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-in-location-main-record/get-import-template' }) |
|
||||
} |
|
@ -1,61 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsOutLocationDetailVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
masterId: number |
|
||||
sparePartsCode: string |
|
||||
isRadeIn: string |
|
||||
applyQty: number |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子列表
|
|
||||
export const getSparePartsOutLocationDetailPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-out-location-detail/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-detail/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录子详情
|
|
||||
export const getSparePartsOutLocationDetail = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-detail/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录子
|
|
||||
export const createSparePartsOutLocationDetail = async (data: SparePartsOutLocationDetailVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-out-location-detail/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录子
|
|
||||
export const updateSparePartsOutLocationDetail = async (data: SparePartsOutLocationDetailVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-out-location-detail/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录子
|
|
||||
export const deleteSparePartsOutLocationDetail = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-out-location-detail/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录子 Excel
|
|
||||
export const exportSparePartsOutLocationDetail = async (params) => { |
|
||||
return await request.download({ |
|
||||
url: `/eam/spare-parts-out-location-detail/export-excel`, |
|
||||
params |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-out-location-detail/get-import-template' }) |
|
||||
} |
|
@ -1,81 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsOutLocationMainVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
theme: string |
|
||||
status: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
areaCode: string |
|
||||
locationCode: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主列表
|
|
||||
export const getSparePartsOutLocationMainPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-out-location-main/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-main/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主详情
|
|
||||
export const getSparePartsOutLocationMain = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-main/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录主
|
|
||||
export const createSparePartsOutLocationMain = async (data: SparePartsOutLocationMainVO) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-out-location-main/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录主
|
|
||||
export const updateSparePartsOutLocationMain = async (data: SparePartsOutLocationMainVO) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-out-location-main/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录主
|
|
||||
export const deleteSparePartsOutLocationMain = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-out-location-main/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 出库
|
|
||||
export const outSparePartsOutLocationMain = async (data) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-out-location-main/out`, data }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录主 Excel
|
|
||||
export const exportSparePartsOutLocationMain = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
const data = { ...params } |
|
||||
return await request.downloadPost({ |
|
||||
url: `/eam/spare-parts-out-location-main/export-excel-senior`, |
|
||||
data |
|
||||
}) |
|
||||
} else { |
|
||||
return await request.download({ |
|
||||
url: `/eam/spare-parts-out-location-main/export-excel`, |
|
||||
params |
|
||||
}) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-out-location-main/get-import-template' }) |
|
||||
} |
|
@ -1,72 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsOutLocationRecordDetailVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
theme: string |
|
||||
status: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
areaCode: string |
|
||||
locationCode: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主列表
|
|
||||
export const getSparePartsOutLocationDetailRecordPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-in-location-main-record/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main-record/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询备件入库记录主详情
|
|
||||
export const getSparePartsOutLocationDetailRecord = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-in-location-main-record/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增备件入库记录主
|
|
||||
export const createSparePartsOutLocationDetailRecord = async ( |
|
||||
data: SparePartsInLocationMainRecordVO |
|
||||
) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-in-location-main-record/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改备件入库记录主
|
|
||||
export const updateSparePartsOutLocationDetailRecord = async ( |
|
||||
data: SparePartsInLocationMainRecordVO |
|
||||
) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-in-location-main-record/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除备件入库记录主
|
|
||||
export const deleteSparePartsOutLocationDetailRecord = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-in-location-main-record/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出备件入库记录主 Excel
|
|
||||
export const exportSparePartsOutLocationDetailRecord = async (params) => { |
|
||||
return await request.download({ |
|
||||
url: `/eam/spare-parts-in-location-main-record/export-excel`, |
|
||||
params |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-in-location-main-record/get-import-template' }) |
|
||||
} |
|
@ -1,54 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
// 创建领用出库记录子
|
|
||||
export function createSparePartsOutLocationRecordDetail(data) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/create', |
|
||||
method: 'post', |
|
||||
data: data |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 更新领用出库记录子
|
|
||||
export function updateSparePartsOutLocationRecordDetail(data) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/update', |
|
||||
method: 'put', |
|
||||
data: data |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 删除领用出库记录子
|
|
||||
export function deleteSparePartsOutLocationRecordDetail(id) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/delete?id=' + id, |
|
||||
method: 'delete' |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 获得领用出库记录子
|
|
||||
export function getSparePartsOutLocationRecordDetail(id) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/get?id=' + id, |
|
||||
method: 'get' |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 获得领用出库记录子分页
|
|
||||
export function getSparePartsOutLocationRecordDetailPage(query) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/page', |
|
||||
method: 'get', |
|
||||
params: query |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 导出领用出库记录子 Excel
|
|
||||
export function exportSparePartsOutLocationRecordDetailExcel(query) { |
|
||||
return request({ |
|
||||
url: '/eam/spare-parts-out-location-detail-record/export-excel', |
|
||||
method: 'get', |
|
||||
params: query, |
|
||||
responseType: 'blob' |
|
||||
}) |
|
||||
} |
|
@ -1,71 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface SparePartsOutLocationRecordMainVO { |
|
||||
id: number |
|
||||
number: string |
|
||||
theme: string |
|
||||
applyer: string |
|
||||
approver: number |
|
||||
approveContent: string |
|
||||
approveTime: Date |
|
||||
autoExamine: string |
|
||||
autoAgree: string |
|
||||
directCreateRecord: string |
|
||||
areaCode: string |
|
||||
locationCode: string |
|
||||
departmentCode: string |
|
||||
remark: string |
|
||||
siteId: string |
|
||||
available: string |
|
||||
deletionTime: Date |
|
||||
deleterId: byte[] |
|
||||
concurrencyStamp: number |
|
||||
} |
|
||||
|
|
||||
// 查询领用出库记录主列表
|
|
||||
export const getSparePartsOutLocationRecordMainPage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = { ...params } |
|
||||
return await request.post({ url: '/eam/spare-parts-out-location-main-record/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-main-record/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询领用出库记录主详情
|
|
||||
export const getSparePartsOutLocationRecordMain = async (id: number) => { |
|
||||
return await request.get({ url: `/eam/spare-parts-out-location-main-record/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增领用出库记录主
|
|
||||
export const createSparePartsOutLocationRecordMain = async ( |
|
||||
data: SparePartsOutLocationRecordMainVO |
|
||||
) => { |
|
||||
return await request.post({ url: `/eam/spare-parts-out-location-main-record/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改领用出库记录主
|
|
||||
export const updateSparePartsOutLocationRecordMain = async ( |
|
||||
data: SparePartsOutLocationRecordMainVO |
|
||||
) => { |
|
||||
return await request.put({ url: `/eam/spare-parts-out-location-main-record/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除领用出库记录主
|
|
||||
export const deleteSparePartsOutLocationRecordMain = async (id: number) => { |
|
||||
return await request.delete({ url: `/eam/spare-parts-out-location-main-record/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出领用出库记录主 Excel
|
|
||||
export const exportSparePartsOutLocationRecordMain = async (params) => { |
|
||||
return await request.download({ |
|
||||
url: `/eam/spare-parts-out-location-main-record/export-excel`, |
|
||||
params |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/eam/spare-parts-out-location-main-record/get-import-template' }) |
|
||||
} |
|
@ -1,374 +0,0 @@ |
|||||
<template> |
|
||||
<ContentWrap> |
|
||||
<!-- 搜索工作栏 --> |
|
||||
<Search |
|
||||
:schema="SparePartsOutLocationRecordMain.allSchemas.searchSchema" |
|
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 列表头部 --> |
|
||||
<TableHead |
|
||||
:HeadButttondata="HeadButttondata" |
|
||||
@button-base-click="buttonBaseClick" |
|
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="SparePartsOutLocationRecordMain.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 }"> |
|
||||
<ButtonBase |
|
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
|
||||
</Table> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 表单弹窗:添加/修改 --> |
|
||||
<BasicForm |
|
||||
ref="formRef" |
|
||||
@success="getList" |
|
||||
:rules="SparePartsOutLocationRecordMainRules" |
|
||||
:formAllSchemas="SparePartsOutLocationRecordMain.allSchemas" |
|
||||
:tableAllSchemas="SparePartsOutLocationRecordDetail.allSchemas" |
|
||||
:tableFormRules="SparePartsOutLocationRecordDetailRules" |
|
||||
:tableData="tableData" |
|
||||
:apiUpdate="SparePartsOutLocationRecordMainApi.updateSparePartsOutLocationRecordMain" |
|
||||
:apiCreate="SparePartsOutLocationRecordMainApi.createSparePartsOutLocationRecordMain" |
|
||||
:isBusiness="true" |
|
||||
@handleAddTable="handleAddTable" |
|
||||
@handleDeleteTable="handleDeleteTable" |
|
||||
@searchTableSuccess="searchTableSuccess" |
|
||||
@submitForm="submitForm" |
|
||||
/> |
|
||||
|
|
||||
<!-- 详情 --> |
|
||||
<Detail |
|
||||
ref="detailRef" |
|
||||
:isBasic="false" |
|
||||
:allSchemas="SparePartsOutLocationRecordMain.allSchemas" |
|
||||
:detailAllSchemas="SparePartsOutLocationRecordDetail.allSchemas" |
|
||||
:detailAllSchemasRules="SparePartsOutLocationRecordDetailRules" |
|
||||
:apiCreate="SparePartsOutLocationRecordDetailApi.createSparePartsOutLocationRecordDetail" |
|
||||
:apiUpdate="SparePartsOutLocationRecordDetailApi.updateSparePartsOutLocationRecordDetail" |
|
||||
:apiPage="SparePartsOutLocationRecordDetailApi.getSparePartsOutLocationRecordDetailPage" |
|
||||
:apiDelete="SparePartsOutLocationRecordDetailApi.deleteSparePartsOutLocationRecordDetail" |
|
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
||||
:isShowAddBtn="false" |
|
||||
:detailButtonIsShow="true" |
|
||||
/> |
|
||||
|
|
||||
<!-- 导入 --> |
|
||||
<ImportForm |
|
||||
ref="importFormRef" |
|
||||
url="/eam/sparePartsOutLocationRecordDetail/import" |
|
||||
:importTemplateData="importTemplateData" |
|
||||
@success="importSuccess" |
|
||||
/> |
|
||||
</template> |
|
||||
|
|
||||
<script setup lang="ts"> |
|
||||
import download from '@/utils/download' |
|
||||
import { |
|
||||
SparePartsOutLocationRecordMain, |
|
||||
SparePartsOutLocationRecordMainRules, |
|
||||
SparePartsOutLocationRecordDetail, |
|
||||
SparePartsOutLocationRecordDetailRules |
|
||||
} from './sparePartsOutLocationRecord.data' |
|
||||
import * as SparePartsOutLocationRecordMainApi from '@/api/eam/sparePartsOutLocationRecordMain/index' |
|
||||
import * as SparePartsOutLocationRecordDetailApi from '@/api/eam/sparePartsOutLocationRecordDetail/index' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
||||
|
|
||||
// 采购订单 |
|
||||
defineOptions({ name: 'SparePartsOutLocationRecord' }) |
|
||||
|
|
||||
const message = useMessage() // 消息弹窗 |
|
||||
const { t } = useI18n() // 国际化 |
|
||||
const route = useRoute() // 路由信息 |
|
||||
const routeName = ref() |
|
||||
routeName.value = route.name |
|
||||
const tableColumns = ref(SparePartsOutLocationRecordMain.allSchemas.tableColumns) |
|
||||
|
|
||||
// 字段设置 更新主列表字段 |
|
||||
const updataTableColumns = (val) => { |
|
||||
tableColumns.value = val |
|
||||
} |
|
||||
|
|
||||
// 查询页面返回 |
|
||||
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
||||
nextTick(() => { |
|
||||
nextTick(() => { |
|
||||
const setV = {} |
|
||||
setV[formField] = val[0][searchField] |
|
||||
if (formField == 'sparePartsCode') { |
|
||||
row['sparePartsCode'] = val[0].itemNumber |
|
||||
row['currentQty'] = val[0].qty |
|
||||
} |
|
||||
if (formField == 'equipmentCode') { |
|
||||
row['equipmentCode'] = val[0].code |
|
||||
} |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
}) |
|
||||
} |
|
||||
// 查询页面返回——详情 |
|
||||
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
||||
nextTick(async () => { |
|
||||
const setV = {} |
|
||||
// if(formField == 'itemCode'){ |
|
||||
// await ItembasicApi.getItembasicPage({ |
|
||||
// code: setV['itemCode'] |
|
||||
// }).then(res => { |
|
||||
// setV['uom'] = res.list[0].uom |
|
||||
// setV[formField] = val[0][searchField] |
|
||||
// }) |
|
||||
// } |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
|
||||
const Echo = [] |
|
||||
const { tableObject, tableMethods } = useTable({ |
|
||||
getListApi: SparePartsOutLocationRecordMainApi.getSparePartsOutLocationRecordMainPage // 分页接口 |
|
||||
}) |
|
||||
|
|
||||
// 获得表格的各种操作 |
|
||||
const { getList, setSearchParams } = tableMethods |
|
||||
|
|
||||
// 列表头部按钮 |
|
||||
const HeadButttondata = [ |
|
||||
// defaultButtons.defaultAddBtn(null), // 新增 |
|
||||
// defaultButtons.defaultImportBtn(null), // 导入 |
|
||||
// defaultButtons.defaultExportBtn(null), // 导出 |
|
||||
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.available) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮 |
|
||||
const butttondata = (row) => { |
|
||||
return [ |
|
||||
// defaultButtons.mainAdjust(null),// 盘点调整 |
|
||||
] |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮事件 |
|
||||
const buttonTableClick = async (val, row) => { |
|
||||
if (val == 'edit') { |
|
||||
// 编辑 |
|
||||
openForm('update', row) |
|
||||
} |
|
||||
// else if (val == 'mainOrderClo') { |
|
||||
// // 关闭 |
|
||||
// handleClose(row.id) |
|
||||
// } |
|
||||
else if (val == 'delete') { |
|
||||
// 删除 |
|
||||
handleDelete(row.id) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 添加/修改操作 */ |
|
||||
const formRef = ref() |
|
||||
const openForm = async (type: string, row?: number) => { |
|
||||
tableData.value = [] // 重置明细数据 |
|
||||
formRef.value.open(type, row) |
|
||||
} |
|
||||
|
|
||||
/** 详情操作 */ |
|
||||
const detailRef = ref() |
|
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicSparePartsOutLocationRecordMain') |
|
||||
} |
|
||||
|
|
||||
/** 删除按钮操作 */ |
|
||||
const handleDelete = async (id: number) => { |
|
||||
try { |
|
||||
// 删除的二次确认 |
|
||||
await message.delConfirm() |
|
||||
// 发起删除 |
|
||||
await SparePartsOutLocationRecordMainApi.deleteSparePartsOutLocationRecordMain(id) |
|
||||
message.success(t('common.delSuccess')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 列表导出按钮操作 */ |
|
||||
const exportLoading = ref(false) // 导出的加载中 |
|
||||
const handleMainExport = async (id: number) => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsOutLocationRecordMainApi.exportSparePartsOutLocationRecordMain(id) |
|
||||
download.excel(data, '盘点工单.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 关闭按钮操作 */ |
|
||||
// const handleClose = async (id: number) => { |
|
||||
// try { |
|
||||
// // 关闭的二次确认 |
|
||||
// await message.confirm('是否关闭所选中数据?') |
|
||||
// // 发起关闭 |
|
||||
// await SparePartsOutLocationRecordMainApi.closeSparePartsOutLocationRecordMain(id) |
|
||||
// message.success(t('关闭成功!')) |
|
||||
// // 刷新列表 |
|
||||
// await getList() |
|
||||
// } catch {} |
|
||||
// } |
|
||||
|
|
||||
/** 导出按钮操作 */ |
|
||||
const handleExport = async () => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsOutLocationRecordMainApi.exportSparePartsOutLocationRecordMain( |
|
||||
tableObject.params |
|
||||
) |
|
||||
download.excel(data, '备件申领记录主.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* tableForm方法 |
|
||||
*/ |
|
||||
const tableFormKeys = {} |
|
||||
SparePartsOutLocationRecordDetail.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) |
|
||||
} |
|
||||
|
|
||||
// 主子数据 提交 |
|
||||
const submitForm = async (formType, data) => { |
|
||||
data.subList = tableData.value // 拼接子表数据参数 |
|
||||
try { |
|
||||
if (formType === 'create') { |
|
||||
await SparePartsOutLocationRecordMainApi.createSparePartsOutLocationRecordMain(data) |
|
||||
message.success(t('common.createSuccess')) |
|
||||
} else { |
|
||||
await SparePartsOutLocationRecordMainApi.updateSparePartsOutLocationRecordMain(data) |
|
||||
message.success(t('common.updateSuccess')) |
|
||||
} |
|
||||
formRef.value.dialogVisible = false |
|
||||
// 刷新当前列表 |
|
||||
getList() |
|
||||
} finally { |
|
||||
formRef.value.formLoading = 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 SparePartsOutLocationRecordMainApi.importTemplate() |
|
||||
}) |
|
||||
</script> |
|
@ -1,371 +1,309 @@ |
|||||
<template> |
<template> |
||||
<ContentWrap> |
<ContentWrap> |
||||
<!-- 搜索工作栏 --> |
<!-- 搜索工作栏 --> |
||||
<Search |
<Search :schema="ApplicationRecordMain.allSchemas.searchSchema" @search="setSearchParams" |
||||
:schema="ApplicationRecordMain.allSchemas.searchSchema" |
@reset="setSearchParams" /> |
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
</ContentWrap> |
||||
|
|
||||
<!-- 列表头部 --> |
<!-- 列表头部 --> |
||||
<TableHead |
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName" |
||||
:HeadButttondata="HeadButttondata" |
@updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" |
||||
@button-base-click="buttonBaseClick" |
:allSchemas="ApplicationRecordMain.allSchemas" /> |
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="ApplicationRecordMain.allSchemas" |
|
||||
/> |
|
||||
|
|
||||
<!-- 列表 --> |
<!-- 列表 --> |
||||
<ContentWrap> |
<ContentWrap> |
||||
<Table |
<Table :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{ |
||||
:columns="tableColumns" |
|
||||
:data="tableObject.tableList" |
|
||||
:loading="tableObject.loading" |
|
||||
:pagination="{ |
|
||||
total: tableObject.total |
total: tableObject.total |
||||
}" |
}" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage" |
||||
v-model:pageSize="tableObject.pageSize" |
v-model:sort="tableObject.sort"> |
||||
v-model:currentPage="tableObject.currentPage" |
<template #number="{row}"> |
||||
v-model:sort="tableObject.sort" |
|
||||
> |
|
||||
<template #number="{ row }"> |
|
||||
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
||||
<span>{{ row.number }}</span> |
<span>{{ row.number }}</span> |
||||
</el-button> |
</el-button> |
||||
</template> |
</template> |
||||
<template #action="{ row }"> |
<template #action="{ row }"> |
||||
<ButtonBase |
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" /> |
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
</template> |
||||
</Table> |
</Table> |
||||
</ContentWrap> |
</ContentWrap> |
||||
|
|
||||
<!-- 表单弹窗:添加/修改 --> |
<!-- 表单弹窗:添加/修改 --> |
||||
<BasicForm |
<BasicForm ref="formRef" @success="getList" :rules="ApplicationRecordMainRules" |
||||
ref="formRef" |
:formAllSchemas="ApplicationRecordMain.allSchemas" :tableAllSchemas="ApplicationRecordDetail.allSchemas" |
||||
@success="getList" |
:tableFormRules="ApplicationRecordDetailRules" :tableData="tableData" |
||||
:rules="ApplicationRecordMainRules" |
|
||||
:formAllSchemas="ApplicationRecordMain.allSchemas" |
|
||||
:tableAllSchemas="ApplicationRecordDetail.allSchemas" |
|
||||
:tableFormRules="ApplicationRecordDetailRules" |
|
||||
:tableData="tableData" |
|
||||
:apiUpdate="ApplicationRecordMainApi.updateApplicationRecordMain" |
:apiUpdate="ApplicationRecordMainApi.updateApplicationRecordMain" |
||||
:apiCreate="ApplicationRecordMainApi.createApplicationRecordMain" |
:apiCreate="ApplicationRecordMainApi.createApplicationRecordMain" :isBusiness="true" |
||||
:isBusiness="true" |
@handleAddTable="handleAddTable" @handleDeleteTable="handleDeleteTable" @searchTableSuccess="searchTableSuccess" |
||||
@handleAddTable="handleAddTable" |
@submitForm="submitForm" /> |
||||
@handleDeleteTable="handleDeleteTable" |
|
||||
@searchTableSuccess="searchTableSuccess" |
|
||||
@submitForm="submitForm" |
|
||||
/> |
|
||||
|
|
||||
<!-- 详情 --> |
<!-- 详情 --> |
||||
<Detail |
<Detail ref="detailRef" :isBasic="false" :allSchemas="ApplicationRecordMain.allSchemas" |
||||
ref="detailRef" |
:detailAllSchemas="ApplicationRecordDetail.allSchemas" :detailAllSchemasRules="ApplicationRecordDetailRules" |
||||
:isBasic="false" |
|
||||
:allSchemas="ApplicationRecordMain.allSchemas" |
|
||||
:detailAllSchemas="ApplicationRecordDetail.allSchemas" |
|
||||
:detailAllSchemasRules="ApplicationRecordDetailRules" |
|
||||
:apiCreate="ApplicationRecordDetailApi.createApplicationRecordDetail" |
:apiCreate="ApplicationRecordDetailApi.createApplicationRecordDetail" |
||||
:apiUpdate="ApplicationRecordDetailApi.updateApplicationRecordDetail" |
:apiUpdate="ApplicationRecordDetailApi.updateApplicationRecordDetail" |
||||
:apiPage="ApplicationRecordDetailApi.getApplicationRecordDetailPage" |
:apiPage="ApplicationRecordDetailApi.getApplicationRecordDetailPage" |
||||
:apiDelete="ApplicationRecordDetailApi.deleteApplicationRecordDetail" |
:apiDelete="ApplicationRecordDetailApi.deleteApplicationRecordDetail" |
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
@searchTableSuccessDetail="searchTableSuccessDetail" |
||||
:isShowAddBtn="false" |
:isShowAddBtn="false" |
||||
:detailButtonIsShow="true" |
:detailButtonIsShow="true" /> |
||||
/> |
|
||||
<!-- 审批详情 --> |
<!-- 审批详情 --> |
||||
<!-- <approveDetail |
<approveDetail ref="detailRef1" :isBasic="false" :allSchemas="ApplicationRecordMain.allSchemas" |
||||
ref="detailRef1" |
:detailAllSchemas="ApplicationRecordDetail.allSchemas" :detailAllSchemasRules="ApplicationRecordDetailRules" |
||||
:isBasic="false" |
|
||||
:allSchemas="ApplicationRecordMain.allSchemas" |
|
||||
:detailAllSchemas="ApplicationRecordDetail.allSchemas" |
|
||||
:detailAllSchemasRules="ApplicationRecordDetailRules" |
|
||||
:apiAgree="ApplicationRecordMainApi.agreeApplicationRecordMain" |
:apiAgree="ApplicationRecordMainApi.agreeApplicationRecordMain" |
||||
:apiDisAgree="ApplicationRecordMainApi.disAgreeApplicationRecordMain" |
:apiDisAgree="ApplicationRecordMainApi.disAgreeApplicationRecordMain" |
||||
:apiPage="ApplicationRecordDetailApi.getApplicationRecordDetailPage" |
:apiPage="ApplicationRecordDetailApi.getApplicationRecordDetailPage" |
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
@searchTableSuccessDetail="searchTableSuccessDetail" |
||||
@agree="getList" |
@agree="getList"/> |
||||
/> --> |
|
||||
<!-- 导入 --> |
<!-- 导入 --> |
||||
<ImportForm |
<ImportForm ref="importFormRef" url="/wms/purchase-main/import" :importTemplateData="importTemplateData" |
||||
ref="importFormRef" |
@success="importSuccess" :isShowOut="true" :updateIsDisable="true" :coverIsDisable="true" :mode="2" /> |
||||
url="/wms/purchase-main/import" |
|
||||
:importTemplateData="importTemplateData" |
|
||||
@success="importSuccess" |
|
||||
:isShowOut="true" |
|
||||
:updateIsDisable="true" |
|
||||
:coverIsDisable="true" |
|
||||
:mode="2" |
|
||||
/> |
|
||||
</template> |
</template> |
||||
|
|
||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||
import download from '@/utils/download' |
import download from '@/utils/download' |
||||
import { |
import { ApplicationRecordMain, ApplicationRecordMainRules, ApplicationRecordDetail, ApplicationRecordDetailRules } from './applicationRecordMain.data' |
||||
ApplicationRecordMain, |
import * as ApplicationRecordMainApi from '@/api/eam/item/applicationRecordMain' |
||||
ApplicationRecordMainRules, |
import * as ApplicationRecordDetailApi from '@/api/eam/item/applicationRecordDetail' |
||||
ApplicationRecordDetail, |
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
ApplicationRecordDetailRules |
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
} from './applicationRecordMain.data' |
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
import * as ApplicationRecordMainApi from '@/api/eam/applicationRecordMain' |
import approveDetail from '@/components/Detail/src/approveDetail.vue' |
||||
import * as ApplicationRecordDetailApi from '@/api/eam/applicationRecordDetail' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
||||
import approveDetail from '@/components/Detail/src/approveDetail.vue' |
|
||||
|
|
||||
// 采购订单 |
// 采购订单 |
||||
defineOptions({ name: 'ApplicationRecord' }) |
defineOptions({ name: 'ApplicationRecord' }) |
||||
|
|
||||
const message = useMessage() // 消息弹窗 |
const message = useMessage() // 消息弹窗 |
||||
const { t } = useI18n() // 国际化 |
const { t } = useI18n() // 国际化 |
||||
const route = useRoute() // 路由信息 |
const route = useRoute() // 路由信息 |
||||
const routeName = ref() |
const routeName = ref() |
||||
routeName.value = route.name |
routeName.value = route.name |
||||
const tableColumns = ref(ApplicationRecordMain.allSchemas.tableColumns) |
const tableColumns = ref(ApplicationRecordMain.allSchemas.tableColumns) |
||||
|
|
||||
// 字段设置 更新主列表字段 |
// 字段设置 更新主列表字段 |
||||
const updataTableColumns = (val) => { |
const updataTableColumns = (val) => { |
||||
tableColumns.value = val |
tableColumns.value = val |
||||
} |
} |
||||
|
|
||||
// 查询页面返回 |
// 查询页面返回 |
||||
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
nextTick(async () => { |
nextTick(async () => { |
||||
if (type == 'tableForm') { |
if (type == 'tableForm') { |
||||
// 明细查询页赋值 |
// 明细查询页赋值 |
||||
row[formField] = val[0][searchField] |
row[formField] = val[0][searchField] |
||||
row['itemNumber'] = val[0]['number'] |
row['itemNumber'] = val[0]['number'] |
||||
row['isRadeIn'] = val[0]['isRadeIn'] |
row['isRadeIn'] = val[0]['isRadeIn'] |
||||
row['available'] = val[0]['available'] |
row['available'] = val[0]['available'] |
||||
} else { |
} else { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
// 查询页面返回——详情 |
||||
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
||||
|
nextTick(async () => { |
||||
const setV = {} |
const setV = {} |
||||
setV[formField] = val[0][searchField] |
// if(formField == 'itemCode'){ |
||||
|
// await ItembasicApi.getItembasicPage({ |
||||
|
// code: setV['itemCode'] |
||||
|
// }).then(res => { |
||||
|
// setV['uom'] = res.list[0].uom |
||||
|
// setV[formField] = val[0][searchField] |
||||
|
// }) |
||||
|
// } |
||||
formRef.setValues(setV) |
formRef.setValues(setV) |
||||
} |
}) |
||||
}) |
} |
||||
} |
|
||||
// 查询页面返回——详情 |
|
||||
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
||||
nextTick(async () => { |
|
||||
const setV = {} |
|
||||
// if(formField == 'itemCode'){ |
|
||||
// await ItembasicApi.getItembasicPage({ |
|
||||
// code: setV['itemCode'] |
|
||||
// }).then(res => { |
|
||||
// setV['uom'] = res.list[0].uom |
|
||||
// setV[formField] = val[0][searchField] |
|
||||
// }) |
|
||||
// } |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
// 子表新增的时候选择表格之后需要会显得字段 |
||||
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom'] |
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom'] |
||||
const Echo = [] |
const Echo = [] |
||||
|
|
||||
const { tableObject, tableMethods } = useTable({ |
const { tableObject, tableMethods } = useTable({ |
||||
getListApi: ApplicationRecordMainApi.getApplicationRecordMainPage // 分页接口 |
getListApi: ApplicationRecordMainApi.getApplicationRecordMainPage // 分页接口 |
||||
}) |
}) |
||||
|
|
||||
// 获得表格的各种操作 |
// 获得表格的各种操作 |
||||
const { getList, setSearchParams } = tableMethods |
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
// 列表头部按钮 |
// 列表头部按钮 |
||||
const HeadButttondata = [ |
const HeadButttondata = [ |
||||
// defaultButtons.defaultAddBtn(null), // 新增 |
// defaultButtons.defaultAddBtn(null), // 新增 |
||||
// defaultButtons.defaultImportBtn(null), // 导入 |
// defaultButtons.defaultImportBtn(null), // 导入 |
||||
// defaultButtons.defaultExportBtn(null), // 导出 |
// defaultButtons.defaultExportBtn(null), // 导出 |
||||
defaultButtons.defaultFreshBtn(null), // 刷新 |
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
defaultButtons.defaultFilterBtn(null), // 筛选 |
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
defaultButtons.defaultSetBtn(null) // 设置 |
defaultButtons.defaultSetBtn(null), // 设置 |
||||
// { |
// { |
||||
// label: '自定义扩展按钮', |
// label: '自定义扩展按钮', |
||||
// name: 'zdy', |
// name: 'zdy', |
||||
// hide: false, |
// hide: false, |
||||
// type: 'primary', |
// type: 'primary', |
||||
// icon: 'Select', |
// icon: 'Select', |
||||
// color: '' |
// color: '' |
||||
// }, |
// }, |
||||
] |
] |
||||
|
|
||||
// 头部按钮事件 |
// 头部按钮事件 |
||||
const buttonBaseClick = (val, item) => { |
const buttonBaseClick = (val, item) => { |
||||
if (val == 'add') { |
if (val == 'add') { // 新增 |
||||
// 新增 |
openForm('create') |
||||
openForm('create') |
} else if (val == 'import') { // 导入 |
||||
} else if (val == 'import') { |
handleImport() |
||||
// 导入 |
} else if (val == 'export') { // 导出 |
||||
handleImport() |
handleExport() |
||||
} else if (val == 'export') { |
} else if (val == 'refresh') { // 刷新 |
||||
// 导出 |
getList() |
||||
handleExport() |
} else if (val == 'filtrate') { // 筛选 |
||||
} else if (val == 'refresh') { |
} else { // 其他按钮 |
||||
// 刷新 |
console.log('其他按钮', item) |
||||
getList() |
} |
||||
} else if (val == 'filtrate') { |
|
||||
// 筛选 |
|
||||
} else { |
|
||||
// 其他按钮 |
|
||||
console.log('其他按钮', item) |
|
||||
} |
} |
||||
} |
|
||||
|
|
||||
// 根据状态返回该按钮是否显示 |
// 根据状态返回该按钮是否显示 |
||||
const isShowMainButton = (row, val) => { |
const isShowMainButton = (row, val) => { |
||||
if (val.indexOf(row.status) > -1) { |
if (val.indexOf(row.status) > -1) { |
||||
return false |
return false |
||||
} else { |
} else { |
||||
return true |
return true |
||||
|
} |
||||
} |
} |
||||
} |
|
||||
|
|
||||
// 列表-操作按钮 |
// 列表-操作按钮 |
||||
const butttondata = (row) => { |
const butttondata = (row) => { |
||||
return [ |
return [ |
||||
defaultButtons.approveBtn({ |
defaultButtons.approveBtn({ hide: isShowMainButton(row, ['0']) ,hasPermi:'item:itemApplyMain:approve'}), // 审批 |
||||
hide: isShowMainButton(row, ['0']), |
// defaultButtons.mainListEditBtn(null), // 编辑 |
||||
hasPermi: 'item:itemApplyMain:approve' |
// defaultButtons.mainListDeleteBtn(null), // 删除 |
||||
}) // 审批 |
] |
||||
// defaultButtons.mainListEditBtn(null), // 编辑 |
|
||||
// defaultButtons.mainListDeleteBtn(null), // 删除 |
|
||||
] |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮事件 |
|
||||
const buttonTableClick = async (val, row) => { |
|
||||
if (val == 'edit') { |
|
||||
// 编辑 |
|
||||
openForm('update', row) |
|
||||
} else if (val == 'approve') { |
|
||||
// 审批 |
|
||||
handleApprove(row, '单据号', row.number) |
|
||||
} else if (val == 'delete') { |
|
||||
// 删除 |
|
||||
handleDelete(row.id) |
|
||||
} |
} |
||||
} |
|
||||
|
|
||||
/** 添加/修改操作 */ |
// 列表-操作按钮事件 |
||||
const formRef = ref() |
const buttonTableClick = async (val, row) => { |
||||
const openForm = async (type: string, row?: number) => { |
if (val == 'edit') { // 编辑 |
||||
tableData.value = [] // 重置明细数据 |
openForm('update', row) |
||||
formRef.value.open(type, row) |
} else if (val == 'approve') { // 审批 |
||||
} |
handleApprove(row, '单据号', row.number) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
/** 详情操作 */ |
/** 添加/修改操作 */ |
||||
const detailRef = ref() |
const formRef = ref() |
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
const openForm = async (type : string, row ?: number) => { |
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicApplicationRecordMain') |
tableData.value = [] // 重置明细数据 |
||||
} |
formRef.value.open(type, row) |
||||
const detailRef1 = ref() |
} |
||||
const handleApprove = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef1.value.openDetail(row, titleName, titleValue, 'basicApplicationRecordMain') |
|
||||
// 刷新列表 |
|
||||
getList() |
|
||||
} |
|
||||
|
|
||||
/** 删除按钮操作 */ |
/** 详情操作 */ |
||||
const handleDelete = async (id: number) => { |
const detailRef = ref() |
||||
try { |
const openDetail = (row : any, titleName : any, titleValue : any) => { |
||||
// 删除的二次确认 |
detailRef.value.openDetail(row, titleName, titleValue, 'basicApplicationRecordMain') |
||||
await message.delConfirm() |
} |
||||
// 发起删除 |
const detailRef1 = ref() |
||||
await ApplicationRecordMainApi.deleteApplicationRecordMain(id) |
const handleApprove = (row : any, titleName : any, titleValue : any) => { |
||||
message.success(t('common.delSuccess')) |
detailRef1.value.openDetail(row, titleName, titleValue, 'basicApplicationRecordMain') |
||||
// 刷新列表 |
// 刷新列表 |
||||
await getList() |
getList() |
||||
} catch {} |
} |
||||
} |
|
||||
|
|
||||
/** 导出按钮操作 */ |
/** 删除按钮操作 */ |
||||
const exportLoading = ref(false) // 导出的加载中 |
const handleDelete = async (id : number) => { |
||||
const handleExport = async () => { |
try { |
||||
try { |
// 删除的二次确认 |
||||
// 导出的二次确认 |
await message.delConfirm() |
||||
await message.exportConfirm() |
// 发起删除 |
||||
// 发起导出 |
await ApplicationRecordMainApi.deleteApplicationRecordMain(id) |
||||
exportLoading.value = true |
message.success(t('common.delSuccess')) |
||||
const data = await ApplicationRecordMainApi.exportApplicationRecordMain(tableObject.params) |
// 刷新列表 |
||||
download.excel(data, '备件申领记录主.xlsx') |
await getList() |
||||
} catch { |
} catch { } |
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
} |
||||
} |
|
||||
|
|
||||
/** |
/** 导出按钮操作 */ |
||||
* tableForm方法 |
const exportLoading = ref(false) // 导出的加载中 |
||||
*/ |
const handleExport = async () => { |
||||
const tableFormKeys = {} |
try { |
||||
ApplicationRecordDetail.allSchemas.tableFormColumns.forEach((item) => { |
// 导出的二次确认 |
||||
tableFormKeys[item.field] = item.default ? item.default : '' |
await message.exportConfirm() |
||||
}) |
// 发起导出 |
||||
const tableData = ref([]) |
exportLoading.value = true |
||||
|
const data = await ApplicationRecordMainApi.exportApplicationRecordMain(tableObject.params) |
||||
|
download.excel(data, '备件申领记录主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
// 添加明细 |
/** |
||||
const handleAddTable = () => { |
* tableForm方法 |
||||
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys))) |
*/ |
||||
} |
const tableFormKeys = {} |
||||
// 删除明细 |
ApplicationRecordDetail.allSchemas.tableFormColumns.forEach(item => { |
||||
const handleDeleteTable = (item, index) => { |
tableFormKeys[item.field] = item.default ? item.default : '' |
||||
tableData.value.splice(index, 1) |
}) |
||||
} |
const tableData = ref([]) |
||||
|
|
||||
// 主子数据 提交 |
// 添加明细 |
||||
const submitForm = async (formType, data) => { |
const handleAddTable = () => { |
||||
data.subList = tableData.value // 拼接子表数据参数 |
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys))) |
||||
try { |
} |
||||
if (formType === 'create') { |
// 删除明细 |
||||
await ApplicationRecordMainApi.createApplicationRecordMain(data) |
const handleDeleteTable = (item, index) => { |
||||
message.success(t('common.createSuccess')) |
tableData.value.splice(index, 1) |
||||
} else { |
} |
||||
await ApplicationRecordMainApi.updateApplicationRecordMain(data) |
|
||||
message.success(t('common.updateSuccess')) |
// 主子数据 提交 |
||||
|
const submitForm = async (formType, data) => { |
||||
|
data.subList = tableData.value // 拼接子表数据参数 |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
await ApplicationRecordMainApi.createApplicationRecordMain(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ApplicationRecordMainApi.updateApplicationRecordMain(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
formRef.value.dialogVisible = false |
||||
|
// 刷新当前列表 |
||||
|
getList() |
||||
|
} finally { |
||||
|
formRef.value.formLoading = false |
||||
} |
} |
||||
formRef.value.dialogVisible = false |
|
||||
// 刷新当前列表 |
|
||||
getList() |
|
||||
} finally { |
|
||||
formRef.value.formLoading = false |
|
||||
} |
} |
||||
} |
|
||||
|
|
||||
/** 导入 */ |
/** 导入 */ |
||||
const importFormRef = ref() |
const importFormRef = ref() |
||||
const handleImport = () => { |
const handleImport = () => { |
||||
importFormRef.value.open() |
importFormRef.value.open() |
||||
} |
} |
||||
|
|
||||
// 导入附件弹窗所需的参数 |
// 导入附件弹窗所需的参数 |
||||
const importTemplateData = reactive({ |
const importTemplateData = reactive({ |
||||
templateUrl: '', |
templateUrl: '', |
||||
templateTitle: '采购订单主导入模版.xlsx' |
templateTitle: '采购订单主导入模版.xlsx' |
||||
}) |
}) |
||||
|
|
||||
// 导入成功之后 |
// 导入成功之后 |
||||
const importSuccess = () => { |
const importSuccess = () => { |
||||
getList() |
getList() |
||||
} |
} |
||||
|
|
||||
// 筛选提交 |
// 筛选提交 |
||||
const searchFormClick = (searchData) => { |
const searchFormClick = (searchData) => { |
||||
tableObject.params = { |
tableObject.params = { |
||||
isSearch: true, |
isSearch: true, |
||||
filters: searchData.filters |
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
} |
} |
||||
getList() // 刷新当前列表 |
|
||||
} |
|
||||
|
|
||||
/** 初始化 **/ |
/** 初始化 **/ |
||||
onMounted(async () => { |
onMounted(async () => { |
||||
getList() |
getList() |
||||
importTemplateData.templateUrl = await ApplicationRecordMainApi.importTemplate() |
importTemplateData.templateUrl = await ApplicationRecordMainApi.importTemplate() |
||||
}) |
}) |
||||
</script> |
</script> |
||||
|
@ -0,0 +1,345 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search |
||||
|
:schema="Item.allSchemas.searchSchema" |
||||
|
@search="setSearchParams" |
||||
|
@reset="setSearchParams" |
||||
|
/> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="Item.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(row)" |
||||
|
@button-base-click="buttonTableClick($event, row)" |
||||
|
/> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="ItemRules" |
||||
|
:formAllSchemas="Item.allSchemas" |
||||
|
:apiUpdate="ItemApi.updateItem" |
||||
|
:apiCreate="ItemApi.createItem" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<SearchTable ref="searchTableRef" @searchTableSuccess="submitItem" /> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="Item.allSchemas" /> |
||||
|
<Dialog |
||||
|
ref="basicFormViewRef" |
||||
|
v-model="showView" |
||||
|
:key="viewKey" |
||||
|
:closeOnClickModal="true" |
||||
|
:title="viewTitle" |
||||
|
> |
||||
|
<el-image v-for="url in urls" :key="url" :src="url" lazy /> |
||||
|
</Dialog> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { Item, ItemRules } from './item.data' |
||||
|
import * as ItemApi from '@/api/eam/item' |
||||
|
// import { createDeviceItemBatch, getDeviceItemPage, getDeviceItemNoPage } from '@/api/eam/basic/rel' |
||||
|
// import { |
||||
|
// DeviceAccounts, |
||||
|
// DeviceAccountsRules |
||||
|
// } from '@/views/eam/device/deviceAccounts/deviceAccounts.data' |
||||
|
// import * as DeviceAccountsApi from '@/api/eam/device/deviceAccounts' |
||||
|
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' |
||||
|
import { SearchTable } from '@/components/SearchTable' |
||||
|
import { getAccessToken } from '@/utils/auth' |
||||
|
|
||||
|
defineOptions({ name: 'Item' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const itemNumber = ref() |
||||
|
const tableColumns = ref(Item.allSchemas.tableColumns) |
||||
|
const importFormRef = ref() |
||||
|
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL |
||||
|
const src = ref(BASE_URL + '/jmreport/view/950552010397122560?token=' + getAccessToken()) |
||||
|
|
||||
|
const showView = ref(false) |
||||
|
const viewTitle = ref('图片预览') |
||||
|
const urls = ref([]) |
||||
|
const viewKey = ref(0) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
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: ItemApi.getItemPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({ hasPermi: 'basic:item:create' }), // 新增 |
||||
|
defaultButtons.defaultExportBtn({ hasPermi: 'basic:item:export' }), // 导出 |
||||
|
// defaultButtons.selectQrCodeBatchBtn(null), //批量生成二维码 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null) // 设置 |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { |
||||
|
// 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'export') { |
||||
|
// 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'qrCodeBatch') { |
||||
|
// 批量生成二维码 |
||||
|
qrCodeBatch(val, item) |
||||
|
} else if (val == 'refresh') { |
||||
|
// 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { |
||||
|
// 筛选 |
||||
|
} else { |
||||
|
// 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
const qrCodeBatch = async (val, item) => { |
||||
|
const qrCodeList = tableObject.tableList.map((item) => `'${item?.number}'`).join(', ') |
||||
|
window.open(src.value + '&number=' + qrCodeList) |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondataView = (row) => { |
||||
|
return [defaultButtons.viewBtn(null)] |
||||
|
} |
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row) => { |
||||
|
return [ |
||||
|
defaultButtons.mainListEditBtn({ hasPermi: 'basic:item:update' }), // 编辑 |
||||
|
// defaultButtons.chooseDeviceBtn({ hasPermi: 'basic:item:choose' }), //备件 |
||||
|
defaultButtons.selectQrCodeBtn(null), //二维码 |
||||
|
defaultButtons.mainListDeleteBtn({ hasPermi: 'basic:item:delete' }), // 删除 |
||||
|
defaultButtons.viewBtn({ hide: !(row.filePathList != null && row.filePathList.length != 0) }) |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { |
||||
|
// 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'chooseDevice') { |
||||
|
openItem(row.number) |
||||
|
} else if (val == 'qrCode') { |
||||
|
window.open(src.value + "&number='" + row.number + "'") |
||||
|
} else if (val == 'delete') { |
||||
|
// 删除 |
||||
|
handleDelete(row.id) |
||||
|
} else if (val == 'view') { |
||||
|
// 图片预览 |
||||
|
openForm('view', row) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// const searchTableRef = ref() |
||||
|
// /** 绑定备件操作 */ |
||||
|
// const openItem = async (number: String) => { |
||||
|
// itemNumber.value = number |
||||
|
// await CallBack1() |
||||
|
// searchTableRef.value.open( |
||||
|
// '选择设备', |
||||
|
// DeviceAccounts.allSchemas, |
||||
|
// DeviceAccountsApi.getDeviceAccountsPage, |
||||
|
// null, |
||||
|
// DeviceAccounts.allSchemas.searchSchema, |
||||
|
// true, |
||||
|
// null, |
||||
|
// null, |
||||
|
// null, |
||||
|
// null, |
||||
|
// searchTableSelections.value |
||||
|
// ) |
||||
|
// } |
||||
|
|
||||
|
// const searchTableSelections = ref([]) |
||||
|
// const CallBack1 = async () => { |
||||
|
// await getDeviceItemNoPage({ itemNumber: itemNumber.value }).then(async (res) => { |
||||
|
// await DeviceAccountsApi.getDeviceAccountsAllNoPage({}).then((response) => { |
||||
|
// searchTableSelections.value = response.filter((element) => { |
||||
|
// let flag = false |
||||
|
// res.forEach((item) => { |
||||
|
// if (element.number == item.deviceNumber) { |
||||
|
// flag = true |
||||
|
// } |
||||
|
// }) |
||||
|
// return flag |
||||
|
// }) |
||||
|
// }) |
||||
|
// }) |
||||
|
// } |
||||
|
|
||||
|
const submitItem = async (formFieldRef, searchFieldRef, selections, typeRef, rowRef) => { |
||||
|
const deviceItemRelList = selections.map((element) => ({ |
||||
|
itemNumber: itemNumber.value, |
||||
|
deviceNumber: element.number |
||||
|
})) |
||||
|
createDeviceItemBatch(deviceItemRelList).then((res) => { |
||||
|
message.success(t('common.createSuccess')) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
console.log(row) |
||||
|
if (type == 'view') { |
||||
|
showView.value = true |
||||
|
urls.value = row.filePathList |
||||
|
viewKey.value += 1 |
||||
|
} else { |
||||
|
if (row && row.filePathList && row.filePathList.length > 0) { |
||||
|
row.filePathListView = row.filePathList.map((item) => { |
||||
|
return { |
||||
|
name: item, |
||||
|
url: item |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType, data) => { |
||||
|
var isHave = Item.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 |
||||
|
data.filePathList = [] |
||||
|
for (let i = 0; i < data.filePathListView.length; i++) { |
||||
|
data.filePathList.push(data.filePathListView[i].url) |
||||
|
} |
||||
|
if (formType === 'create') { |
||||
|
await ItemApi.createItem(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ItemApi.updateItem(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, 'basicItem') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ItemApi.deleteItem(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 ItemApi.exportItem(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,341 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ItemRules = reactive({ |
||||
|
name: [ |
||||
|
{ required: true, message: '请输入备件名称', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
uom: [ |
||||
|
{ required: true, message: '请选择备件单位', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
classification: [{ required: true, message: '请选择备件分类', trigger: 'blur' }] |
||||
|
}) |
||||
|
|
||||
|
export const Item = useCrudSchemas( |
||||
|
reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '备件编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备件名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
table: { |
||||
|
width: 110 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '规格', |
||||
|
field: 'specifications', |
||||
|
sort: 'custom' |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否常储', |
||||
|
field: 'isConstant', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 110 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
inactiveValue: 'FALSE', |
||||
|
disabled: true |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TRUE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '科目', |
||||
|
field: 'subject', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.SUBJECT, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '科目代码', |
||||
|
field: 'subjectCode', |
||||
|
sort: 'custom', |
||||
|
isTable: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '单位', |
||||
|
field: 'uom', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类别', |
||||
|
field: 'category', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_CATEGORY, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备件分类', |
||||
|
field: 'classification', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.PART_CLASS, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '区域', |
||||
|
field: 'region', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.REGION, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '单价',
|
||||
|
// field: 'singlePrice',
|
||||
|
// sort: 'custom',
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '重采购点', |
||||
|
field: 'reprocurement', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 110 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '安全库存', |
||||
|
field: 'safetyStock', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 110 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '成本中心', |
||||
|
field: 'cost', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 110 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '采购员', |
||||
|
field: 'purchaser', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 100 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '财务', |
||||
|
field: 'financer', |
||||
|
sort: 'custom' |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否以旧换新', |
||||
|
field: 'isRadeIn', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 140 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
inactiveValue: 'FALSE', |
||||
|
disabled: true |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TRUE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否框架协议', |
||||
|
field: 'isFramework', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 140 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
inactiveValue: 'FALSE', |
||||
|
disabled: true |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TRUE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '是否可用',
|
||||
|
// field: 'available',
|
||||
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
||||
|
// dictClass: 'string',
|
||||
|
// isSearch: false,
|
||||
|
// isTable: true,
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// tableForm: {
|
||||
|
// type: 'Select',
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// disabled: true
|
||||
|
// },
|
||||
|
// form: {
|
||||
|
// component: 'Switch',
|
||||
|
// value: 'TRUE',
|
||||
|
// componentProps: {
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// activeValue: 'TRUE'
|
||||
|
// }
|
||||
|
// }
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 170 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'describes', |
||||
|
sort: 'custom' |
||||
|
}, |
||||
|
{ |
||||
|
label: '图片', |
||||
|
field: 'upload', |
||||
|
isTable: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '文件', |
||||
|
field: 'filePathListView', |
||||
|
sort: 'custom', |
||||
|
isTable: false, |
||||
|
table: {}, |
||||
|
form: { |
||||
|
component: 'UploadFile', |
||||
|
componentProps: {} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '文件', |
||||
|
field: 'filePathList', |
||||
|
sort: 'custom', |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
table: {}, |
||||
|
form: { |
||||
|
component: 'UploadFile', |
||||
|
componentProps: {} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
]) |
||||
|
) |
||||
|
|
||||
|
export const ItemSearchTable = useCrudSchemas( |
||||
|
reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '备件编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
fixed: 'left' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备件名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
table: {} |
||||
|
}, |
||||
|
{ |
||||
|
label: '数量', |
||||
|
field: 'qty', |
||||
|
sort: 'custom' |
||||
|
} |
||||
|
]) |
||||
|
) |
@ -0,0 +1,362 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="ItemApplyMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" |
||||
|
:allSchemas="ItemApplyMain.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 }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm ref="formRef" @success="getList" :rules="ItemApplyMainRules" :formAllSchemas="ItemApplyMain.allSchemas" |
||||
|
:tableAllSchemas="ItemApplyDetail.allSchemas" :tableFormRules="ItemApplyDetailRules" :tableData="tableData" |
||||
|
:apiUpdate="ItemApplyMainApi.updateItemApplyMain" :apiCreate="ItemApplyMainApi.createItemApplyMain" |
||||
|
:isBusiness="true" @handleAddTable="handleAddTable" @handleDeleteTable="handleDeleteTable" |
||||
|
@searchTableSuccess="searchTableSuccess" @submitForm="submitForm" @formSelectChange='formSelectChange' /> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="false" :allSchemas="ItemApplyMain.allSchemas" |
||||
|
:detailAllSchemas="ItemApplyDetail.allSchemas" :detailAllSchemasRules="ItemApplyDetailRules" |
||||
|
:apiCreate="ItemApplyDetailApi.createItemApplyDetail" :apiUpdate="ItemApplyDetailApi.updateItemApplyDetail" |
||||
|
:apiPage="ItemApplyDetailApi.getItemApplyDetailPage" :apiDelete="ItemApplyDetailApi.deleteItemApplyDetail" |
||||
|
@searchTableSuccessDetail="searchTableSuccessDetail" @detailSubmitForm='detailSubmitForm' |
||||
|
:isShowAddBtn="isShowAddBtn" :detailButtonIsShow="detailButtonIsShow" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/purchase-main/import" :importTemplateData="importTemplateData" |
||||
|
@success="importSuccess" :isShowOut="true" :updateIsDisable="true" :coverIsDisable="true" :mode="2" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ItemApplyMain, ItemApplyMainRules, ItemApplyDetail, ItemApplyDetailRules } from './itemApplyMain.data' |
||||
|
import * as ItemApplyMainApi from '@/api/eam/item/itemApplyMain' |
||||
|
import * as ItemApplyDetailApi from '@/api/eam/item/itemApplyDetail' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
|
||||
|
// 采购订单 |
||||
|
defineOptions({ name: 'ItemApplyMain' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
const isShowAddBtn = ref(true) |
||||
|
const detailButtonIsShow = ref(false) |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(ItemApplyMain.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
|
nextTick(async () => { |
||||
|
if (type == 'tableForm') { |
||||
|
// 明细查询页赋值 |
||||
|
if (formField == 'itemNumber') { |
||||
|
let subList = tableData.value |
||||
|
let flag = false; |
||||
|
if (subList.length > 0) { |
||||
|
subList.forEach((item) => { |
||||
|
if (item.itemNumber == val[0]['itemNumber'] &&item.isInAccount == val[0]['isInAccount'] |
||||
|
) { |
||||
|
flag = true; |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
if (flag) { |
||||
|
message.warning("物料编号已经存在"); |
||||
|
return; |
||||
|
} |
||||
|
row[formField] = val[0][searchField] |
||||
|
row['itemNumber'] = val[0]['itemNumber'] |
||||
|
row['isInAccount'] = val[0]['isInAccount'] |
||||
|
row['currentQty'] = val[0]['qty'] |
||||
|
row['available'] = val[0]['available'] |
||||
|
} |
||||
|
if (formField == 'deviceNumber') { |
||||
|
row['deviceNumber'] = val[0]['number'] |
||||
|
} |
||||
|
} else { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
// 查询页面返回——详情 |
||||
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
||||
|
nextTick(async () => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
if (formField == 'itemNumber') { |
||||
|
setV['itemNumber'] = val[0]['itemNumber'] |
||||
|
setV['isInAccount'] = val[0]['isInAccount'] |
||||
|
setV['currentQty'] = val[0]['qty'] |
||||
|
setV['available'] = val[0]['available'] |
||||
|
} else if (formField == 'deviceNumber') { |
||||
|
setV['deviceNumber'] = val[0]['number'] |
||||
|
} |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
const formSelectChange = (field, val, row) => { |
||||
|
if (field == 'type') { |
||||
|
row['deviceNumber'] = "" |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 子表新增的时候选择表格之后需要会显得字段 |
||||
|
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom'] |
||||
|
const Echo = [] |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ItemApplyMainApi.getItemApplyMainPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'item:itemApplyMain:create'}), // 新增 |
||||
|
// defaultButtons.defaultImportBtn(null), // 导入 |
||||
|
// defaultButtons.defaultExportBtn(null), // 导出 |
||||
|
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') { // 筛选 |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 根据状态返回该按钮是否显示 |
||||
|
const isShowMainButton = (row, val) => { |
||||
|
if (val.indexOf(row.status) > -1) { |
||||
|
return false |
||||
|
} else { |
||||
|
return true |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row) => { |
||||
|
return [ |
||||
|
defaultButtons.backoutBtn({ hide: isShowMainButton(row, ['0']) ,hasPermi:'item:itemApplyMain:backout'}), // 撤回 |
||||
|
// defaultButtons.mainListEditBtn(null), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn(null), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} |
||||
|
else if (val == 'backout') { // 提交审批 |
||||
|
backout(row.id) |
||||
|
} |
||||
|
else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 撤销按钮操作 */ |
||||
|
const backout = async (id : number) => { |
||||
|
try { |
||||
|
// 撤销的二次确认 |
||||
|
await message.confirm('是否撤销所选中数据?') |
||||
|
// 发起撤销 |
||||
|
await ItemApplyMainApi.backoutItemApplyMain(id) |
||||
|
message.success(t('撤销成功!')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch { } |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const formRef = ref() |
||||
|
const openForm = async (type : string, row ?: number) => { |
||||
|
tableData.value = [] // 重置明细数据 |
||||
|
formRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row : any, titleName : any, titleValue : any) => { |
||||
|
if (row.status != '0') { |
||||
|
isShowAddBtn.value = false |
||||
|
detailButtonIsShow.value = true |
||||
|
} else { |
||||
|
isShowAddBtn.value = true |
||||
|
detailButtonIsShow.value = false |
||||
|
} |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicItemApplyMain') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id : number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ItemApplyMainApi.deleteItemApplyMain(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 ItemApplyMainApi.exportItemApplyMain(tableObject.params) |
||||
|
download.excel(data, '备件申领记录主.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* tableForm方法 |
||||
|
*/ |
||||
|
const tableFormKeys = {} |
||||
|
ItemApplyDetail.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) |
||||
|
} |
||||
|
|
||||
|
// 主子数据 提交 |
||||
|
const submitForm = async (formType, data) => { |
||||
|
data.subList = tableData.value // 拼接子表数据参数 |
||||
|
try { |
||||
|
for (let item of tableData.value) { |
||||
|
if (item.qty > item.currentQty) { |
||||
|
message.error('要货计划数量不得大于订单数量-已计划数量') |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
if (formType === 'create') { |
||||
|
await ItemApplyMainApi.createItemApplyMain(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ItemApplyMainApi.updateItemApplyMain(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
formRef.value.dialogVisible = false |
||||
|
// 刷新当前列表 |
||||
|
getList() |
||||
|
} finally { |
||||
|
formRef.value.formLoading = 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() // 刷新当前列表 |
||||
|
} |
||||
|
const detailSubmitForm = async (formType, data, formRef, tableList) => { |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
await ItemApplyDetailApi.createItemApplyDetail(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
formRef.dialogVisible = false |
||||
|
await detailRef.value.getList() |
||||
|
} else { |
||||
|
await ItemApplyDetailApi.updateItemApplyDetail(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
formRef.dialogVisible = false |
||||
|
await detailRef.value.getList() |
||||
|
} |
||||
|
} catch { |
||||
|
} finally { |
||||
|
formRef.formLoading = false |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await ItemApplyMainApi.importTemplate() |
||||
|
}) |
||||
|
</script> |
@ -0,0 +1,337 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
import { ItemAccounts } from '@/views/eam/item/itemAccounts/itemAccounts.data' |
||||
|
import * as ItemAccountsApi from '@/api/eam/item/itemAccounts' |
||||
|
import * as DeviceMoldItemsApi from '@/api/eam/basic/deviceMaintenance' |
||||
|
import { validateHanset, validateEmail } from '@/utils/validator' |
||||
|
const { t } = useI18n() // 国际化
|
||||
|
|
||||
|
/** |
||||
|
* @returns {Array} 备件申领主表 |
||||
|
*/ |
||||
|
export const ItemApplyMain = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '领用编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isSearch: true, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '申领人', |
||||
|
field: 'applyId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '审批人', |
||||
|
field: 'approveId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '出库人', |
||||
|
field: 'outId', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_APPLY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
disabled: false |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isDetail: false, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 200, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
//表单校验
|
||||
|
export const ItemApplyMainRules = reactive({ |
||||
|
name: [ |
||||
|
{ required: true, message: '请填写描述', trigger: 'change' } |
||||
|
], |
||||
|
remark: [ |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
available: [ |
||||
|
{ required: true, message: '请选择是否可用', trigger: 'change' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
|
||||
|
export const DeviceMOLD = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '规格型号', |
||||
|
field: 'specification', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
|
||||
|
])) |
||||
|
|
||||
|
/** |
||||
|
* @returns {Array} 备件申请子表 |
||||
|
*/ |
||||
|
export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '备件编号', |
||||
|
field: 'itemNumber', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
tableForm: { |
||||
|
isInpuFocusShow: true, |
||||
|
searchListPlaceholder: '请选择备件编号', |
||||
|
searchField: 'number', |
||||
|
searchTitle: '备件信息', |
||||
|
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: 'TRUE', |
||||
|
isMainValue: false |
||||
|
}, |
||||
|
] |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, |
||||
|
searchListPlaceholder: '请选择备件编号', |
||||
|
searchField: 'number', |
||||
|
searchTitle: '备件信息', |
||||
|
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: 'TRUE', |
||||
|
isMainValue: false |
||||
|
},] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.DEVICE_MOLD_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
disabled: false |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备/模具编号', |
||||
|
field: 'deviceNumber', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
tableForm: { |
||||
|
isInpuFocusShow: true, |
||||
|
searchListPlaceholder: '请选择单号', |
||||
|
searchField: 'number', |
||||
|
searchTitle: '单号信息', |
||||
|
searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: "TRUE", |
||||
|
isMainValue: false |
||||
|
}, { |
||||
|
key: 'type', |
||||
|
value: "type", |
||||
|
isMainValue: true |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, |
||||
|
searchListPlaceholder: '请选择单号', |
||||
|
searchField: 'number', |
||||
|
searchTitle: '单号信息', |
||||
|
searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: "TRUE", |
||||
|
isMainValue: false |
||||
|
}, { |
||||
|
key: 'type', |
||||
|
value: "type", |
||||
|
isMainValue: true |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '申领数量', |
||||
|
field: 'qty', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
componentProps: { |
||||
|
min: 0, |
||||
|
precision: 2 |
||||
|
} |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'InputNumber', |
||||
|
min: 0, |
||||
|
precision: 2 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '库存数量', |
||||
|
field: 'currentQty', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
min: 0, |
||||
|
precision: 2 |
||||
|
} |
||||
|
}, |
||||
|
tableForm: { |
||||
|
disabled: true, |
||||
|
type: 'InputNumber', |
||||
|
min: 0, |
||||
|
precision: 2 |
||||
|
} |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '是否账内库',
|
||||
|
// field: 'isInAccount',
|
||||
|
// sort: 'custom',
|
||||
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
||||
|
// dictClass: 'string',
|
||||
|
// isSearch: true,
|
||||
|
// isTable: true,
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// tableForm: {
|
||||
|
// type: 'Select',
|
||||
|
// disabled: true
|
||||
|
// },
|
||||
|
// form: {
|
||||
|
// componentProps: {
|
||||
|
// disabled: true,
|
||||
|
// }
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
disabled: true |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isDetail: false, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
}, |
||||
|
isTableForm: false, |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
//表单校验
|
||||
|
export const ItemApplyDetailRules = reactive({ |
||||
|
itemNumber: [ |
||||
|
{ required: true, message: '请选择备件编号', trigger: 'change' } |
||||
|
], |
||||
|
type: [ |
||||
|
{ required: true, message: '请选择类型', trigger: 'change' } |
||||
|
], |
||||
|
deviceNumber: [ |
||||
|
{ required: true, message: '请选择设备模具编号', trigger: 'change' } |
||||
|
], |
||||
|
qty: [ |
||||
|
{ required: true, message: '请输入申领数量', trigger: 'change' } |
||||
|
], |
||||
|
available: [ |
||||
|
{ required: true, message: '请选择是否可用', trigger: 'change' } |
||||
|
], |
||||
|
|
||||
|
}) |
@ -0,0 +1,268 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search |
||||
|
:schema="Location.allSchemas.searchSchema" |
||||
|
@search="setSearchParams" |
||||
|
@reset="setSearchParams" |
||||
|
/> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="Location.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="LocationRules" |
||||
|
:formAllSchemas="Location.allSchemas" |
||||
|
:apiUpdate="LocationApi.updateLocation" |
||||
|
:apiCreate="LocationApi.createLocation" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="Location.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm |
||||
|
ref="importFormRef" |
||||
|
url="/eam/location/import" |
||||
|
:importTemplateData="importTemplateData" |
||||
|
@success="importSuccess" |
||||
|
/> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { Location, LocationRules } from './location.data' |
||||
|
import * as LocationApi from '@/api/eam/location' |
||||
|
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' |
||||
|
import { getAccessToken } from '@/utils/auth' |
||||
|
|
||||
|
defineOptions({ name: 'Location' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(Location.allSchemas.tableColumns) |
||||
|
const importFormRef = ref() |
||||
|
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL |
||||
|
const src = ref(BASE_URL + '/jmreport/view/950537917716037632?token=' + getAccessToken()) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
||||
|
nextTick(() => { |
||||
|
if (formField == 'areaNumber') { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
setV['areaNumber'] = val[0]['number'] |
||||
|
setV['type'] = val[0]['type'] |
||||
|
formRef.setValues(setV) |
||||
|
} else { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: LocationApi.getLocationPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({ hasPermi: 'basic:location:create' }), // 新增 |
||||
|
defaultButtons.defaultExportBtn({ hasPermi: 'basic:location:update' }), // 导出 |
||||
|
// defaultButtons.selectQrCodeBatchBtn(null), //批量生成二维码 |
||||
|
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 == 'qrCodeBatch') { |
||||
|
// 批量生成二维码 |
||||
|
qrCodeBatch(val, item) |
||||
|
} else if (val == 'refresh') { |
||||
|
// 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { |
||||
|
// 筛选 |
||||
|
} else { |
||||
|
// 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
const qrCodeBatch = async (val, item) => { |
||||
|
const qrCodeList = tableObject.tableList.map((item) => `'${item?.number}'`).join(', ') |
||||
|
window.open(src.value + '&number=' + qrCodeList) |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({ hasPermi: 'basic:location:update' }), // 编辑 |
||||
|
// defaultButtons.selectQrCodeBtn(null), //二维码 |
||||
|
defaultButtons.mainListDeleteBtn({ hasPermi: 'basic:location:delete' }) // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { |
||||
|
// 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'qrCode') { |
||||
|
window.open(src.value + "&number='" + row.number + "'") |
||||
|
} 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 = Location.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 |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
await LocationApi.createLocation(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await LocationApi.updateLocation(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, 'basicLocation') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await LocationApi.deleteLocation(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 LocationApi.exportLocation(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,152 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
import * as LocationAreaApi from '@/api/eam/locationArea' |
||||
|
import { LocationArea } from '../locationArea/locationArea.data' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const LocationRules = reactive({ |
||||
|
number: [ |
||||
|
{ required: true, message: '请输入库位编号', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
name: [ |
||||
|
{ required: true, message: '请输入库位名称', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
areaNumber: [{ required: true, message: '请选择库区编号', trigger: 'blur' }] |
||||
|
}) |
||||
|
|
||||
|
export const Location = useCrudSchemas( |
||||
|
reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '库位编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: true, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '库位名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '库区编号', |
||||
|
field: 'areaNumber', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择库区编号', // 输入框占位文本
|
||||
|
searchField: 'number', // 查询弹窗赋值字段
|
||||
|
searchTitle: '库区信息', // 查询弹窗标题
|
||||
|
searchAllSchemas: LocationArea.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: LocationAreaApi.getLocationAreaPage, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [ |
||||
|
{ |
||||
|
key: 'available', |
||||
|
value: 'TRUE', |
||||
|
isMainValue: false |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
dictType: DICT_TYPE.LOCATION_AREA_TYPE, |
||||
|
dictClass: 'string', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
form: { |
||||
|
component: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否为账内', |
||||
|
field: 'isInAccount', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isSearch: false, |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select', |
||||
|
inactiveValue: 'FALSE', |
||||
|
disabled: true |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TRUE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '是否可用',
|
||||
|
// field: 'available',
|
||||
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
||||
|
// dictClass: 'string',
|
||||
|
// isSearch: false,
|
||||
|
// isTable: true,
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// tableForm: {
|
||||
|
// type: 'Select',
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// disabled: true
|
||||
|
// },
|
||||
|
// form: {
|
||||
|
// component: 'Switch',
|
||||
|
// value: 'TRUE',
|
||||
|
// componentProps: {
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// activeValue: 'TRUE'
|
||||
|
// }
|
||||
|
// }
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 170 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'description', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
]) |
||||
|
) |
@ -0,0 +1,219 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="LocationArea.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" :allSchemas="LocationArea.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="LocationAreaRules" |
||||
|
:formAllSchemas="LocationArea.allSchemas" :searchTableParams="searchTableParams" |
||||
|
:apiUpdate="LocationAreaApi.updateLocationArea" :apiCreate="LocationAreaApi.createLocationArea" |
||||
|
@searchTableSuccess="searchTableSuccess" :isBusiness="false" /> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="LocationArea.allSchemas" /> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { LocationArea, LocationAreaRules } from './locationArea.data' |
||||
|
import * as LocationAreaApi from '@/api/eam/locationArea' |
||||
|
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: 'LocationArea' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(LocationArea.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 查询列表页面参数设置 |
||||
|
const searchTableParams = ref([ |
||||
|
//{ |
||||
|
// formField: 'productItemCode', |
||||
|
// searchTableTitle: '物料信息', |
||||
|
// searchTableAllSchemas: Itembasic.allSchemas, |
||||
|
// searchTablePage: ItembasicApi.getItembasicPage |
||||
|
//} |
||||
|
]) |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: LocationAreaApi.getLocationAreaPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'basic:locationArea:create'}), // 新增 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'basic:locationArea: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 = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'basic:locationArea:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'basic:locationArea:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type : string, row ?: any) => { |
||||
|
console.log('33333', row ) |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType, data) => { |
||||
|
var isHave = LocationArea.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; |
||||
|
try { |
||||
|
if (formType === 'create') { |
||||
|
await LocationAreaApi.createLocationArea(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await LocationAreaApi.updateLocationArea(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} finally { |
||||
|
basicFormRef.value.formLoading = false |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row : any, titleName : any, titleValue : any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicLocationArea') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id : number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await LocationAreaApi.deleteLocationArea(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 LocationAreaApi.exportLocationArea(tableObject.params) |
||||
|
download.excel(data, '库区.xls') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
}) |
||||
|
</script> |
@ -0,0 +1,100 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const LocationAreaRules = reactive({ |
||||
|
number: [ |
||||
|
{ required: true, message: '请输入库区编号', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
name: [ |
||||
|
{ required: true, message: '请输入库区名称', trigger: 'blur' }, |
||||
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
export const LocationArea = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '库区编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: true, |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '库区名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
dictType: DICT_TYPE.LOCATION_AREA_TYPE, |
||||
|
dictClass: 'string', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
form: { |
||||
|
component: 'Select' |
||||
|
}, |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '是否可用',
|
||||
|
// field: 'available',
|
||||
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
||||
|
// dictClass: 'string',
|
||||
|
// isSearch: false,
|
||||
|
// isTable: true,
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// tableForm: {
|
||||
|
// type: 'Select',
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// disabled: true
|
||||
|
// },
|
||||
|
// form: {
|
||||
|
// component: 'Switch',
|
||||
|
// value: 'TRUE',
|
||||
|
// componentProps: {
|
||||
|
// inactiveValue: 'FALSE',
|
||||
|
// activeValue: 'TRUE'
|
||||
|
// }
|
||||
|
// }
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 170 |
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'description', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -1,365 +0,0 @@ |
|||||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
||||
|
|
||||
import * as ItemAccountsApi from '@/api/eam/itemAccounts' |
|
||||
import { ItemAccounts } from '@/views/eam/itemAccounts/itemAccounts.data' |
|
||||
|
|
||||
import { EquipmentAccounts } from '@/views/eam/equipmentAccounts/equipmentAccounts.data' |
|
||||
import * as EquipmentItemApi from '@/api/eam/equipmentAccounts' |
|
||||
|
|
||||
import { dateFormatter } from '@/utils/formatTime' |
|
||||
|
|
||||
export const SparePartsApplyMain = useCrudSchemas( |
|
||||
reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '申请编号', |
|
||||
field: 'number', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '出库类型', |
|
||||
field: 'outType', |
|
||||
dictType: DICT_TYPE.EAM_OUT_TYPE, |
|
||||
dictClass: 'string', |
|
||||
isTable: true, |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
tableForm: { |
|
||||
type: 'Select' |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '关联工单', |
|
||||
field: 'workNumber', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
// labelMessage: '信息提示说明!!!',
|
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchTitle: '设备信息', // 查询弹窗标题
|
|
||||
searchListPlaceholder: '请选择 设备编号', // 输入框占位文本
|
|
||||
searchAllSchemas: EquipmentAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchPage: EquipmentItemApi.getEquipmentAccountsPage, // 查询弹窗所需分页方法
|
|
||||
multiple: true, |
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'status', |
|
||||
value: 'NORMAL', |
|
||||
action: '==', |
|
||||
isSearch: true, |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
searchAllSchemas: EquipmentAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: EquipmentItemApi.getEquipmentAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'status', |
|
||||
value: 'NORMAL', |
|
||||
action: '==', |
|
||||
isSearch: true, |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
|
|
||||
{ |
|
||||
label: '出库主题', |
|
||||
field: 'theme', |
|
||||
sort: 'custom', |
|
||||
isSearch: true |
|
||||
}, |
|
||||
{ |
|
||||
label: '描述', |
|
||||
field: 'description', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申领备件总价', |
|
||||
field: 'sumVal', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '流程状态', |
|
||||
field: 'status', |
|
||||
sort: 'custom', |
|
||||
dictType: DICT_TYPE.SPAREPARTS_APPLY_STATUS_ENUM, |
|
||||
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
|
||||
isSearch: true, |
|
||||
isTable: true, |
|
||||
isForm: false, |
|
||||
form: { |
|
||||
component: 'Select' |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '申请人', |
|
||||
field: 'applyer', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核人', |
|
||||
field: 'approver', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
form: { |
|
||||
component: 'InputNumber', |
|
||||
value: 0 |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核时间', |
|
||||
field: 'approveTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
form: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
type: 'datetime', |
|
||||
valueFormat: 'x' |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '自动审核', |
|
||||
field: 'autoExamine', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '自动通过', |
|
||||
field: 'autoAgree', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '直接生成记录', |
|
||||
field: 'directCreateRecord', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '创建时间', |
|
||||
field: 'createTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '操作11', |
|
||||
field: 'action', |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 180, |
|
||||
fixed: 'right' |
|
||||
} |
|
||||
} |
|
||||
]) |
|
||||
) |
|
||||
|
|
||||
//表单校验
|
|
||||
export const SparePartsApplyMainRules = reactive({ |
|
||||
outType: [{ required: true, message: '请输入出库类型', trigger: 'blur' }], |
|
||||
theme: [{ required: true, message: '请输入出库主题', trigger: 'blur' }] |
|
||||
}) |
|
||||
/** |
|
||||
* @returns {Array} 备件申请子表 |
|
||||
*/ |
|
||||
export const SparePartsApplyDetail = useCrudSchemas( |
|
||||
reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '库位编号', |
|
||||
field: 'locationCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchListPlaceholder: '请选择库位编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '库位信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'itemNumber', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库区编号', |
|
||||
field: 'areaCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '备件编号', |
|
||||
field: 'sparePartsCode', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库存数量', |
|
||||
field: 'currentQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
isDetail: false, |
|
||||
isTable: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申领数量', |
|
||||
field: 'applyQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '操作', |
|
||||
field: 'action', |
|
||||
isDetail: false, |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 150, |
|
||||
fixed: 'right' |
|
||||
}, |
|
||||
isTableForm: false |
|
||||
} |
|
||||
]) |
|
||||
) |
|
||||
|
|
||||
//表单校验
|
|
||||
export const SparePartsApplyDetailRules = reactive({ |
|
||||
applyQty: [{ required: true, message: '请输入标包数量', trigger: 'blur' }] |
|
||||
}) |
|
||||
|
|
||||
// 审核完成字段
|
|
||||
export const SparePartsApplyExamine = useCrudSchemas( |
|
||||
reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
component: 'Input', |
|
||||
componentProps: { |
|
||||
type: 'textarea' |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
]) |
|
||||
) |
|
@ -1,511 +0,0 @@ |
|||||
<template> |
|
||||
<ContentWrap> |
|
||||
<!-- 搜索工作栏 --> |
|
||||
<Search |
|
||||
:schema="SparePartsApplyMain.allSchemas.searchSchema" |
|
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 列表头部 --> |
|
||||
<TableHead |
|
||||
:HeadButttondata="HeadButttondata" |
|
||||
@button-base-click="buttonBaseClick" |
|
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="SparePartsApplyMain.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 }"> |
|
||||
<ButtonBase |
|
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
|
||||
</Table> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 表单弹窗:添加/修改 --> |
|
||||
<BasicForm |
|
||||
ref="formRef" |
|
||||
@success="getList" |
|
||||
:rules="SparePartsApplyMainRules" |
|
||||
:formAllSchemas="SparePartsApplyMain.allSchemas" |
|
||||
:tableAllSchemas="SparePartsApplyDetail.allSchemas" |
|
||||
:tableFormRules="SparePartsApplyDetailRules" |
|
||||
:tableData="tableData" |
|
||||
:apiUpdate="SparePartsApplyMainApi.updateSparePartsApplyMain" |
|
||||
:apiCreate="SparePartsApplyMainApi.createSparePartsApplyMain" |
|
||||
:isBusiness="true" |
|
||||
@handleAddTable="handleAddTable" |
|
||||
@handleDeleteTable="handleDeleteTable" |
|
||||
@searchTableSuccess="searchTableSuccess" |
|
||||
@submitForm="submitForm" |
|
||||
@onChange="onChange" |
|
||||
/> |
|
||||
|
|
||||
<!-- 详情 --> |
|
||||
<Detail |
|
||||
ref="detailRef" |
|
||||
:isBasic="false" |
|
||||
:allSchemas="SparePartsApplyMain.allSchemas" |
|
||||
:detailAllSchemas="SparePartsApplyDetail.allSchemas" |
|
||||
:detailAllSchemasRules="SparePartsApplyDetailRules" |
|
||||
:apiCreate="SparePartsApplyDetailApi.createSparePartsApplyDetail" |
|
||||
:apiUpdate="SparePartsApplyDetailApi.updateSparePartsApplyDetail" |
|
||||
:apiPage="SparePartsApplyDetailApi.getSparePartsApplyDetailPage" |
|
||||
:apiDelete="SparePartsApplyDetailApi.deleteSparePartsApplyDetail" |
|
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
||||
:isShowAddBtn="false" |
|
||||
:detailButtonIsShow="true" |
|
||||
/> |
|
||||
|
|
||||
<!-- 审核页面 --> |
|
||||
<!-- <AudiForm ref="audiFormRef" @success="handleApprove"/> --> |
|
||||
<BasicForm |
|
||||
ref="formRefApproved" |
|
||||
:rules="SparePartsApplyMainRules" |
|
||||
:formAllSchemas="SparePartsApplyExamine.allSchemas" |
|
||||
@submitForm="approveSparePartsApplyMain" |
|
||||
:isCol="false" |
|
||||
/> |
|
||||
|
|
||||
<!-- 导入 --> |
|
||||
<ImportForm |
|
||||
ref="importFormRef" |
|
||||
url="/eam/sparePartsApplyDetail/import" |
|
||||
:importTemplateData="importTemplateData" |
|
||||
@success="importSuccess" |
|
||||
/> |
|
||||
</template> |
|
||||
|
|
||||
<script setup lang="ts"> |
|
||||
import download from '@/utils/download' |
|
||||
import { |
|
||||
SparePartsApplyMain, |
|
||||
SparePartsApplyMainRules, |
|
||||
SparePartsApplyDetail, |
|
||||
SparePartsApplyDetailRules, |
|
||||
SparePartsApplyExamine |
|
||||
} from './SparePartsApply.data' |
|
||||
import * as SparePartsApplyMainApi from '@/api/eam/sparePartsApplyMain' |
|
||||
import * as SparePartsApplyDetailApi from '@/api/eam/sparePartsApplyDetail' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
||||
|
|
||||
// 采购订单 |
|
||||
defineOptions({ name: 'SparePartsApply' }) |
|
||||
|
|
||||
const message = useMessage() // 消息弹窗 |
|
||||
const { t } = useI18n() // 国际化 |
|
||||
const route = useRoute() // 路由信息 |
|
||||
const routeName = ref() |
|
||||
routeName.value = route.name |
|
||||
const tableColumns = ref(SparePartsApplyMain.allSchemas.tableColumns) |
|
||||
const formRefApproved = ref() |
|
||||
// 字段设置 更新主列表字段 |
|
||||
const updataTableColumns = (val) => { |
|
||||
tableColumns.value = val |
|
||||
} |
|
||||
|
|
||||
// 查询页面返回 |
|
||||
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
||||
nextTick(() => { |
|
||||
const setV = {} |
|
||||
setV[formField] = val[0][searchField] |
|
||||
console.log(11, val[0]) |
|
||||
if (type == 'tableForm') { |
|
||||
if (formField == 'locationCode') { |
|
||||
row['locationCode'] = val[0].locationNumber |
|
||||
row['areaCode'] = val[0].areaNumber |
|
||||
row['sparePartsCode'] = val[0].itemNumber |
|
||||
row['currentQty'] = val[0].qty |
|
||||
row['isRadeIn'] = val[0].isRadeIn |
|
||||
} |
|
||||
} else { |
|
||||
if (formField == 'locationCode') { |
|
||||
setV['locationCode'] = val[0].locationNumber |
|
||||
setV['areaCode'] = val[0].areaNumber |
|
||||
setV['sparePartsCode'] = val[0].itemNumber |
|
||||
setV['currentQty'] = val[0].qty |
|
||||
setV['isRadeIn'] = val[0].isRadeIn |
|
||||
} |
|
||||
} |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
// 查询页面返回——详情 |
|
||||
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
||||
nextTick(async () => { |
|
||||
const setV = {} |
|
||||
// if(formField == 'itemCode'){ |
|
||||
// await ItembasicApi.getItembasicPage({ |
|
||||
// code: setV['itemCode'] |
|
||||
// }).then(res => { |
|
||||
// setV['uom'] = res.list[0].uom |
|
||||
// setV[formField] = val[0][searchField] |
|
||||
// }) |
|
||||
// } |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
|
||||
const Echo = [] |
|
||||
const { tableObject, tableMethods } = useTable({ |
|
||||
getListApi: SparePartsApplyMainApi.getSparePartsApplyMainPage // 分页接口 |
|
||||
}) |
|
||||
|
|
||||
// 获得表格的各种操作 |
|
||||
const { getList, setSearchParams } = tableMethods |
|
||||
|
|
||||
// 列表头部按钮 |
|
||||
const HeadButttondata = [ |
|
||||
defaultButtons.defaultAddBtn(null), // 新增 |
|
||||
// defaultButtons.defaultImportBtn(null), // 导入 |
|
||||
// defaultButtons.defaultExportBtn(null), // 导出 |
|
||||
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 isShowStatusButton = (row, val) => { |
|
||||
if (val.indexOf(row.status) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮 |
|
||||
const butttondata = (row) => { |
|
||||
return [ |
|
||||
defaultButtons.mainListEditBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:update' |
|
||||
}), // 编辑 |
|
||||
defaultButtons.mainListDeleteBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:delete' |
|
||||
}), // 删除 |
|
||||
defaultButtons.mainListAuditingBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:examine' |
|
||||
}), //审核 |
|
||||
defaultButtons.mainListRevokeBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:cancel' |
|
||||
}), // 撤回 |
|
||||
defaultButtons.mainListTurnDownBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:rejecte' |
|
||||
}), //驳回 |
|
||||
defaultButtons.mainListApproveBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:approve' |
|
||||
}), //审批通过 |
|
||||
defaultButtons.mainListFinishBtn({ |
|
||||
hide: isShowStatusButton(row, ['4']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:finish' |
|
||||
}) //完成 |
|
||||
] |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮事件 |
|
||||
const buttonTableClick = async (val, row) => { |
|
||||
if (val == 'edit') { |
|
||||
// 编辑 |
|
||||
openForm('update', row) |
|
||||
} else if (val == 'auditing') { |
|
||||
//审核 |
|
||||
handleSubmitExamine(row.id) |
|
||||
} else if (val == 'mainTurnDown') { |
|
||||
//驳回 |
|
||||
handleRejecte(row.id) |
|
||||
} else if (val == 'mainApprove') { |
|
||||
//审核通过 |
|
||||
formRefApproved.value.open('update', row, { masterId: row.id }, 'auditing') |
|
||||
} else if (val == 'revoke') { |
|
||||
// 撤回 |
|
||||
handleCancel(row.id) |
|
||||
} else if (val == 'finish') { |
|
||||
// 完成 |
|
||||
handleFinish(row.id) |
|
||||
} else if (val == 'delete') { |
|
||||
// 删除 |
|
||||
handleDelete(row.id) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 添加/修改操作 */ |
|
||||
const formRef = ref() |
|
||||
const openForm = async (type: string, row?: number) => { |
|
||||
tableData.value = [] // 重置明细数据 |
|
||||
formRef.value.open(type, row) |
|
||||
} |
|
||||
|
|
||||
/** 详情操作 */ |
|
||||
const detailRef = ref() |
|
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicSparePartsApplyMain') |
|
||||
} |
|
||||
|
|
||||
/** 删除按钮操作 */ |
|
||||
const handleDelete = async (id: number) => { |
|
||||
try { |
|
||||
// 删除的二次确认 |
|
||||
await message.delConfirm() |
|
||||
// 发起删除 |
|
||||
await SparePartsApplyMainApi.deleteSparePartsApplyMain(id) |
|
||||
message.success(t('common.delSuccess')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 列表导出按钮操作 */ |
|
||||
const exportLoading = ref(false) // 导出的加载中 |
|
||||
const handleMainExport = async (id: number) => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsApplyMainApi.exportSparePartsApplyMain(id) |
|
||||
download.excel(data, '盘点工单.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 关闭按钮操作 */ |
|
||||
// const handleClose = async (id: number) => { |
|
||||
// try { |
|
||||
// // 关闭的二次确认 |
|
||||
// await message.confirm('是否关闭所选中数据?') |
|
||||
// // 发起关闭 |
|
||||
// await SparePartsApplyMainApi.closeSparePartsApplyMain(id) |
|
||||
// message.success(t('关闭成功!')) |
|
||||
// // 刷新列表 |
|
||||
// await getList() |
|
||||
// } catch {} |
|
||||
// } |
|
||||
|
|
||||
/** 导出按钮操作 */ |
|
||||
const handleExport = async () => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsApplyMainApi.exportSparePartsApplyMain(tableObject.params) |
|
||||
download.excel(data, '备件申领记录主.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* tableForm方法 |
|
||||
*/ |
|
||||
const tableFormKeys = {} |
|
||||
SparePartsApplyDetail.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) |
|
||||
} |
|
||||
|
|
||||
// 主子数据 提交 |
|
||||
const submitForm = async (formType, data) => { |
|
||||
data.subList = tableData.value // 拼接子表数据参数 |
|
||||
console.log(formRef.value) |
|
||||
formRef.value.formLoading = true |
|
||||
let isHave = data.subList.some((item) => item.applyQty > item.currentQty) |
|
||||
if (isHave) { |
|
||||
message.warning('申领数量不能大于库存数量') |
|
||||
return |
|
||||
} |
|
||||
try { |
|
||||
if (formType === 'create') { |
|
||||
await SparePartsApplyMainApi.createSparePartsApplyMain(data) |
|
||||
message.success(t('common.createSuccess')) |
|
||||
} else { |
|
||||
await SparePartsApplyMainApi.updateSparePartsApplyMain(data) |
|
||||
message.success(t('common.updateSuccess')) |
|
||||
} |
|
||||
formRef.value.dialogVisible = false |
|
||||
// 刷新当前列表 |
|
||||
getList() |
|
||||
} finally { |
|
||||
formRef.value.formLoading = 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() // 刷新当前列表 |
|
||||
} |
|
||||
|
|
||||
const onChange = (field, item) => { |
|
||||
if (field == 'outType') { |
|
||||
if (item == '3') { |
|
||||
SparePartsApplyMain.allSchemas.formSchema.forEach((item) => { |
|
||||
if (item.field == 'workNumber') { |
|
||||
item.componentProps.disabled = true |
|
||||
item.componentProps.isSearchList = false |
|
||||
} |
|
||||
}) |
|
||||
} else { |
|
||||
SparePartsApplyMain.allSchemas.formSchema.forEach((item) => { |
|
||||
if (item.field == 'workNumber') { |
|
||||
item.componentProps.disabled = true |
|
||||
item.componentProps.isSearchList = true |
|
||||
} |
|
||||
}) |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 审核 |
|
||||
const handleSubmitExamine = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否提交审核?')) |
|
||||
try { |
|
||||
await SparePartsApplyMainApi.submitSparePartsApplyMain(id) |
|
||||
message.success(t('ts.提交审批成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
/** 撤回按钮操作 */ |
|
||||
const handleCancel = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否撤回所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsApplyMainApi.cancelSparePartsApplyMain(id) |
|
||||
message.success(t('ts.撤回成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
//审核驳回按钮 |
|
||||
const handleRejecte = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否驳回所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsApplyMainApi.rejectSparePartsApplyMain(id) |
|
||||
message.success(t('ts.驳回成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
// 审核通过 |
|
||||
const approveSparePartsApplyMain = async (formType, data) => { |
|
||||
try { |
|
||||
await SparePartsApplyMainApi.approveSparePartsApplyMain(data) |
|
||||
message.success(t('ts.审核通过!')) |
|
||||
// 刷新列表 |
|
||||
formRefApproved.value.dialogVisible = false |
|
||||
await getList() |
|
||||
} finally { |
|
||||
formRefApproved.value.formLoading = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
//审核驳回按钮 |
|
||||
const handleFinish = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否完成所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsApplyMainApi.finishSparePartsApplyMain(id) |
|
||||
message.success(t('ts.完成成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 初始化 **/ |
|
||||
onMounted(async () => { |
|
||||
getList() |
|
||||
importTemplateData.templateUrl = await SparePartsApplyMainApi.importTemplate() |
|
||||
}) |
|
||||
</script> |
|
@ -1,137 +0,0 @@ |
|||||
<template> |
|
||||
<ContentWrap> |
|
||||
<!-- 搜索工作栏 --> |
|
||||
<Search |
|
||||
:schema="SparePartsInLocationRecordMain.allSchemas.searchSchema" |
|
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 列表头部 --> |
|
||||
<TableHead |
|
||||
:HeadButttondata="HeadButttondata" |
|
||||
@button-base-click="buttonBaseClick" |
|
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="SparePartsInLocationRecordMain.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 }"> |
|
||||
<ButtonBase |
|
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
|
||||
</Table> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 详情 --> |
|
||||
<Detail |
|
||||
ref="detailRef" |
|
||||
:isBasic="false" |
|
||||
:allSchemas="SparePartsInLocationRecordMain.allSchemas" |
|
||||
:detailAllSchemas="SparePartsInLocationRecordDetail.allSchemas" |
|
||||
:detailAllSchemasRules="SparePartsInLocationRecordDetailRules" |
|
||||
:apiPage="SparePartsInLocationRecordDetailApi.getSparePartsInLocationRecordDetailPage" |
|
||||
:isShowAddBtn="false" |
|
||||
:detailButtonIsShowAdd="false" |
|
||||
/> |
|
||||
</template> |
|
||||
|
|
||||
<script setup lang="ts"> |
|
||||
import download from '@/utils/download' |
|
||||
import { |
|
||||
SparePartsInLocationRecordMain, |
|
||||
SparePartsInLocationRecordDetail, |
|
||||
SparePartsInLocationRecordDetailRules |
|
||||
} from './sparePartsInLocationRecordMain.data' |
|
||||
import * as SparePartsInLocationRecordMainApi from '@/api/eam/sparePartsInLocationRecordMain' |
|
||||
import * as SparePartsInLocationRecordDetailApi from '@/api/eam/sparePartsInLocationRecordDetail' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
|
|
||||
// 采购订单 |
|
||||
defineOptions({ name: 'SparepartsinlocationRecord' }) |
|
||||
const message = useMessage() // 消息弹窗 |
|
||||
const { t } = useI18n() // 国际化 |
|
||||
const route = useRoute() // 路由信息 |
|
||||
const routeName = ref() |
|
||||
routeName.value = route.name |
|
||||
const tableColumns = ref(SparePartsInLocationRecordMain.allSchemas.tableColumns) |
|
||||
// const audiFormRef = ref() |
|
||||
// 字段设置 更新主列表字段 |
|
||||
const updataTableColumns = (val) => { |
|
||||
tableColumns.value = val |
|
||||
} |
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
|
||||
const Echo = [] |
|
||||
const { tableObject, tableMethods } = useTable({ |
|
||||
getListApi: SparePartsInLocationRecordMainApi.getSparePartsInLocationRecordMainPage // 分页接口 |
|
||||
}) |
|
||||
|
|
||||
// 获得表格的各种操作 |
|
||||
const { getList, setSearchParams } = tableMethods |
|
||||
|
|
||||
// 列表头部按钮 |
|
||||
const HeadButttondata = [ |
|
||||
// defaultButtons.defaultAddBtn({ hasPermi: 'eam:spare-parts-in-location-main:create' }), // 新增 |
|
||||
// defaultButtons.defaultImportBtn({ hasPermi: 'eam:spare-parts-in-location-main:import' }), // 导入 |
|
||||
// defaultButtons.defaultExportBtn({ hasPermi: 'eam:spare-parts-in-location-main:export' }), // 导出 |
|
||||
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
||||
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
||||
defaultButtons.defaultSetBtn(null) // 设置 |
|
||||
|
|
||||
] |
|
||||
|
|
||||
// 头部按钮事件 |
|
||||
const buttonBaseClick = (val, item) => { |
|
||||
if (val == 'refresh') { |
|
||||
// 刷新 |
|
||||
getList() |
|
||||
} else if (val == 'filtrate') { |
|
||||
// 筛选 |
|
||||
} else { |
|
||||
// 其他按钮 |
|
||||
console.log('其他按钮', item) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 详情操作 */ |
|
||||
const detailRef = ref() |
|
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicSparePartsApplyMain') |
|
||||
} |
|
||||
|
|
||||
// 筛选提交 |
|
||||
const searchFormClick = (searchData) => { |
|
||||
tableObject.params = { |
|
||||
isSearch: true, |
|
||||
filters: searchData.filters |
|
||||
} |
|
||||
getList() // 刷新当前列表 |
|
||||
} |
|
||||
/** 初始化 **/ |
|
||||
onMounted(async () => { |
|
||||
getList() |
|
||||
}) |
|
||||
</script> |
|
@ -1,258 +0,0 @@ |
|||||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
||||
import { dateFormatter } from '@/utils/formatTime' |
|
||||
import * as ItemAccountsApi from '@/api/eam/itemAccounts' |
|
||||
import { ItemAccounts } from '@/views/eam/itemAccounts/itemAccounts.data' |
|
||||
|
|
||||
|
|
||||
// 表单校验
|
|
||||
export const SparePartsInLocationRecordMainRules = reactive({ |
|
||||
number: [required], |
|
||||
theme: [required], |
|
||||
type: [required], |
|
||||
}) |
|
||||
// 备件入库主表
|
|
||||
export const SparePartsInLocationRecordMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: 'id', |
|
||||
field: 'id', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
isDetail:false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '编号', |
|
||||
field: 'number', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isForm: false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '入库主题', |
|
||||
field: 'theme', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
},{ |
|
||||
label: '入库类型', |
|
||||
field: 'type', |
|
||||
sort: 'custom', |
|
||||
dictType: DICT_TYPE.PUT_IN_TYPE, |
|
||||
dictClass: 'string', |
|
||||
|
|
||||
}, |
|
||||
{ |
|
||||
label: '流程状态', |
|
||||
field: 'status', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false, |
|
||||
|
|
||||
dictType: DICT_TYPE.SPAREPARTS_APPLY_STATUS_ENUM, |
|
||||
dictClass: 'string', |
|
||||
|
|
||||
}, |
|
||||
{ |
|
||||
label: '入库申请人', |
|
||||
field: 'applyer', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核人', |
|
||||
field: 'approver', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核时间', |
|
||||
field: 'approveTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isForm: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' |
|
||||
} |
|
||||
}, |
|
||||
detail: { |
|
||||
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
||||
}, |
|
||||
}, |
|
||||
{ |
|
||||
label: '入库时间', |
|
||||
field: 'createTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
isForm: false, |
|
||||
detail: { |
|
||||
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
||||
}, |
|
||||
}, |
|
||||
|
|
||||
|
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
}, |
|
||||
])) |
|
||||
// 备件入库子表
|
|
||||
export const SparePartsInLocationRecordDetailRules = reactive({ |
|
||||
number: [required], |
|
||||
masterId: [required], |
|
||||
locationCode: [required], |
|
||||
areaCode: [required], |
|
||||
sparePartsCode: [required], |
|
||||
applyQty: [required], |
|
||||
}) |
|
||||
|
|
||||
export const SparePartsInLocationRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '库位编号', |
|
||||
field: 'locationCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchListPlaceholder: '请选择库位编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '库位信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'itemNumber', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库区编号', |
|
||||
field: 'areaCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '备件编号', |
|
||||
field: 'sparePartsCode', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库存数量', |
|
||||
field: 'currentQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
}, |
|
||||
form:{ |
|
||||
componentProps:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
isDetail:false, |
|
||||
isTable:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申领数量', |
|
||||
field: 'applyQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
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, |
|
||||
isTableForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
}, |
|
||||
|
|
||||
])) |
|
||||
|
|
||||
|
|
@ -1,472 +0,0 @@ |
|||||
<template> |
|
||||
<ContentWrap> |
|
||||
<!-- 搜索工作栏 --> |
|
||||
<Search |
|
||||
:schema="SparePartsInLocationMain.allSchemas.searchSchema" |
|
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 列表头部 --> |
|
||||
<TableHead |
|
||||
:HeadButttondata="HeadButttondata" |
|
||||
@button-base-click="buttonBaseClick" |
|
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="SparePartsInLocationMain.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 }"> |
|
||||
<ButtonBase |
|
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
|
||||
</Table> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 表单弹窗:添加/修改 --> |
|
||||
<BasicForm |
|
||||
ref="formRef" |
|
||||
@success="getList" |
|
||||
:rules="SparePartsInLocationMainRules" |
|
||||
:formAllSchemas="SparePartsInLocationMain.allSchemas" |
|
||||
:tableAllSchemas="SparePartsInLocationDetail.allSchemas" |
|
||||
:tableFormRules="SparePartsInLocationDetailRules" |
|
||||
:tableData="tableData" |
|
||||
:apiUpdate="SparePartsInLocationMainApi.updateSparePartsApplyMain" |
|
||||
:apiCreate="SparePartsInLocationMainApi.createSparePartsApplyMain" |
|
||||
:isBusiness="true" |
|
||||
@handleAddTable="handleAddTable" |
|
||||
@handleDeleteTable="handleDeleteTable" |
|
||||
@searchTableSuccess="searchTableSuccess" |
|
||||
@submitForm="submitForm" |
|
||||
/> |
|
||||
|
|
||||
<!-- 详情 --> |
|
||||
<Detail |
|
||||
ref="detailRef" |
|
||||
:isBasic="false" |
|
||||
:allSchemas="SparePartsInLocationMain.allSchemas" |
|
||||
:detailAllSchemas="SparePartsInLocationDetail.allSchemas" |
|
||||
:detailAllSchemasRules="SparePartsInLocationDetailRules" |
|
||||
:apiCreate="SparePartsInLocationDetailApi.createSparePartsInLocationDetail" |
|
||||
:apiUpdate="SparePartsInLocationDetailApi.updateSparePartsInLocationDetail" |
|
||||
:apiPage="SparePartsInLocationDetailApi.getSparePartsInLocationDetailPage" |
|
||||
:apiDelete="SparePartsInLocationDetailApi.deleteSparePartsInLocationDetail" |
|
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
||||
:isShowAddBtn="true" |
|
||||
:detailButtonIsShowAdd="true" |
|
||||
:detailButtonIsShowAddStatusArray="['0']" |
|
||||
/> |
|
||||
<!-- 审核页面 --> |
|
||||
<!-- <AudiForm ref="audiFormRef" @success="handleApprove"/> --> |
|
||||
<BasicForm |
|
||||
ref="formRefApproved" |
|
||||
:rules="SparePartsInLocationMainRules" |
|
||||
:formAllSchemas="SparePartsInLocationExamine.allSchemas" |
|
||||
@submitForm="approveSparePartsInLocation" |
|
||||
:isCol="false" |
|
||||
/> |
|
||||
<!-- 导入 --> |
|
||||
<ImportForm |
|
||||
ref="importFormRef" |
|
||||
url="/eam/spare-parts-in-location-main/import" |
|
||||
:importTemplateData="importTemplateData" |
|
||||
@success="importSuccess" |
|
||||
/> |
|
||||
</template> |
|
||||
|
|
||||
<script setup lang="ts"> |
|
||||
import download from '@/utils/download' |
|
||||
import { |
|
||||
SparePartsInLocationMain, |
|
||||
SparePartsInLocationMainRules, |
|
||||
SparePartsInLocationDetail, |
|
||||
SparePartsInLocationDetailRules, |
|
||||
SparePartsInLocationExamine |
|
||||
} from './sparePartsInLocationMain.data' |
|
||||
import * as SparePartsInLocationMainApi from '@/api/eam/sparePartsInLocationMain' |
|
||||
import * as SparePartsInLocationDetailApi from '@/api/eam/sparePartsInLocationDetail' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
||||
// import AudiForm from '@/views/eam/sparepartsinlocation/audiForm.vue' |
|
||||
|
|
||||
// 采购订单 |
|
||||
defineOptions({ name: 'SparePartsApply' }) |
|
||||
|
|
||||
const message = useMessage() // 消息弹窗 |
|
||||
const { t } = useI18n() // 国际化 |
|
||||
const route = useRoute() // 路由信息 |
|
||||
const routeName = ref() |
|
||||
routeName.value = route.name |
|
||||
const formRef = ref() |
|
||||
const formRefApproved = ref() |
|
||||
const tableColumns = ref(SparePartsInLocationMain.allSchemas.tableColumns) |
|
||||
// const audiFormRef = ref() |
|
||||
// 字段设置 更新主列表字段 |
|
||||
const updataTableColumns = (val) => { |
|
||||
tableColumns.value = val |
|
||||
} |
|
||||
|
|
||||
// 查询页面返回 |
|
||||
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
||||
nextTick(() => { |
|
||||
const setV = {} |
|
||||
setV[formField] = val[0][searchField] |
|
||||
console.log(11, val[0]) |
|
||||
if (type == 'tableForm') { |
|
||||
if (formField == 'locationCode') { |
|
||||
row['locationCode'] = val[0].locationNumber |
|
||||
row['areaCode'] = val[0].areaNumber |
|
||||
row['sparePartsCode'] = val[0].itemNumber |
|
||||
row['currentQty'] = val[0].qty |
|
||||
row['isRadeIn'] = val[0].isRadeIn |
|
||||
} |
|
||||
} else { |
|
||||
if (formField == 'locationCode') { |
|
||||
setV['locationCode'] = val[0].locationNumber |
|
||||
setV['areaCode'] = val[0].areaNumber |
|
||||
setV['sparePartsCode'] = val[0].itemNumber |
|
||||
setV['currentQty'] = val[0].qty |
|
||||
setV['isRadeIn'] = val[0].isRadeIn |
|
||||
} |
|
||||
} |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
// 查询页面返回——详情 |
|
||||
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
||||
nextTick(async () => { |
|
||||
const setV = {} |
|
||||
if (formField == 'locationCode') { |
|
||||
setV['locationCode'] = val[0].locationNumber |
|
||||
setV['areaCode'] = val[0].areaNumber |
|
||||
setV['sparePartsCode'] = val[0].itemNumber |
|
||||
setV['currentQty'] = val[0].qty |
|
||||
setV['isRadeIn'] = val[0].isRadeIn |
|
||||
} |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
|
||||
const Echo = [] |
|
||||
const { tableObject, tableMethods } = useTable({ |
|
||||
getListApi: SparePartsInLocationMainApi.getSparePartsInLocationMainPage // 分页接口 |
|
||||
}) |
|
||||
|
|
||||
// 获得表格的各种操作 |
|
||||
const { getList, setSearchParams } = tableMethods |
|
||||
|
|
||||
// 列表头部按钮 |
|
||||
const HeadButttondata = [ |
|
||||
defaultButtons.defaultAddBtn({ hasPermi: 'eam:spare-parts-in-location-main:create' }), // 新增 |
|
||||
defaultButtons.defaultImportBtn({ hasPermi: 'eam:spare-parts-in-location-main:import' }), // 导入 |
|
||||
defaultButtons.defaultExportBtn({ hasPermi: 'eam:spare-parts-in-location-main: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.available) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮 |
|
||||
const butttondata = (row) => { |
|
||||
return [ |
|
||||
defaultButtons.mainListEditBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:update' |
|
||||
}), // 编辑 |
|
||||
defaultButtons.mainListDeleteBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:delete' |
|
||||
}), // 删除 |
|
||||
defaultButtons.mainListAuditingBtn({ |
|
||||
hide: isShowStatusButton(row, ['0']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:examine' |
|
||||
}), //审核 |
|
||||
defaultButtons.mainListRevokeBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:cancel' |
|
||||
}), // 撤回 |
|
||||
defaultButtons.mainListTurnDownBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:rejecte' |
|
||||
}), //驳回 |
|
||||
defaultButtons.mainListApproveBtn({ |
|
||||
hide: isShowStatusButton(row, ['3']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:approve' |
|
||||
}), //审批通过 |
|
||||
defaultButtons.mainListFinishBtn({ |
|
||||
hide: isShowStatusButton(row, ['4']), |
|
||||
hasPermi: 'eam:spare-parts-in-location-main:finish' |
|
||||
}) //完成 |
|
||||
] |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮事件 |
|
||||
const buttonTableClick = async (val, row) => { |
|
||||
if (val == 'edit') { |
|
||||
// 编辑 |
|
||||
openForm('update', row) |
|
||||
} else if (val == 'auditing') { |
|
||||
//审核 |
|
||||
handleSubmitExamine(row.id) |
|
||||
} else if (val == 'mainTurnDown') { |
|
||||
//驳回 |
|
||||
handleRejecte(row.id) |
|
||||
} else if (val == 'mainApprove') { |
|
||||
//审核通过 |
|
||||
formRefApproved.value.open('update', row, { masterId: row.id }, 'auditing') |
|
||||
} else if (val == 'revoke') { |
|
||||
// 撤回 |
|
||||
handleCancel(row.id) |
|
||||
} else if (val == 'finish') { |
|
||||
// 完成 |
|
||||
handleFinish(row.id) |
|
||||
} else if (val == 'delete') { |
|
||||
// 删除 |
|
||||
handleDelete(row.id) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
const isShowStatusButton = (row, val) => { |
|
||||
if (val.indexOf(row.status) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 添加/修改操作 */ |
|
||||
const openForm = async (type: string, row?: number) => { |
|
||||
tableData.value = [] // 重置明细数据 |
|
||||
formRef.value.open(type, row) |
|
||||
} |
|
||||
|
|
||||
/** 详情操作 */ |
|
||||
const detailRef = ref() |
|
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicSparePartsApplyMain') |
|
||||
} |
|
||||
|
|
||||
/** 删除按钮操作 */ |
|
||||
const handleDelete = async (id: number) => { |
|
||||
try { |
|
||||
// 删除的二次确认 |
|
||||
await message.delConfirm() |
|
||||
// 发起删除 |
|
||||
await SparePartsInLocationMainApi.deleteSparePartsInLocationMain(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 SparePartsInLocationMainApi.exportSparePartsInLocationMain( |
|
||||
tableObject.params |
|
||||
) |
|
||||
download.excel(data, '备件申领记录主.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* tableForm方法 |
|
||||
*/ |
|
||||
const tableFormKeys = {} |
|
||||
SparePartsInLocationDetail.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) |
|
||||
} |
|
||||
|
|
||||
// 主子数据 提交 |
|
||||
const submitForm = async (formType, data) => { |
|
||||
data.subList = tableData.value // 拼接子表数据参数 |
|
||||
console.log(formRef.value) |
|
||||
formRef.value.formLoading = true |
|
||||
let isHave = data.subList.some(item=>item.applyQty>item.currentQty) |
|
||||
if(isHave){ |
|
||||
message.warning('申领数量不能大于库存数量') |
|
||||
return |
|
||||
} |
|
||||
try { |
|
||||
if (formType === 'create') { |
|
||||
await SparePartsInLocationMainApi.createSparePartsInLocationMain(data) |
|
||||
message.success(t('common.createSuccess')) |
|
||||
} else { |
|
||||
await SparePartsInLocationMainApi.updateSparePartsInLocationMain(data) |
|
||||
message.success(t('common.updateSuccess')) |
|
||||
} |
|
||||
formRef.value.dialogVisible = false |
|
||||
// 刷新当前列表 |
|
||||
getList() |
|
||||
} finally { |
|
||||
formRef.value.formLoading = 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() // 刷新当前列表 |
|
||||
} |
|
||||
// 审核 |
|
||||
const handleSubmitExamine = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否提交审核?')) |
|
||||
try { |
|
||||
await SparePartsInLocationMainApi.submitExamineSparePartsInLocation(id) |
|
||||
message.success(t('ts.提交审批成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
/** 撤回按钮操作 */ |
|
||||
const handleCancel = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否撤回所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsInLocationMainApi.cancelSparePartsInLocation(id) |
|
||||
message.success(t('ts.撤回成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
//审核驳回按钮 |
|
||||
const handleRejecte = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否驳回所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsInLocationMainApi.rejectSparePartsInLocation(id) |
|
||||
message.success(t('ts.驳回成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
// 审核通过 |
|
||||
const approveSparePartsInLocation = async (formType, data) => { |
|
||||
try { |
|
||||
await SparePartsInLocationMainApi.approveSparePartsInLocation(data) |
|
||||
message.success(t('ts.审核通过!')) |
|
||||
// 刷新列表 |
|
||||
formRefApproved.value.dialogVisible = false |
|
||||
await getList() |
|
||||
} finally { |
|
||||
formRefApproved.value.formLoading = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
//审核驳回按钮 |
|
||||
const handleFinish = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否完成所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsInLocationMainApi.finishSparePartsInLocation(id) |
|
||||
message.success(t('ts.完成成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 初始化 **/ |
|
||||
onMounted(async () => { |
|
||||
getList() |
|
||||
importTemplateData.templateUrl = await SparePartsInLocationMainApi.importTemplate() |
|
||||
}) |
|
||||
</script> |
|
@ -1,298 +0,0 @@ |
|||||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
||||
import { dateFormatter } from '@/utils/formatTime' |
|
||||
import * as ItemAccountsApi from '@/api/eam/itemAccounts' |
|
||||
import { ItemAccounts } from '@/views/eam/itemAccounts/itemAccounts.data' |
|
||||
|
|
||||
|
|
||||
// 表单校验
|
|
||||
export const SparePartsInLocationMainRules = reactive({ |
|
||||
number: [required], |
|
||||
theme: [required], |
|
||||
type: [required], |
|
||||
}) |
|
||||
// 备件入库主表
|
|
||||
export const SparePartsInLocationMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: 'id', |
|
||||
field: 'id', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
isDetail:false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '编号', |
|
||||
field: 'number', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isForm: false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '入库主题', |
|
||||
field: 'theme', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
},{ |
|
||||
label: '入库类型', |
|
||||
field: 'type', |
|
||||
sort: 'custom', |
|
||||
dictType: DICT_TYPE.PUT_IN_TYPE, |
|
||||
dictClass: 'string', |
|
||||
|
|
||||
}, |
|
||||
{ |
|
||||
label: '流程状态', |
|
||||
field: 'status', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false, |
|
||||
|
|
||||
dictType: DICT_TYPE.SPAREPARTS_APPLY_STATUS_ENUM, |
|
||||
dictClass: 'string', |
|
||||
|
|
||||
}, |
|
||||
{ |
|
||||
label: '入库申请人', |
|
||||
field: 'applyer', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核人', |
|
||||
field: 'approver', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核时间', |
|
||||
field: 'approveTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isForm: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' |
|
||||
} |
|
||||
}, |
|
||||
detail: { |
|
||||
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
||||
}, |
|
||||
}, |
|
||||
{ |
|
||||
label: '入库时间', |
|
||||
field: 'createTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
isForm: false, |
|
||||
detail: { |
|
||||
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
||||
}, |
|
||||
}, |
|
||||
|
|
||||
|
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
}, |
|
||||
|
|
||||
{ |
|
||||
label: '操作', |
|
||||
field: 'action', |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 220, |
|
||||
fixed: 'right' |
|
||||
}, |
|
||||
isDetail:false |
|
||||
} |
|
||||
])) |
|
||||
// 备件入库子表
|
|
||||
export const SparePartsInLocationDetailRules = reactive({ |
|
||||
number: [required], |
|
||||
masterId: [required], |
|
||||
locationCode: [required], |
|
||||
areaCode: [required], |
|
||||
sparePartsCode: [required], |
|
||||
applyQty: [required], |
|
||||
}) |
|
||||
|
|
||||
export const SparePartsInLocationDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '库位编号', |
|
||||
field: 'locationCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchListPlaceholder: '请选择库位编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '库位信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'itemNumber', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库区编号', |
|
||||
field: 'areaCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '备件编号', |
|
||||
field: 'sparePartsCode', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库存数量', |
|
||||
field: 'currentQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
}, |
|
||||
form:{ |
|
||||
componentProps:{ |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
isDetail:false, |
|
||||
isTable:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申领数量', |
|
||||
field: 'applyQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
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, |
|
||||
isTableForm:false |
|
||||
}, |
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
}, |
|
||||
{ |
|
||||
label: '操作', |
|
||||
field: 'action', |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 150, |
|
||||
fixed: 'right' |
|
||||
}, |
|
||||
isTableForm:false, |
|
||||
|
|
||||
} |
|
||||
])) |
|
||||
export const SparePartsInLocationExamineRules = reactive({ |
|
||||
approver: [required], |
|
||||
approveContent: [required], |
|
||||
sparePartsCode: [required], |
|
||||
}) |
|
||||
// 审核完成字段
|
|
||||
export const SparePartsInLocationExamine = useCrudSchemas(reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form:{ |
|
||||
component: 'Input', |
|
||||
componentProps: { |
|
||||
type: 'textarea' |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
])) |
|
||||
|
|
@ -1,344 +0,0 @@ |
|||||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
||||
|
|
||||
import * as ItemAccountsApi from '@/api/eam/itemAccounts' |
|
||||
import { ItemAccounts } from '@/views/eam/itemAccounts/itemAccounts.data' |
|
||||
|
|
||||
import { EquipmentAccounts } from '@/views/eam/equipmentAccounts/equipmentAccounts.data' |
|
||||
import * as EquipmentItemApi from '@/api/eam/equipmentAccounts' |
|
||||
|
|
||||
import { dateFormatter } from '@/utils/formatTime' |
|
||||
|
|
||||
export const SparePartsOutLocationMain = useCrudSchemas( |
|
||||
reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '编号', |
|
||||
field: 'number', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申请编号', |
|
||||
field: 'applyNumber', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '出库类型', |
|
||||
field: 'outType', |
|
||||
dictType: DICT_TYPE.EAM_OUT_TYPE, |
|
||||
dictClass: 'string', |
|
||||
isTable: true, |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
tableForm: { |
|
||||
type: 'Select' |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '关联工单', |
|
||||
field: 'workNumber', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
// labelMessage: '信息提示说明!!!',
|
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchTitle: '设备信息', // 查询弹窗标题
|
|
||||
searchListPlaceholder: '请选择 设备编号', // 输入框占位文本
|
|
||||
searchAllSchemas: EquipmentAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchPage: EquipmentItemApi.getEquipmentAccountsPage, // 查询弹窗所需分页方法
|
|
||||
multiple: true, |
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'status', |
|
||||
value: 'NORMAL', |
|
||||
action: '==', |
|
||||
isSearch: true, |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
searchAllSchemas: EquipmentAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: EquipmentItemApi.getEquipmentAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'status', |
|
||||
value: 'NORMAL', |
|
||||
action: '==', |
|
||||
isSearch: true, |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
|
|
||||
{ |
|
||||
label: '出库主题', |
|
||||
field: 'theme', |
|
||||
sort: 'custom', |
|
||||
isSearch: true |
|
||||
}, |
|
||||
{ |
|
||||
label: '流程状态', |
|
||||
field: 'status', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm: false, |
|
||||
|
|
||||
dictType: DICT_TYPE.EAM_OUT_STATUS, |
|
||||
dictClass: 'string' |
|
||||
}, |
|
||||
{ |
|
||||
label: '申请人', |
|
||||
field: 'applyer', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核人', |
|
||||
field: 'approver', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
form: { |
|
||||
component: 'InputNumber', |
|
||||
value: 0 |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核内容', |
|
||||
field: 'approveContent', |
|
||||
sort: 'custom', |
|
||||
isSearch: true, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '审核时间', |
|
||||
field: 'approveTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
form: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
type: 'datetime', |
|
||||
valueFormat: 'x' |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '自动审核', |
|
||||
field: 'autoExamine', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '自动通过', |
|
||||
field: 'autoAgree', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '直接生成记录', |
|
||||
field: 'directCreateRecord', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '创建时间', |
|
||||
field: 'createTime', |
|
||||
sort: 'custom', |
|
||||
formatter: dateFormatter, |
|
||||
isSearch: false, |
|
||||
isTable: false, |
|
||||
search: { |
|
||||
component: 'DatePicker', |
|
||||
componentProps: { |
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
||||
type: 'daterange', |
|
||||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
||||
} |
|
||||
}, |
|
||||
isForm: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '操作', |
|
||||
field: 'action', |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 150, |
|
||||
fixed: 'right' |
|
||||
} |
|
||||
} |
|
||||
]) |
|
||||
) |
|
||||
|
|
||||
//表单校验
|
|
||||
export const SparePartsOutLocationMainRules = reactive({ |
|
||||
description: [{ required: true, message: '描述不能为空', trigger: 'change' }] |
|
||||
}) |
|
||||
/** |
|
||||
* @returns {Array} 备件申请子表 |
|
||||
*/ |
|
||||
export const SparePartsOutLocationDetail = useCrudSchemas( |
|
||||
reactive<CrudSchema[]>([ |
|
||||
{ |
|
||||
label: '库位编号', |
|
||||
field: 'locationCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
isSearchList: true, // 开启查询弹窗
|
|
||||
searchListPlaceholder: '请选择库位编号', // 输入框占位文本
|
|
||||
searchField: 'code', // 查询弹窗赋值字段
|
|
||||
searchTitle: '库位信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
isInpuFocusShow: true, |
|
||||
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
|
||||
searchField: 'itemNumber', // 查询弹窗赋值字段
|
|
||||
searchTitle: '备件信息', // 查询弹窗标题
|
|
||||
|
|
||||
searchAllSchemas: ItemAccounts.allSchemas, // 查询弹窗所需类
|
|
||||
searchPage: ItemAccountsApi.getItemAccountsPage, // 查询弹窗所需分页方法
|
|
||||
searchCondition: [ |
|
||||
{ |
|
||||
key: 'available', |
|
||||
value: 'TRUE', |
|
||||
isMainValue: false |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库区编号', |
|
||||
field: 'areaCode', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '备件编号', |
|
||||
field: 'sparePartsCode', |
|
||||
sort: 'custom', |
|
||||
table: { |
|
||||
width: 150 |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
label: '库存数量', |
|
||||
field: 'currentQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
tableForm: { |
|
||||
disabled: true |
|
||||
}, |
|
||||
form: { |
|
||||
componentProps: { |
|
||||
disabled: true |
|
||||
} |
|
||||
}, |
|
||||
isDetail: false, |
|
||||
isTable: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '申领数量', |
|
||||
field: 'applyQty', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '流程状态', |
|
||||
field: 'status', |
|
||||
sort: 'custom', |
|
||||
isSearch: false, |
|
||||
isForm: false, |
|
||||
|
|
||||
dictType: DICT_TYPE.EAM_OUT_STATUS, |
|
||||
dictClass: 'string' |
|
||||
}, |
|
||||
{ |
|
||||
label: '备注', |
|
||||
field: 'remark', |
|
||||
sort: 'custom', |
|
||||
isSearch: false |
|
||||
}, |
|
||||
{ |
|
||||
label: '操作', |
|
||||
field: 'action', |
|
||||
isDetail: false, |
|
||||
isForm: false, |
|
||||
table: { |
|
||||
width: 150, |
|
||||
fixed: 'right' |
|
||||
}, |
|
||||
isTableForm: false |
|
||||
} |
|
||||
]) |
|
||||
) |
|
||||
|
|
||||
//表单校验
|
|
||||
export const SparePartsOutLocationDetailRules = reactive({ |
|
||||
applyQty: [{ required: true, message: '请输入标包数量', trigger: 'blur' }] |
|
||||
}) |
|
@ -1,400 +0,0 @@ |
|||||
<template> |
|
||||
<ContentWrap> |
|
||||
<!-- 搜索工作栏 --> |
|
||||
<Search |
|
||||
:schema="SparePartsOutLocationMain.allSchemas.searchSchema" |
|
||||
@search="setSearchParams" |
|
||||
@reset="setSearchParams" |
|
||||
/> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 列表头部 --> |
|
||||
<TableHead |
|
||||
:HeadButttondata="HeadButttondata" |
|
||||
@button-base-click="buttonBaseClick" |
|
||||
:routeName="routeName" |
|
||||
@updataTableColumns="updataTableColumns" |
|
||||
@searchFormClick="searchFormClick" |
|
||||
:allSchemas="SparePartsOutLocationMain.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 }"> |
|
||||
<ButtonBase |
|
||||
:Butttondata="butttondata(row)" |
|
||||
@button-base-click="buttonTableClick($event, row)" |
|
||||
/> |
|
||||
</template> |
|
||||
</Table> |
|
||||
</ContentWrap> |
|
||||
|
|
||||
<!-- 表单弹窗:添加/修改 --> |
|
||||
<BasicForm |
|
||||
ref="formRef" |
|
||||
@success="getList" |
|
||||
:rules="SparePartsOutLocationMainRules" |
|
||||
:formAllSchemas="SparePartsOutLocationMain.allSchemas" |
|
||||
:tableAllSchemas="SparePartsOutLocationDetail.allSchemas" |
|
||||
:tableFormRules="SparePartsOutLocationDetailRules" |
|
||||
:tableData="tableData" |
|
||||
:apiUpdate="SparePartsOutLocationMainApi.updateSparePartsOutLocationMain" |
|
||||
:apiCreate="SparePartsOutLocationMainApi.createSparePartsOutLocationMain" |
|
||||
:isBusiness="true" |
|
||||
@handleAddTable="handleAddTable" |
|
||||
@handleDeleteTable="handleDeleteTable" |
|
||||
@searchTableSuccess="searchTableSuccess" |
|
||||
@submitForm="submitForm" |
|
||||
/> |
|
||||
|
|
||||
<!-- 详情 --> |
|
||||
<Detail |
|
||||
ref="detailRef" |
|
||||
:isBasic="false" |
|
||||
:allSchemas="SparePartsOutLocationMain.allSchemas" |
|
||||
:detailAllSchemas="SparePartsOutLocationDetail.allSchemas" |
|
||||
:detailAllSchemasRules="SparePartsOutLocationDetailRules" |
|
||||
:apiCreate="SparePartsOutLocationDetailApi.createSparePartsOutLocationDetail" |
|
||||
:apiUpdate="SparePartsOutLocationDetailApi.updateSparePartsOutLocationDetail" |
|
||||
:apiPage="SparePartsOutLocationDetailApi.getSparePartsOutLocationDetailPage" |
|
||||
:apiDelete="SparePartsOutLocationDetailApi.deleteSparePartsOutLocationDetail" |
|
||||
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
||||
:isShowAddBtn="false" |
|
||||
:detailButtonIsShow="true" |
|
||||
/> |
|
||||
|
|
||||
<!-- 导入 --> |
|
||||
<ImportForm |
|
||||
ref="importFormRef" |
|
||||
url="/eam/sparePartsOutLocationDetail/import" |
|
||||
:importTemplateData="importTemplateData" |
|
||||
@success="importSuccess" |
|
||||
/> |
|
||||
</template> |
|
||||
|
|
||||
<script setup lang="ts"> |
|
||||
import download from '@/utils/download' |
|
||||
import { |
|
||||
SparePartsOutLocationMain, |
|
||||
SparePartsOutLocationMainRules, |
|
||||
SparePartsOutLocationDetail, |
|
||||
SparePartsOutLocationDetailRules |
|
||||
} from './SparePartsOutLocation.data.ts' |
|
||||
import * as SparePartsOutLocationMainApi from '@/api/eam/sparePartsOutLocationMain' |
|
||||
import * as SparePartsOutLocationDetailApi from '@/api/eam/sparePartsOutLocationDetail' |
|
||||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
||||
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
||||
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
||||
|
|
||||
// 采购订单 |
|
||||
defineOptions({ name: 'SparePartsOutLocation' }) |
|
||||
|
|
||||
const message = useMessage() // 消息弹窗 |
|
||||
const { t } = useI18n() // 国际化 |
|
||||
const route = useRoute() // 路由信息 |
|
||||
const routeName = ref() |
|
||||
routeName.value = route.name |
|
||||
const tableColumns = ref(SparePartsOutLocationMain.allSchemas.tableColumns) |
|
||||
|
|
||||
// 字段设置 更新主列表字段 |
|
||||
const updataTableColumns = (val) => { |
|
||||
tableColumns.value = val |
|
||||
} |
|
||||
|
|
||||
// 查询页面返回 |
|
||||
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
||||
nextTick(() => { |
|
||||
nextTick(() => { |
|
||||
const setV = {} |
|
||||
setV[formField] = val[0][searchField] |
|
||||
if (formField == 'sparePartsCode') { |
|
||||
row['sparePartsCode'] = val[0].itemNumber |
|
||||
row['currentQty'] = val[0].qty |
|
||||
} |
|
||||
if (formField == 'equipmentCode') { |
|
||||
row['equipmentCode'] = val[0].code |
|
||||
} |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
}) |
|
||||
} |
|
||||
// 查询页面返回——详情 |
|
||||
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
||||
nextTick(async () => { |
|
||||
const setV = {} |
|
||||
// if(formField == 'itemCode'){ |
|
||||
// await ItembasicApi.getItembasicPage({ |
|
||||
// code: setV['itemCode'] |
|
||||
// }).then(res => { |
|
||||
// setV['uom'] = res.list[0].uom |
|
||||
// setV[formField] = val[0][searchField] |
|
||||
// }) |
|
||||
// } |
|
||||
formRef.setValues(setV) |
|
||||
}) |
|
||||
} |
|
||||
|
|
||||
// 子表新增的时候选择表格之后需要会显得字段 |
|
||||
const Echo = [] |
|
||||
const { tableObject, tableMethods } = useTable({ |
|
||||
getListApi: SparePartsOutLocationMainApi.getSparePartsOutLocationMainPage // 分页接口 |
|
||||
}) |
|
||||
|
|
||||
// 获得表格的各种操作 |
|
||||
const { getList, setSearchParams } = tableMethods |
|
||||
|
|
||||
// 列表头部按钮 |
|
||||
const HeadButttondata = [ |
|
||||
defaultButtons.defaultAddBtn(null), // 新增 |
|
||||
// defaultButtons.defaultImportBtn(null), // 导入 |
|
||||
// defaultButtons.defaultExportBtn(null), // 导出 |
|
||||
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.available) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
const isShowStatusButton = (row, val) => { |
|
||||
if (val.indexOf(row.status) > -1) { |
|
||||
return false |
|
||||
} else { |
|
||||
return true |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮 |
|
||||
const butttondata = (row) => { |
|
||||
return [ |
|
||||
// defaultButtons.mainAdjust(null),// 盘点调整 |
|
||||
defaultButtons.mainListApproveBtn({ |
|
||||
hide: isShowStatusButton(row, ['未出库']), |
|
||||
hasPermi: 'request:spare-parts-out-location-main:out' |
|
||||
}) //审批通过 |
|
||||
] |
|
||||
} |
|
||||
|
|
||||
// 列表-操作按钮事件 |
|
||||
const buttonTableClick = async (val, row) => { |
|
||||
if (val == 'edit') { |
|
||||
// 编辑 |
|
||||
openForm('update', row) |
|
||||
} |
|
||||
// else if (val == 'mainOrderClo') { |
|
||||
// // 关闭 |
|
||||
// handleClose(row.id) |
|
||||
// } |
|
||||
else if (val == 'mainTurnDown') { |
|
||||
//出库 |
|
||||
handleOut(row.id) |
|
||||
} else if (val == 'delete') { |
|
||||
// 删除 |
|
||||
handleDelete(row.id) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
//审核驳回按钮 |
|
||||
const handleOut = async (id: number) => { |
|
||||
await message.delConfirm(t('ts.是否出库所选中数据?')) |
|
||||
try { |
|
||||
await SparePartsOutLocationMainApi.outSparePartsInLocation(id) |
|
||||
message.success(t('ts.出库成功!')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 添加/修改操作 */ |
|
||||
const formRef = ref() |
|
||||
const openForm = async (type: string, row?: number) => { |
|
||||
tableData.value = [] // 重置明细数据 |
|
||||
formRef.value.open(type, row) |
|
||||
} |
|
||||
|
|
||||
/** 详情操作 */ |
|
||||
const detailRef = ref() |
|
||||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
||||
detailRef.value.openDetail(row, titleName, titleValue, 'basicSparePartsOutLocationMain') |
|
||||
} |
|
||||
|
|
||||
/** 删除按钮操作 */ |
|
||||
const handleDelete = async (id: number) => { |
|
||||
try { |
|
||||
// 删除的二次确认 |
|
||||
await message.delConfirm() |
|
||||
// 发起删除 |
|
||||
await SparePartsOutLocationMainApi.deleteSparePartsOutLocationMain(id) |
|
||||
message.success(t('common.delSuccess')) |
|
||||
// 刷新列表 |
|
||||
await getList() |
|
||||
} catch {} |
|
||||
} |
|
||||
|
|
||||
/** 列表导出按钮操作 */ |
|
||||
const exportLoading = ref(false) // 导出的加载中 |
|
||||
const handleMainExport = async (id: number) => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsOutLocationMainApi.exportSparePartsOutLocationMain(id) |
|
||||
download.excel(data, '盘点工单.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** 关闭按钮操作 */ |
|
||||
// const handleClose = async (id: number) => { |
|
||||
// try { |
|
||||
// // 关闭的二次确认 |
|
||||
// await message.confirm('是否关闭所选中数据?') |
|
||||
// // 发起关闭 |
|
||||
// await SparePartsOutLocationMainApi.closeSparePartsOutLocationMain(id) |
|
||||
// message.success(t('关闭成功!')) |
|
||||
// // 刷新列表 |
|
||||
// await getList() |
|
||||
// } catch {} |
|
||||
// } |
|
||||
|
|
||||
/** 导出按钮操作 */ |
|
||||
const handleExport = async () => { |
|
||||
try { |
|
||||
// 导出的二次确认 |
|
||||
await message.exportConfirm() |
|
||||
// 发起导出 |
|
||||
exportLoading.value = true |
|
||||
const data = await SparePartsOutLocationMainApi.exportSparePartsOutLocationMain( |
|
||||
tableObject.params |
|
||||
) |
|
||||
download.excel(data, '备件申领记录主.xlsx') |
|
||||
} catch { |
|
||||
} finally { |
|
||||
exportLoading.value = false |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* tableForm方法 |
|
||||
*/ |
|
||||
const tableFormKeys = {} |
|
||||
SparePartsOutLocationDetail.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) |
|
||||
} |
|
||||
|
|
||||
// 主子数据 提交 |
|
||||
const submitForm = async (formType, data) => { |
|
||||
data.subList = tableData.value // 拼接子表数据参数 |
|
||||
try { |
|
||||
if (formType === 'create') { |
|
||||
await SparePartsOutLocationMainApi.createSparePartsOutLocationMain(data) |
|
||||
message.success(t('common.createSuccess')) |
|
||||
} else { |
|
||||
await SparePartsOutLocationMainApi.updateSparePartsOutLocationMain(data) |
|
||||
message.success(t('common.updateSuccess')) |
|
||||
} |
|
||||
formRef.value.dialogVisible = false |
|
||||
// 刷新当前列表 |
|
||||
getList() |
|
||||
} finally { |
|
||||
formRef.value.formLoading = 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 SparePartsOutLocationMainApi.importTemplate() |
|
||||
}) |
|
||||
</script> |
|
Loading…
Reference in new issue