|
|
@ -1,27 +1,46 @@ |
|
|
|
<template> |
|
|
|
<ContentWrap> |
|
|
|
<!-- 搜索工作栏 --> |
|
|
|
<Search :schema="InspectionJobMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
|
|
|
<Search |
|
|
|
:schema="InspectionJobMain.allSchemas.searchSchema" |
|
|
|
@search="setSearchParams" |
|
|
|
@reset="setSearchParams" |
|
|
|
/> |
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
<!-- 列表头部 --> |
|
|
|
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName" |
|
|
|
@updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" |
|
|
|
:allSchemas="InspectionJobMain.allSchemas" /> |
|
|
|
<TableHead |
|
|
|
:HeadButttondata="HeadButttondata" |
|
|
|
@button-base-click="buttonBaseClick" |
|
|
|
:routeName="routeName" |
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
@searchFormClick="searchFormClick" |
|
|
|
:allSchemas="InspectionJobMain.allSchemas" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
|
<ContentWrap> |
|
|
|
<Table :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{ |
|
|
|
<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"> |
|
|
|
}" |
|
|
|
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)" /> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="butttondata(row)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</Table> |
|
|
|
</ContentWrap> |
|
|
@ -41,25 +60,55 @@ |
|
|
|
/> |
|
|
|
<!-- 详情 --> |
|
|
|
<Detail |
|
|
|
ref="detailRef" :isBasic="false" :allSchemas="InspectionJobMain.allSchemas" |
|
|
|
ref="detailRef" |
|
|
|
:isBasic="false" |
|
|
|
:allSchemas="InspectionJobMain.allSchemas" |
|
|
|
:detailAllSchemas="InspectionJobDetail.allSchemas" |
|
|
|
:detailAllSchemasRules="InspectionJobDetailRules" |
|
|
|
:apiCreate="InspectionJobDetailApi.createInspectionJobDetail" |
|
|
|
:apiUpdate="InspectionJobDetailApi.updateInspectionJobDetail" |
|
|
|
:apiPage="InspectionJobDetailApi.getInspectionJobDetailPage" |
|
|
|
:apiDelete="InspectionJobDetailApi.deleteInspectionJobDetail" @searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:isShowAddBtn="false" :detailButtonIsShow="true" |
|
|
|
:apiDelete="InspectionJobDetailApi.deleteInspectionJobDetail" |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:isShowAddBtn="false" |
|
|
|
:detailButtonIsShow="true" |
|
|
|
/> |
|
|
|
<!-- 包装信息 --> |
|
|
|
<ListTable ref="listTableRef" titleName="包装信息" :allSchemas="InspectionJobMain.allSchemas" |
|
|
|
:detailAllSchemas="InspectionJobPackage.allSchemas" :detailAllSchemasRules="InspectionJobPackageRules" |
|
|
|
:list="list" /> |
|
|
|
<ListTable |
|
|
|
ref="listTableRef" |
|
|
|
titleName="包装信息" |
|
|
|
:allSchemas="InspectionJobMain.allSchemas" |
|
|
|
:detailAllSchemas="InspectionJobPackage.allSchemas" |
|
|
|
:detailAllSchemasRules="InspectionJobPackageRules" |
|
|
|
:list="list" |
|
|
|
/> |
|
|
|
<el-dialog |
|
|
|
v-model="showQualityReport" |
|
|
|
:title="t('质检明细')" |
|
|
|
width="90%" |
|
|
|
append-to-body |
|
|
|
destroy-on-close |
|
|
|
> |
|
|
|
<iframe height="600px" width="100%" :src="qualityReport" frameborder="0"></iframe> |
|
|
|
</el-dialog> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import download from '@/utils/download' |
|
|
|
import { InspectionJobMain, InspectionJobMainRules, InspectionJobDetail, InspectionJobDetailRules,InspectionJobPackage,InspectionJobPackageRules} from './inspectionJobMain.data' |
|
|
|
import { InspectionTemplateMain,InspectionTemplateProcess,InspectionTemplateFeatures,InspectionTemplateRules } from '../inspectionTemplate/inspectionTemplate.data' |
|
|
|
import { |
|
|
|
InspectionJobMain, |
|
|
|
InspectionJobMainRules, |
|
|
|
InspectionJobDetail, |
|
|
|
InspectionJobDetailRules, |
|
|
|
InspectionJobPackage, |
|
|
|
InspectionJobPackageRules |
|
|
|
} from './inspectionJobMain.data' |
|
|
|
import { |
|
|
|
InspectionTemplateMain, |
|
|
|
InspectionTemplateProcess, |
|
|
|
InspectionTemplateFeatures, |
|
|
|
InspectionTemplateRules |
|
|
|
} from '../inspectionTemplate/inspectionTemplate.data' |
|
|
|
|
|
|
|
import * as InspectionJobPackageApi from '@/api/qms/inspectionJob/InspectionJobPackage/InspectionJobPackage' |
|
|
|
import * as InspectionJobMainApi from '@/api/qms/inspectionJob/inspectionJobMain' |
|
|
@ -69,6 +118,7 @@ |
|
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
|
import AddForm from './addForm.vue' |
|
|
|
import Detail from './detail.vue' |
|
|
|
import { getReportUrl } from '@/utils/systemParam' |
|
|
|
|
|
|
|
// 采购订单 |
|
|
|
defineOptions({ name: 'InspectionJobMain' }) |
|
|
@ -132,21 +182,27 @@ |
|
|
|
const HeadButttondata = [ |
|
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
|
defaultButtons.defaultSetBtn(null), // 设置 |
|
|
|
defaultButtons.defaultSetBtn(null) // 设置 |
|
|
|
] |
|
|
|
|
|
|
|
// 头部按钮事件 |
|
|
|
const buttonBaseClick = (val, item) => { |
|
|
|
if (val == 'add') { // 新增 |
|
|
|
if (val == 'add') { |
|
|
|
// 新增 |
|
|
|
openForm('create') |
|
|
|
} else if (val == 'import') { // 导入 |
|
|
|
} else if (val == 'import') { |
|
|
|
// 导入 |
|
|
|
handleImport() |
|
|
|
} else if (val == 'export') { // 导出 |
|
|
|
} else if (val == 'export') { |
|
|
|
// 导出 |
|
|
|
handleExport() |
|
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
|
} else if (val == 'refresh') { |
|
|
|
// 刷新 |
|
|
|
getList() |
|
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
|
} else { // 其他按钮 |
|
|
|
} else if (val == 'filtrate') { |
|
|
|
// 筛选 |
|
|
|
} else { |
|
|
|
// 其他按钮 |
|
|
|
console.log('其他按钮', item) |
|
|
|
} |
|
|
|
} |
|
|
@ -172,36 +228,69 @@ |
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row) => { |
|
|
|
return [ |
|
|
|
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']),hasPermi:'qms:inspection-job-main:abandon'}), // 放弃 |
|
|
|
defaultButtons.mainListJobExeBtn({hide:isShowMainButton(row,['2']),hasPermi:'qms:inspection-job-main:execute'}), // 执行 |
|
|
|
defaultButtons.mainListOrderPubBtn({hide:isShowMainButton2(row,['TRUE']),hasPermi:'qms:inspection-job-main:execute'}), // 发布 |
|
|
|
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']), |
|
|
|
hasPermi: 'qms:inspection-job-main:abandon' |
|
|
|
}), // 放弃 |
|
|
|
defaultButtons.mainListJobExeBtn({ |
|
|
|
hide: isShowMainButton(row, ['2']), |
|
|
|
hasPermi: 'qms:inspection-job-main:execute' |
|
|
|
}), // 执行 |
|
|
|
defaultButtons.mainListOrderPubBtn({ |
|
|
|
hide: isShowMainButton2(row, ['TRUE']), |
|
|
|
hasPermi: 'qms:inspection-job-main:execute' |
|
|
|
}), // 发布 |
|
|
|
defaultButtons.mainListPackageBtn(null), // 包装 |
|
|
|
defaultButtons.mainListPlanCheckQualityReportBtn({}) // 查看质检报告 |
|
|
|
] |
|
|
|
} |
|
|
|
const listTableRef = ref() |
|
|
|
const list = ref([]) |
|
|
|
// 列表-操作按钮事件 |
|
|
|
const buttonTableClick = async (val, row) => { |
|
|
|
if (val == 'mainJobExe') { // 执行 |
|
|
|
if (val == 'mainJobExe') { |
|
|
|
// 执行 |
|
|
|
execute('execute', row) |
|
|
|
}else if (val == 'mainPackage') { // 包装 |
|
|
|
} else if (val == 'mainPackage') { |
|
|
|
// 包装 |
|
|
|
|
|
|
|
list.value = await InspectionJobPackageApi.getInspectionJobPackageList(row.id) |
|
|
|
// row.status = '1' |
|
|
|
listTableRef.value.openPackage(row, '包装信息', InspectionJobPackage.allSchemas.tableColumns) |
|
|
|
}else if (val == 'mainJobAba') { // 放弃 |
|
|
|
} else if (val == 'mainJobAba') { |
|
|
|
// 放弃 |
|
|
|
handleAbandon(row.id) |
|
|
|
} else if (val == 'mainJobClo') { // 关闭 |
|
|
|
} else if (val == 'mainJobClo') { |
|
|
|
// 关闭 |
|
|
|
handleClose(row.id) |
|
|
|
} else if (val == 'mainOrderPub') { // 发布 |
|
|
|
} else if (val == 'mainOrderPub') { |
|
|
|
// 发布 |
|
|
|
handleRelease(row.id) |
|
|
|
} else if (val == 'mainJobAcc') { // 承接 |
|
|
|
} else if (val == 'mainPlanCheckQualityReport') { |
|
|
|
// 查看质检报告 |
|
|
|
checkQualityReport(row) |
|
|
|
} else if (val == 'mainJobAcc') { |
|
|
|
// 承接 |
|
|
|
handleAccept(row.id) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 查看质检报告 |
|
|
|
const showQualityReport = ref(false) |
|
|
|
const qualityReport = ref('') |
|
|
|
const checkQualityReport = async (row) => { |
|
|
|
showQualityReport.value = true |
|
|
|
qualityReport.value = `${getReportUrl()}/purchasereceiptReport?asnNumber=${row.asnNumber}` |
|
|
|
} |
|
|
|
|
|
|
|
/** 添加/修改操作 */ |
|
|
|
// const formRef = ref() |
|
|
|
// const openForm = async (type : string, row ?: number) => { |
|
|
@ -289,12 +378,11 @@ const list = ref([]) |
|
|
|
* tableForm方法 |
|
|
|
*/ |
|
|
|
const tableFormKeys = {} |
|
|
|
InspectionJobDetail.allSchemas.tableFormColumns.forEach(item => { |
|
|
|
InspectionJobDetail.allSchemas.tableFormColumns.forEach((item) => { |
|
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
|
}) |
|
|
|
const tableData = ref([]) |
|
|
|
|
|
|
|
|
|
|
|
// 主子数据 提交 |
|
|
|
const submitForm = async (formType, data) => { |
|
|
|
// return |
|
|
@ -320,7 +408,6 @@ const list = ref([]) |
|
|
|
importFormRef.value.open() |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 筛选提交 |
|
|
|
const searchFormClick = (searchData) => { |
|
|
|
tableObject.params = { |
|
|
|