添砖-JAVA\Administrator
5 months ago
8 changed files with 1120 additions and 178 deletions
@ -0,0 +1,58 @@ |
|||||
|
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 getSparePartsInLocationDetailRecordPage = 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 getSparePartsInLocationDetailRecord = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/spare-parts-in-location-detail-record/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增备件入库记录子
|
||||
|
export const createSparePartsInLocationDetailRecord = async (data: SparePartsInLocationDetailRecordVO) => { |
||||
|
return await request.post({ url: `/eam/spare-parts-in-location-detail-record/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改备件入库记录子
|
||||
|
export const updateSparePartsInLocationDetailRecord = async (data: SparePartsInLocationDetailRecordVO) => { |
||||
|
return await request.put({ url: `/eam/spare-parts-in-location-detail-record/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除备件入库记录子
|
||||
|
export const deleteSparePartsInLocationDetailRecord = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/spare-parts-in-location-detail-record/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出备件入库记录子 Excel
|
||||
|
export const exportSparePartsInLocationDetailRecord = 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' }) |
||||
|
} |
@ -0,0 +1,72 @@ |
|||||
|
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 getSparePartsInLocationMainRecordPage = 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 getSparePartsInLocationMainRecord = async (id: number) => { |
||||
|
return await request.get({ url: `/eam/spare-parts-in-location-main-record/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增备件入库记录主
|
||||
|
export const createSparePartsInLocationMainRecord = async ( |
||||
|
data: SparePartsInLocationMainRecordVO |
||||
|
) => { |
||||
|
return await request.post({ url: `/eam/spare-parts-in-location-main-record/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改备件入库记录主
|
||||
|
export const updateSparePartsInLocationMainRecord = async ( |
||||
|
data: SparePartsInLocationMainRecordVO |
||||
|
) => { |
||||
|
return await request.put({ url: `/eam/spare-parts-in-location-main-record/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除备件入库记录主
|
||||
|
export const deleteSparePartsInLocationMainRecord = async (id: number) => { |
||||
|
return await request.delete({ url: `/eam/spare-parts-in-location-main-record/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出备件入库记录主 Excel
|
||||
|
export const exportSparePartsInLocationMainRecord = 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' }) |
||||
|
} |
@ -0,0 +1,54 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 创建领用出库记录子
|
||||
|
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' |
||||
|
}) |
||||
|
} |
@ -0,0 +1,71 @@ |
|||||
|
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' }) |
||||
|
} |
@ -0,0 +1,300 @@ |
|||||
|
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 SparePartsOutLocationRecordMain = useCrudSchemas( |
||||
|
reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '申请编号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'description', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
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, |
||||
|
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: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
]) |
||||
|
) |
||||
|
|
||||
|
//表单校验
|
||||
|
export const SparePartsOutLocationRecordMainRules = reactive({ |
||||
|
description: [{ required: true, message: '描述不能为空', trigger: 'change' }] |
||||
|
}) |
||||
|
/** |
||||
|
* @returns {Array} 备件申请子表 |
||||
|
*/ |
||||
|
export const SparePartsOutLocationRecordDetail = useCrudSchemas( |
||||
|
reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '备件编号', |
||||
|
field: 'sparePartsCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择备件编号', // 输入框占位文本
|
||||
|
searchField: 'itemNumber', // 查询弹窗赋值字段
|
||||
|
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: 'type', |
||||
|
dictType: DICT_TYPE.DEVICE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
tableForm: { |
||||
|
type: 'Select' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '设备工装编号', |
||||
|
field: 'equipmentCode', |
||||
|
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: 'currentQty', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
tableForm: { |
||||
|
disabled: true |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
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 SparePartsOutLocationRecordDetailRules = reactive({ |
||||
|
applyQty: [{ required: true, message: '请输入标包数量', trigger: 'blur' }] |
||||
|
}) |
@ -0,0 +1,374 @@ |
|||||
|
<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/sparePartsOutLocationDetailRecord.js' |
||||
|
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> |
Loading…
Reference in new issue