You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
519 lines
15 KiB
519 lines
15 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search
|
|
:schema="DeviceMaintainOrderMain.allSchemas.searchSchema"
|
|
@search="setSearchParams"
|
|
@reset="setSearchParams"
|
|
/>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="DeviceMaintainOrderMain.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"
|
|
:rules="DeviceMaintainOrderMainRules"
|
|
:formAllSchemas="DeviceMaintainOrderMain.allSchemas"
|
|
:tableAllSchemas="DeviceMaintainOrderDetail.allSchemas"
|
|
:tableFormRules="DeviceMaintainOrderDetailRules"
|
|
:tableData="tableData"
|
|
:apiUpdate="DeviceMaintainOrderMainApi.updateDeviceMaintainOrderMain"
|
|
:apiCreate="DeviceMaintainOrderMainApi.createDeviceMaintainOrderMain"
|
|
:isBusiness="true"
|
|
@onChange="onChange"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
:isSearchTableItem="true"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<!-- <Detail ref="detailRef" :isBasic="true" :allSchemas="DeviceMaintainOrderMain.allSchemas" /> -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="DeviceMaintainOrderMain.allSchemas"
|
|
:detailAllSchemas="DeviceMaintainOrderDetail.allSchemas"
|
|
:detailAllSchemasRules="DeviceMaintainOrderDetailRules"
|
|
:apiCreate="DeviceMaintainOrderDetailApi.createDeviceMaintainOrderDetail"
|
|
:apiUpdate="DeviceMaintainOrderDetailApi.updateDeviceMaintainOrderDetail"
|
|
:apiPage="DeviceMaintainOrderDetailApi.getDeviceMaintainOrderDetailPage"
|
|
:apiDelete="DeviceMaintainOrderDetailApi.deleteDeviceMaintainOrderDetail"
|
|
:Echo="Echo"
|
|
:isShowAddBtn="false"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
@detailOpenForm="detailOpenForm"
|
|
:detailValidate="detailValidate"
|
|
@detailSubmitForm="detailSubmitForm"
|
|
:isSearchTableItem="true"
|
|
:buttonControllFunction="buttonControllFunction"
|
|
@detailOnChange="detailOnChange"
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm
|
|
ref="importFormRef"
|
|
url="/eam/device-maintenance-job-main/import"
|
|
:importTemplateData="importTemplateData"
|
|
@success="importSuccess"
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import {
|
|
DeviceMaintainOrderMain,
|
|
DeviceMaintainOrderMainRules,
|
|
DeviceMaintainOrderDetail,
|
|
DeviceMaintainOrderDetailRules
|
|
} from './deviceMaintainOrderMain.data'
|
|
import * as DeviceMaintainOrderMainApi from '@/api/eam/device/deviceMaintainOrderMain'
|
|
import * as DeviceMaintainOrderDetailApi from '@/api/eam/device/deviceMaintainOrderDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import { useUserStore } from '@/store/modules/user'
|
|
|
|
defineOptions({ name: 'DeviceMaintainOrderMain' })
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const userStore = useUserStore() // 用户信息
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
const formRef = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(DeviceMaintainOrderMain.allSchemas.tableColumns)
|
|
const tableData = ref([])
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => {
|
|
nextTick(() => {
|
|
if (type == 'tableForm') {
|
|
// 明细查询页赋值
|
|
if (formField == 'itemNumbers1') {
|
|
let str = ''
|
|
val.forEach((element) => {
|
|
str += element.name + ':' + element.qty + ','
|
|
})
|
|
str = str.substring(0, str.length - 1)
|
|
row['itemNumbers1'] = str
|
|
row['itemNumbers'] = val
|
|
}
|
|
} else {
|
|
// const setV = {}
|
|
// setV[formField] = val[0][searchField]
|
|
// setV['supplierCode'] = val[0]['code']
|
|
// formRef.setValues(setV)
|
|
}
|
|
})
|
|
}
|
|
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
if (formField == 'itemNumbers1') {
|
|
let str = ''
|
|
val.forEach((element) => {
|
|
str += element.name + ':' + element.qty + ','
|
|
})
|
|
str = str.substring(0, str.length - 1)
|
|
setV['itemNumbers'] = val
|
|
setV['itemNumbers1'] = str
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 子表新增的时候选择表格之后需要会显得字段
|
|
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom']
|
|
const Echo = []
|
|
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: DeviceMaintainOrderMainApi.getDeviceMaintainOrderMainPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
// defaultButtons.defaultAddBtn({
|
|
// hide: !userStore?.userSelfInfo?.posts?.some((item) => item.code == 'worker')
|
|
// }), // 新增
|
|
defaultButtons.defaultFreshBtn(null), // 刷新
|
|
defaultButtons.defaultFilterBtn(null), // 筛选
|
|
defaultButtons.defaultSetBtn(null) // 设置
|
|
]
|
|
|
|
// 头部按钮事件
|
|
const buttonBaseClick = (val, item) => {
|
|
if (val == 'add') {
|
|
// 新增
|
|
DeviceMaintainOrderMain.allSchemas.formSchema[3].value = 'DEVICE'
|
|
DeviceMaintainOrderMain.allSchemas.formSchema[0].componentProps.disabled = false
|
|
openForm('create')
|
|
} else if (val == 'import') {
|
|
// 导入
|
|
handleImport()
|
|
} else if (val == 'export') {
|
|
// 导出
|
|
handleExport()
|
|
} else if (val == 'refresh') {
|
|
// 刷新
|
|
getList()
|
|
} else if (val == 'filtrate') {
|
|
// 筛选
|
|
} else {
|
|
// 其他按钮
|
|
console.log('其他按钮', item)
|
|
}
|
|
}
|
|
// 根据状态返回该按钮是否显示
|
|
const isShowMainButton = (row, val) => {
|
|
if (val.indexOf(row.status) > -1) {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
// 列表-操作按钮
|
|
const butttondata = (row) => {
|
|
return [
|
|
// defaultButtons.mainListEditBtn(null), // 编辑
|
|
defaultButtons.acceptOrderBtn({
|
|
|
|
hide: !(
|
|
row.status == 'PENDING' &&
|
|
(userStore?.userSelfInfo?.posts?.some((item) => item.code == 'engineer') ||
|
|
userStore?.userSelfInfo?.posts?.some((item) => item.code == 'worker'))
|
|
)
|
|
}), // 接单
|
|
// defaultButtons.turnOrderBtn({
|
|
// hide: !(row.status == 'PECEIVED' && row.maintenance == userStore.getUser.id)
|
|
// }), // 转办
|
|
// defaultButtons.repairBtn({
|
|
// hide: !(row.status == 'PECEIVED' && row.maintenance == userStore.getUser.id)
|
|
// }), // 维修
|
|
// defaultButtons.verifyOrderBtn({
|
|
// hide: !(
|
|
// row.status == 'COMPLETED' &&
|
|
// userStore?.userSelfInfo?.posts?.some((item) => item.code == 'engineer')
|
|
// )
|
|
// }), // 验证
|
|
defaultButtons.finishOrderBtn({
|
|
hide: !(row.status == 'PECEIVED' && row.maintenance == userStore.getUser.id)
|
|
}) // 完成
|
|
]
|
|
}
|
|
const onChange = (field, cur, item) => {
|
|
if (field == 'deviceNumber') {
|
|
// DeviceMaintainOrderMain.allSchemas.formSchema[1].componentProps.disabled = true
|
|
// DeviceMaintainOrderMain.allSchemas.formSchema[2].componentProps.disabled = true
|
|
formRef.value.formRef.formModel.factoryAreaNumber =String(item.componentProps.options.find((item) => item.number == cur).factoryAreaNumber)
|
|
console.log(typeof formRef.value.formRef.formModel.factoryAreaNumber)
|
|
// console.log(item)
|
|
// console.log(item.componentProps.options)
|
|
formRef.value.formRef.formModel.maintenance = Number(userStore?.getUser?.id)
|
|
}
|
|
}
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
DeviceMaintainOrderMain.allSchemas.formSchema[0].componentProps.disabled = false
|
|
if (val == 'edit') {
|
|
// 编辑
|
|
openForm('update', row)
|
|
DeviceMaintainOrderMain.allSchemas.formSchema[0].componentProps.disabled = true
|
|
} else if (val == 'delete') {
|
|
// 删除
|
|
handleDelete(row.id)
|
|
} else if (val == 'acceptOrder') {
|
|
acceptOrder(row)
|
|
} else if (val == 'turnOrder') {
|
|
openForm('turnOrder', row)
|
|
} else if (val == 'finishOrder') {
|
|
finishOrder(row)
|
|
} else if (val == 'finishOrder') {
|
|
finishOrder(row)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
const openForm = (type: string, row?: any) => {
|
|
tableData.value = [] // 重置明细数据
|
|
formRef.value.open(type, row)
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
detailRef.value.openDetail(row, titleName, titleValue,'DeviceMaintainOrderMain')
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await DeviceMaintainOrderMainApi.deleteDeviceMaintainOrderMain(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 DeviceMaintainOrderMainApi.exportDeviceMaintainOrderMain(tableObject.params)
|
|
download.excel(data, '维修工单主.xlsx')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: '维修工单主导入模版.xlsx'
|
|
})
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
// 接单
|
|
function acceptOrder(row) {
|
|
DeviceMaintainOrderMainApi.orderClick(row.id).then(() => {
|
|
message.success('接单成功')
|
|
getList();
|
|
});
|
|
}
|
|
// 转办
|
|
function turnOrder() {}
|
|
// 完成
|
|
function finishOrder(row) {
|
|
DeviceMaintainOrderMainApi.orderClickFinish(row.id).then(() => {
|
|
message.success('完成保养')
|
|
getList();
|
|
});
|
|
}
|
|
// 验证
|
|
function verifyOrder() {}
|
|
// 维修
|
|
function repair() {}
|
|
|
|
// 详情
|
|
function mainListDetail() {}
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
DeviceMaintainOrderDetail.allSchemas.tableFormColumns.forEach((item) => {
|
|
tableFormKeys[item.field] = item.default ? item.default : ''
|
|
})
|
|
|
|
// 添加明细
|
|
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.map((item) => {
|
|
return {
|
|
describes: item.describes,
|
|
describes1: item.describes1,
|
|
itemNumbers: item.itemNumbers1,
|
|
maintenances: item.maintenances.join(','),
|
|
workOut: item.workOut,
|
|
}
|
|
}) // 拼接子表数据参数
|
|
console.log(data.subList)
|
|
try {
|
|
if (formType === 'create') {
|
|
await DeviceMaintainOrderMainApi.createDeviceMaintainOrderMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await DeviceMaintainOrderMainApi.updateDeviceMaintainOrderMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.value.dialogVisible = false
|
|
// 刷新当前列表
|
|
getList()
|
|
} finally {
|
|
formRef.value.formLoading = false
|
|
}
|
|
}
|
|
const detailOpenForm = (type, row) =>{
|
|
console.log("type",type);
|
|
console.log("row",row);
|
|
DeviceMaintainOrderDetail.allSchemas.tableFormColumns.map((item) => {
|
|
// if(purchaseReceiptRecordNumberRef.value == ''){
|
|
// if (item.field == 'itemCode') {
|
|
// item.form.componentProps.disabled = true
|
|
// item.form.componentProps.isSearchList = true
|
|
// }
|
|
// if(item.field == 'poLine'){
|
|
// item.form.componentProps.disabled = true
|
|
// item.form.componentProps.isSearchList = false
|
|
// }
|
|
// }else{
|
|
// if (item.field == 'itemCode') {
|
|
// item.form.componentProps.disabled = true
|
|
// item.form.componentProps.isSearchList = false
|
|
// }
|
|
// if(item.field == 'poLine'){
|
|
// item.form.componentProps.disabled = true
|
|
// item.form.componentProps.isSearchList = true
|
|
// }
|
|
// }
|
|
})
|
|
}
|
|
// 子表新增/编辑校验
|
|
const detailValidate = (data) => {
|
|
return true;
|
|
let tag = false;
|
|
if(data.qty <= 0){
|
|
message.warning('数量必须大于0')
|
|
tag = false;
|
|
return tag;
|
|
}else {
|
|
tag = true;
|
|
return tag;
|
|
}
|
|
}
|
|
// 子表提交
|
|
const detailSubmitForm= async (formType,data,getList,formRef,tableList) => {
|
|
try {
|
|
let data1 = {
|
|
id:data.id,
|
|
maintenanceNumber:data.maintenanceNumber,
|
|
describes:data.describes,
|
|
describes1:data.describes1,
|
|
itemNumbers:data.itemNumbers,
|
|
maintenances:data.maintenances.join(','),
|
|
workOut:data.workOut,
|
|
}
|
|
console.log(data1)
|
|
if (formType === 'create') {
|
|
await DeviceMaintainOrderDetailApi.createDeviceMaintainOrderDetail(data1)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await DeviceMaintainOrderDetailApi.updateDeviceMaintainOrderDetail(data1)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.dialogVisible = false
|
|
// 刷新当前列表
|
|
await getList()
|
|
detailRef.value.tableObject.tableList.forEach(item=>{
|
|
if (item.itemNumbers?.length>0) {
|
|
let str = ''
|
|
item.itemNumbers.forEach(element => {
|
|
str += element.name + ':' + element.qty + ','
|
|
})
|
|
item.itemNumbers1 = str.substring(0, str.length - 1)
|
|
}
|
|
|
|
})
|
|
} finally {
|
|
formRef.formLoading = false
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getList()
|
|
importTemplateData.templateUrl = await DeviceMaintainOrderMainApi.importTemplate()
|
|
})
|
|
|
|
function buttonControllFunction(row, val) {
|
|
if (val == 'delete') {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
function detailOnChange(field, cur, item) {
|
|
if (field == 'status') {
|
|
if (cur == '1') {
|
|
DeviceMaintainOrderDetail.allSchemas.formSchema.find(item => item.field == 'uncompleted').componentProps.disabled = false
|
|
DeviceMaintainOrderDetailRules.uncompleted = [required]
|
|
} else {
|
|
DeviceMaintainOrderDetail.allSchemas.formSchema.find(item => item.field == 'uncompleted').componentProps.disabled = true
|
|
DeviceMaintainOrderDetail.allSchemas.formSchema.find(item => item.field == 'uncompleted').componentProps.value = ''
|
|
delete DeviceMaintainOrderDetailRules.uncompleted;
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|