| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <!-- <search ref="search" @search="search"></search> -->
- <seek-page :seekList="seekList" @search="search" ref="search"></seek-page>
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- :pageSize="20"
- :pageSizes="[20, 30, 40, 50, 100]"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- >
- <!-- 表头工具栏 -->
- <!-- <template v-slot:toolbar>-->
- <!-- <el-button size="small" type="primary" icon="el-icon-plus" class="ele-btn-icon" @click="openEdit('add')">-->
- <!-- 添加-->
- <!-- </el-button>-->
- <!-- </template>-->
- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openDetails(row)"
- >{{ row.code }}</el-link
- >
- </template>
- <!-- <template v-slot:qualityPlanName="{ row }">-->
- <!-- <div v-if="row.qualityPlanId"> {{ row.qualityPlanName }}</div>-->
- <!-- <div v-else><el-tag size="mini">自建</el-tag></div>-->
- <!-- </template>-->
- <template v-slot:sourceCode="{ row }">
- <!-- <div v-if="row.qualityType == 1">{{ row.qualityPlanCode }}</div>
- <div v-if="row.qualityType == 2">{{ row.workOrderCode }}</div>
- <div v-if="row.qualityType == 3">{{ row.qualityPlanCode }}</div>
- <div v-if="row.qualityType == 6">{{ row.qualityPlanCode }}</div> -->
- <div>{{
- row.qualityPlanCode ? row.qualityPlanCode : row.workOrderCode
- }}</div>
- </template>
- <template v-slot:files="scope">
- <el-link
- v-for="link in scope.row.files"
- :key="link.id"
- type="primary"
- :underline="false"
- @click="downloadFile(link)"
- >{{ link.name }}</el-link
- >
- </template>
- <template v-slot:qualityType="{ row }">{{
- getDictValue('质检计划类型', row.qualityType)
- }}</template>
- <template v-slot:qualityMode="{ row }">{{
- getDictValue('取样类型', row.qualityMode)
- }}</template>
- <template v-slot:accessory="scope">
- <el-link
- v-for="link in scope.row.accessory"
- :key="link.id"
- type="primary"
- :underline="false"
- @click="downloadFile(link)"
- >{{ link.name }}</el-link
- >
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- v-if="row.status == 0"
- @click="openEdit('edit', row)"
- >报工</el-link
- >
- <el-link
- type="primary"
- :underline="false"
- v-if="row.status == 0"
- @click="openTransfer(row.id)"
- >转派</el-link
- >
- <el-link type="primary" :underline="false" @click="openNumber(row)"
- >合格证</el-link
- >
- <jimureportBrowse
- style="display: inline-block; margin-left: 5px"
- v-if="row.status == 1"
- text="质检报告"
- :businessId="row.id"
- businessCode="qmsqualityinspectionprint"
- ></jimureportBrowse>
- <!-- 质检报告审批 -->
- <el-link v-if="row.status == 1 && isReportApproval == 1 && !row.reportApprovalStatus" type="primary" :underline="false" @click="reportApprovalSubmit(row)"
- >质检报告审批</el-link
- >
- <el-popconfirm
- class="ele-action"
- title="确定要关闭吗?"
- @confirm="close(row)"
- v-if="row.status == 0 && row.qualityType == 2"
- >
- <template v-slot:reference>
- <el-link type="warning" :underline="false"> 关闭 </el-link>
- </template>
- </el-popconfirm>
- <!-- <el-link type="primary" :underline="false">
- 质检报告
- </el-link>-->
- <!-- <el-popconfirm class="ele-action" title="确定要删除吗?" @confirm="remove(row)" v-if="row.status == 0">
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>-->
- </template>
- </ele-pro-table>
- <!-- -->
- <!-- <el-dialog title="修改" :visible.sync="certificateVisible" width="25%" :before-close="handleClose">
- <el-form :inline="true" :model="formData" class="demo-form-inline">
- <el-form-item label="合格证号">
- <el-input v-model="formData.certificateNumber" placeholder="请输入"></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="handleClose">取 消</el-button>
- <el-button type="primary" @click="handleSubmit">确 定</el-button>
- </span>
- </el-dialog>-->
- <!-- -->
- </el-card>
- <Certificate
- @search="search"
- v-if="addOpen"
- :rowData="rowData"
- :addOpen="addOpen"
- @closeModel="closeModel"
- />
- <Transfer
- v-if="transferVisible"
- :transferVisible.sync="transferVisible"
- @success="transferConfirm"
- :id="transferId"
- ></Transfer>
- <process-submit-dialog
- api-fun-name="qmsReportApprovalAPI"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- :isCloseRefresh="false"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="search"
- ></process-submit-dialog>
- </div>
- </template>
- <script>
- import Certificate from './components/Certificate.vue';
- import search from './components/search.vue';
- import jimureportBrowse from '@/components/jimureport/browseModal.vue';
- import Transfer from './components/transfer.vue';
- import processSubmitDialog from '@/components/processSubmitDialog/processSubmitDialog.vue';
- import {
- getList,
- removeItem,
- updateCertificateNumber,
- closeWork,
- verificationQualityInspector
- } from '@/api/inspectionWork';
- import dictMixins from '@/mixins/dictMixins';
- import { getFile } from '@/api/system/file';
- import { getByCode } from '@/api/system/dictionary-data';
- import { parameterGetByCode } from '@/api/main/index';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import { getCategoryByCode } from '@/api/main/index';
- export default {
- mixins: [dictMixins,tabMixins],
- components: {
- search,
- jimureportBrowse,
- Certificate,
- Transfer,
- processSubmitDialog
- },
- data() {
- return {
- cacheKeyUrl: 'qsm-c2e9664a-inspectionWork',
- columns: [
- {
- type: 'index',
- columnKey: 'index',
- align: 'center',
- label: '序号',
- width: 55,
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '质检工单编码',
- slot: 'code',
- align: 'center',
- width: 180,
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'name',
- slot: 'name',
- width: 120,
- label: '质检工单名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- label: '来源单号',
- prop: 'sourceCode',
- slot: 'sourceCode',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- label: '类型',
- prop: 'qualityType',
- slot: 'qualityType',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- label: '质检方式',
- prop: 'qualityMode',
- slot: 'qualityMode',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'qualityName',
- label: '质检人',
- align: 'center',
- width: 120,
- showOverflowTooltip: true,
- formatter: (row) => {
- if (row.qualityName) {
- return row.qualityName;
- }
- return row.qualityNames || '';
- }
- },
- {
- prop: 'qualityTime',
- label: '质检时间',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'productCode',
- width: 120,
- label: '编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'productName',
- width: 120,
- label: '名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'brandNo',
- label: '牌号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'produceTaskName',
- label: '工序',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'total',
- label: '总数量',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'qualifiedNumber',
- label: '合格数',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'qualificationRate',
- label: '合格率',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'noQualifiedNumber',
- label: '不合格数',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'noQualificationRate',
- label: '不合格率',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'hours',
- label: '工时',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- label: '附件',
- prop: 'accessory',
- align: 'center',
- slot: 'accessory',
- showOverflowTooltip: true
- },
- {
- label: '创建时间',
- prop: 'createTime',
- align: 'center',
- width: 160
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- width: 80,
- formatter: (row, column, cellValue) => {
- return cellValue == 0
- ? '未报工'
- : cellValue == 1
- ? '已报工'
- : '已关闭';
- },
- fixed: 'right'
- },
- {
- columnKey: 'action',
- label: '操作',
- align: 'center',
- width: 200,
- resizable: false,
- slot: 'action',
- fixed: 'right'
- }
- ],
- formData: {
- certificateNumber: ''
- },
- processSubmitDialogFlag: false,
- // certificateVisible: false,
- rowData: {},
- typeList: [], //类型列表
- qualityMode: [], //取样类型
- statusList: [
- {
- value: 0,
- label: '未报工'
- },
- {
- value: 1,
- label: '已报工'
- }
- ],
- addOpen: false,
- transferVisible: false,
- transferId: '',
- isReportApproval: 0
- };
- },
- created() {
- this.requestDict('质检计划类型');
- this.requestDict('不良品处理类型');
- this.requestDict('取样类型');
- this.getCode()
- this.getTnspectionPlanType();
- this.getQualityMethodCode();
- },
- computed: {
- seekList() {
- return [
- {
- label: '工单编码:',
- value: 'code',
- type: 'input',
- placeholder: ''
- },
- {
- label: '工单名称:',
- value: 'name',
- type: 'input',
- placeholder: ''
- },
- {
- label: '来源单号:',
- value: 'sourceCode',
- type: 'input',
- placeholder: ''
- },
- {
- label: '类型:',
- value: 'qualityType',
- type: 'select',
- placeholder: '',
- planList: this.typeList
- },
- {
- label: '质检方式:',
- value: 'qualityMode',
- type: 'select',
- placeholder: '',
- planList: this.qualityMode
- },
- {
- label: '编码:',
- value: 'productCode',
- type: 'input',
- placeholder: ''
- },
- {
- label: '名称:',
- value: 'productName',
- type: 'input',
- placeholder: ''
- },
- {
- label: '质检人:',
- value: 'qualityName',
- type: 'input',
- placeholder: ''
- },
- {
- label: '状态:',
- value: 'status',
- type: 'select',
- placeholder: '',
- planList: this.statusList
- }
- ];
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- methods: {
- reportApprovalSubmit(res) {
- console.log(res, 'res');
- this.processSubmitDialogFlag = true;
- this.$nextTick(async () => {
- let params = {
- businessId: res.id,
- businessKey: 'qms_report_approval',
- formCreateUserId: res.createUserId,
- variables: {
- businessCode: res.code,
- businessName: res.name,
- businessType: '质检报告单'
- }
- };
- console.log(this.clientEnvironmentId, 'parathis.clientEnvironmentIdms');
- if (this.clientEnvironmentId == 5) {
- // 嘉实环境
- const data = await getCategoryByCode(res.productCode);
- // 判断品类
- if (data && data.categoryLevelCodePath?.includes('W3-209')) {
- // 药品
- params.businessKey = 'qms_report_approval1';
- } else {
- // 器械
- params.businessKey = 'qms_report_approval';
- }
- }
- this.$refs.processSubmitDialogRef.init(params);
- });
- },
- getCode() {
- // 质检报告审批(0:不需要审批;1:需要审批)
- parameterGetByCode({
- code: 'qms_report_approval'
- }).then((res) => {
- console.log(res, 'qms_report_approval');
- console
- this.isReportApproval = res.value;
- console.log('isReportApproval', this.isReportApproval)
- });
- },
- datasource({ page, where, limit }) {
- return getList({
- ...where,
- pageNum: page,
- size: limit
- // status: 0,
- // qualityMode:'02'
- });
- },
- search(where) {
- this.$refs.table.reload({
- where: where,
- page: 1
- });
- },
- async openEdit(type, row) {
- const menusList = this.$store.state.user.menus;
- let found = false;
- if (type == 'edit') {
- const code = await verificationQualityInspector(row.id);
- if (code == '-1') {
- return;
- }
- }
- for (const item of menusList) {
- if (item.children) {
- for (const item2 of item.children) {
- if (item2.path === '/inspectionWork/edit') {
- found = true;
- const id = type !== 'add' ? row.id : '';
- const qualityType = type !== 'add' ? row.qualityType : null;
- const qualityTimeStart = row.qualityTimeStart || '';
- // qualityType是质检类型 来料,生产
- this.$router.push({
- path: '/inspectionWork/edit',
- query: {
- type,
- id,
- qualityType,
- qualityTimeStart
- }
- });
- return;
- }
- }
- }
- }
- if (!found) {
- this.$message.error('请到角色管理配置菜单权限!');
- }
- },
- // 打开详情
- openDetails(row) {
- console.log(row, 'row 000');
- let id = row.id;
- this.$router.push({
- path: '/inspectionWork/details',
- query: { id, path: '/inspectionWork', name: '工单' }
- });
- },
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- remove(row) {
- removeItem([row.id])
- .then((message) => {
- this.$message.success(message);
- this.done();
- })
- .catch((e) => {});
- },
- done() {
- this.$refs.search.search();
- },
- openNumber(row) {
- this.formData.certificateNumber = row.certificateNumber;
- this.rowData = row;
- this.addOpen = true;
- // this.certificateVisible = true
- },
- closeModel() {
- this.addOpen = false;
- },
- async close(row) {
- console.log(row);
- await closeWork(row);
- this.done();
- },
- // handleClose() {
- // this.certificateVisible = false;
- // },
- // async handleSubmit() {
- // this.rowData.certificateNumber = this.formData.certificateNumber;
- // this.rowData.qualityTimeStart = new Date(this.rowData.qualityTimeStart);
- // this.rowData.qualityTimeEnd = new Date(this.rowData.qualityTimeEnd);
- // const data = await updateCertificateNumber(this.rowData)
- // if (data) {
- // this.$message.success('修改成功!');
- // this.done();
- // }
- // this.certificateVisible = false;
- // },
- async getTnspectionPlanType() {
- let res = await getByCode('inspection_plan_type');
- if (res?.code == 0) {
- let list = res.data.map((item) => {
- let key = Object.keys(item)[0];
- return { value: key, label: item[key] };
- });
- this.typeList = list;
- }
- },
- async getQualityMethodCode() {
- let res = await getByCode('quality_method_code');
- if (res?.code == 0) {
- let list = res.data.map((item) => {
- let key = Object.keys(item)[0];
- return { value: key, label: item[key] };
- });
- this.qualityMode = list;
- }
- },
- openTransfer(id) {
- this.transferVisible = true;
- this.transferId = id;
- },
- transferConfirm(id) {
- console.log(id);
- this.transferVisible = false;
- this.$message.success('转派成功');
- this.done();
- }
- }
- };
- </script>
|