|
|
@ -4,10 +4,12 @@ |
|
|
|
<Search |
|
|
|
:schema="InspectionJobMain.allSchemas.searchSchema" |
|
|
|
@search="setSearchParams" |
|
|
|
@reset="setSearchParams({ |
|
|
|
@reset=" |
|
|
|
setSearchParams({ |
|
|
|
available: true, |
|
|
|
excludeInspectionType: '1,4' |
|
|
|
})" |
|
|
|
}) |
|
|
|
" |
|
|
|
/> |
|
|
|
</ContentWrap> |
|
|
|
|
|
|
@ -23,7 +25,8 @@ |
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
|
<ContentWrap> |
|
|
|
<Table v-clientTable |
|
|
|
<Table |
|
|
|
v-clientTable |
|
|
|
:columns="tableColumns" |
|
|
|
:data="tableObject.tableList" |
|
|
|
:loading="tableObject.loading" |
|
|
@ -60,6 +63,7 @@ |
|
|
|
:rules="InspectionJobMainRules" |
|
|
|
:formAllSchemas="InspectionJobMain.allSchemas" |
|
|
|
@submitForm="submitForm" |
|
|
|
@close="getList" |
|
|
|
/> |
|
|
|
<!-- 详情 --> |
|
|
|
<Detail |
|
|
@ -122,6 +126,7 @@ import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
|
import AddForm from './addForm.vue' |
|
|
|
import Detail from './detail.vue' |
|
|
|
import { getReportUrl } from '@/utils/systemParam' |
|
|
|
import { useUserStore } from '@/store/modules/user' |
|
|
|
|
|
|
|
// 采购订单 |
|
|
|
defineOptions({ name: 'inspectionJobMain' }) |
|
|
@ -132,7 +137,7 @@ const route = useRoute() // 路由信息 |
|
|
|
const routeName = ref() |
|
|
|
routeName.value = route.name |
|
|
|
const tableColumns = ref(InspectionJobMain.allSchemas.tableColumns) |
|
|
|
|
|
|
|
const userStore = useUserStore() |
|
|
|
// 字段设置 更新主列表字段 |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
tableColumns.value = val |
|
|
@ -202,7 +207,7 @@ const buttonBaseClick = (val, item) => { |
|
|
|
handleExport() |
|
|
|
} else if (val == 'refresh') { |
|
|
|
// 刷新 |
|
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { |
|
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0) { |
|
|
|
searchFormClick({ |
|
|
|
filters: tableObject.params.filters |
|
|
|
}) |
|
|
@ -235,23 +240,35 @@ const isShowMainButton2 = (row, val) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 根据状态返回该按钮是否显示 |
|
|
|
const isShowMainButton1 = (row, val) => { |
|
|
|
if (val.indexOf(row.status) > -1) { |
|
|
|
if (userStore.getUser.id == row.acceptUserId) { |
|
|
|
return false |
|
|
|
} else { |
|
|
|
return true |
|
|
|
} |
|
|
|
} else { |
|
|
|
return true |
|
|
|
} |
|
|
|
} |
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row) => { |
|
|
|
return [ |
|
|
|
defaultButtons.mainListJobAccBtn({ |
|
|
|
hide: isShowMainButton(row, ['1']), |
|
|
|
hasPermi: 'qms:inspection-job-main:accept' |
|
|
|
}), // 承接 |
|
|
|
// defaultButtons.mainListJobAccBtn({ |
|
|
|
// hide: isShowMainButton(row, ['1']), |
|
|
|
// hasPermi: 'qms:inspection-job-main:accept' |
|
|
|
// }), // 承接 |
|
|
|
defaultButtons.mainListJobCloBtn({ |
|
|
|
hide: isShowMainButton(row, ['1']), |
|
|
|
hasPermi: 'qms:inspection-job-main:close' |
|
|
|
}), // 关闭 |
|
|
|
defaultButtons.mainListJobAbaBtn({ |
|
|
|
hide: isShowMainButton(row, ['2']), |
|
|
|
hide: isShowMainButton1(row, ['2']), |
|
|
|
hasPermi: 'qms:inspection-job-main:abandon' |
|
|
|
}), // 放弃 |
|
|
|
defaultButtons.mainListJobExeBtn({ |
|
|
|
hide: isShowMainButton(row, ['2']), |
|
|
|
hide: isShowMainButton(row, ['1', '2']), |
|
|
|
hasPermi: 'qms:inspection-job-main:execute' |
|
|
|
}), // 执行 |
|
|
|
defaultButtons.mainListOrderPubBtn({ |
|
|
@ -299,9 +316,10 @@ const showQualityReport = ref(false) |
|
|
|
const qualityReport = ref('') |
|
|
|
const checkQualityReport = async (row) => { |
|
|
|
showQualityReport.value = true |
|
|
|
qualityReport.value = `${getReportUrl()}/purchasereceiptReport?asnNumber=${row.asnNumber}` |
|
|
|
qualityReport.value =getReportUrl()+'purchasereceiptReport?asnNumber=' + row.asnNumber |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** 添加/修改操作 */ |
|
|
|
// const formRef = ref() |
|
|
|
// const openForm = async (type : string, row ?: number) => { |
|
|
@ -317,8 +335,18 @@ const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
|
|
//执行 |
|
|
|
|
|
|
|
const formRef = ref() |
|
|
|
const execute = async (type: string, row?: number) => { |
|
|
|
const execute = async (type: string, row?: any) => { |
|
|
|
if (row.status == '2') { |
|
|
|
if (userStore.getUser.id == row.acceptUserId) { |
|
|
|
formRef.value.open(type, row) |
|
|
|
} else { |
|
|
|
message.error('承接人与当前登录人不一致') |
|
|
|
} |
|
|
|
} else if (row.status == '1') { |
|
|
|
await handleAccept(row.id) |
|
|
|
formRef.value.open(type, row) |
|
|
|
await getList() |
|
|
|
} |
|
|
|
} |
|
|
|
/** 关闭按钮操作 */ |
|
|
|
const handleClose = async (id: number) => { |
|
|
@ -329,7 +357,7 @@ const handleClose = async (id: number) => { |
|
|
|
await InspectionJobMainApi.closeInspectionJobMain(id) |
|
|
|
message.success(t('common.closeSuccess')) |
|
|
|
// 刷新列表 |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
/** 发布按钮操作 */ |
|
|
@ -341,19 +369,19 @@ const handleRelease = async (id: number) => { |
|
|
|
await InspectionJobMainApi.releaseInspectionJobMain(id) |
|
|
|
message.success('发布成功!') |
|
|
|
// 刷新列表 |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
// 承接 |
|
|
|
const handleAccept = async (id: number) => { |
|
|
|
try { |
|
|
|
// 承接的二次确认 |
|
|
|
await message.confirm(t('common.confirmAccept')) |
|
|
|
// await message.confirm(t('common.confirmAccept')) |
|
|
|
// 发起承接 |
|
|
|
await InspectionJobMainApi.acceptInspectionJobMain(id) |
|
|
|
message.success(t('common.acceptSuccess')) |
|
|
|
// message.success(t('common.acceptSuccess')) |
|
|
|
// 刷新列表(TB反馈,取消承接后刷新页面) |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
// buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
// 放弃任务 |
|
|
@ -365,7 +393,7 @@ const handleAbandon = async (id: number) => { |
|
|
|
await InspectionJobMainApi.abandonInspectionJobMain(id) |
|
|
|
message.success(t('common.giveupSuccess')) |
|
|
|
// 刷新列表 |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
|
|
|
@ -411,8 +439,8 @@ const submitForm = async (formType, data) => { |
|
|
|
// 刷新当前列表 |
|
|
|
if (formType === 'create') { |
|
|
|
getList() |
|
|
|
}else{ |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
} else { |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} |
|
|
|
} finally { |
|
|
|
formRef.value.formLoading = false |
|
|
|