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.
2634 lines
104 KiB
2634 lines
104 KiB
<template>
|
|
<div class="mod-config">
|
|
<!-- 条件查询 -->
|
|
<el-form :inline="true" label-position="top" :model="searchData">
|
|
<el-form-item :label="'工厂编码'">
|
|
<el-input v-model="searchData.site" clearable style="width: 140px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'检验单号'">
|
|
<el-input v-model="searchData.inspectionNo" clearable style="width: 140px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'单据号'">
|
|
<el-input v-model="searchData.poOrderNo" clearable style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'单据行号'">
|
|
<el-input v-model="searchData.poItemNo" clearable style="width: 75px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'物料编码'">
|
|
<el-input v-model="searchData.partNo" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'物料名称'">
|
|
<el-input v-model="searchData.partDesc" clearable style="width: 200px"></el-input>
|
|
</el-form-item>
|
|
<!-- <el-form-item :label="'SKU'">
|
|
<el-input v-model="searchData.sku" clearable style="width: 120px"></el-input>
|
|
</el-form-item> -->
|
|
<el-form-item :label="'PN'">
|
|
<el-input v-model="searchData.cinvSourceCode" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'规格型号'">
|
|
<el-input v-model="searchData.spec" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-form :inline="true" label-position="top" :model="searchData">
|
|
<el-form-item :label="'供应商'">
|
|
<el-input v-model="searchData.supplierDesc" clearable style="width: 200px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'质检员'">
|
|
<el-input v-model="searchData.inspectorName" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'状态'">
|
|
<el-select v-model="searchData.states" multiple style="width: 340px">
|
|
<el-option label="未开始" value="未开始"></el-option>
|
|
<el-option label="待检验" value="待检验"></el-option>
|
|
<el-option label="待审核" value="待审核"></el-option>
|
|
<el-option label="已完成" value="已完成"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'检验结论'">
|
|
<el-select v-model="searchData.inspectionResult" clearable style="width: 80px">
|
|
<el-option label="合格" value="合格"></el-option>
|
|
<el-option label="不合格" value="不合格"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'处置措施'">
|
|
<el-select v-model="searchData.disposalMeasures" clearable style="width: 90px">
|
|
<el-option
|
|
v-for = "i in disposalMeasuresOptions"
|
|
:key = "i.id"
|
|
:label = "i.disposalMeasures"
|
|
:value = "i.disposalMeasures">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<!-- <el-form-item :label="'采购类型'">
|
|
<el-select v-model="searchData.orderType" clearable style="width: 90px">
|
|
<el-option label="采购订单" value="采购订单"></el-option>
|
|
<el-option label="委外订单" value="委外订单"></el-option>
|
|
</el-select>
|
|
</el-form-item> -->
|
|
<el-form-item :label="'送检类型'">
|
|
<el-select v-model="searchData.submissionType" clearable style="width: 90px">
|
|
<el-option label="厂内使用" value="厂内使用"></el-option>
|
|
<el-option label="外协使用" value="外协使用"></el-option>
|
|
<el-option label="其他" value="其他"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-form :inline="true" label-position="top" :model="searchData">
|
|
<el-form-item :label="'送检日期'">
|
|
<el-date-picker style="width: 160px" v-model="searchData.startDate2" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="开始日期"></el-date-picker>
|
|
-
|
|
<el-date-picker style="width: 160px" v-model="searchData.endDate2" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="结束日期"></el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="'检验时间'">
|
|
<el-date-picker style="width: 160px" v-model="searchData.startDate" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="开始日期"></el-date-picker>
|
|
-
|
|
<el-date-picker style="width: 160px" v-model="searchData.endDate" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="结束日期"></el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="' '">
|
|
<el-button v-if="!authSearch" type="primary" :loading="searchLoading" @click="getDataList">查询</el-button>
|
|
<el-button v-if="!authCheck" type="primary" @click="submitResult">审核</el-button>
|
|
<el-button v-if="!authCancelCheck" type="primary" @click="cancelApproval">取消审核</el-button>
|
|
<el-button v-if="!authDelete" type="primary" @click="deleteModal">删除</el-button>
|
|
<el-button v-if="!authOverLoad" type="primary" @click="overLoadModal">任务重载</el-button>
|
|
<el-button type="primary" @click="printList">打印</el-button>
|
|
<download-excel
|
|
:fields="fields()"
|
|
:data="exportData"
|
|
type="xls"
|
|
:name="exportName"
|
|
:header="exportHeader"
|
|
:footer="exportFooter"
|
|
:fetch="createExportData"
|
|
:before-generate="startDownload"
|
|
:before-finish="finishDownload"
|
|
worksheet="导出信息"
|
|
class="el-button el-button--primary el-button--medium">
|
|
{{ "导出" }}
|
|
</download-excel>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<!-- 检验记录展示列表 -->
|
|
<el-table
|
|
:height="height"
|
|
:data="dataList"
|
|
border
|
|
ref="SQCTable"
|
|
@row-click="SQCClickRow"
|
|
@selection-change="selectionSQC"
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
type="selection"
|
|
header-align="center"
|
|
align="center"
|
|
:selectable="selectFlag"
|
|
width="50">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="state"
|
|
header-align="center"
|
|
align="center"
|
|
label="状态">
|
|
<template slot-scope="scope">
|
|
<div :style="{fontWeight:'bold', color: scope.row.state === '待检验' ? 'red' : scope.row.state === '待审核' ? '#ffa500e0' : scope.row.state === '已完成' ? '#3ac252' : ''}">
|
|
{{ scope.row.state }}
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
v-for="(item,index) in columnList1" :key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed===''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden">
|
|
<template v-if="item.columnProp === 'pictureFlag'">
|
|
<span :style="{ color: scope.row[item.columnProp] === 'Y' ? 'red' : '' }">{{ scope.row[item.columnProp] === 'Y' ? '是' : scope.row[item.columnProp] === 'N' ? '否' : scope.row[item.columnProp] }}</span>
|
|
</template>
|
|
<template v-else>{{ scope.row[item.columnProp] }}</template>
|
|
</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
fixed="right"
|
|
header-align="center"
|
|
align="center"
|
|
width="130"
|
|
label="操作">
|
|
<template slot-scope="scope">
|
|
<el-link style="cursor: pointer" v-if="!authDetail && scope.row.state === '未开始'" @click="actionModal(scope.row)">开始检验</el-link>
|
|
<el-link style="cursor: pointer" v-if="!authDetail && scope.row.state !== '未开始'" @click="detailModal(scope.row)">检验单</el-link>
|
|
<el-link style="cursor: pointer" v-if="!authFile" @click="getFileContentData(scope.row)">工作文件</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 分页-->
|
|
<el-pagination
|
|
@size-change="sizeChangeHandle"
|
|
@current-change="currentChangeHandle"
|
|
:current-page="pageIndex"
|
|
:page-sizes="[20, 50, 100, 200, 500]"
|
|
:page-size="pageSize"
|
|
:total="totalPage"
|
|
layout="total, sizes, prev, pager, next, jumper">
|
|
</el-pagination>
|
|
|
|
<!-- 检验单详情 -->
|
|
<el-dialog title="检验明细清单" :close-on-click-modal="false" v-drag :visible.sync="detailInformationFlag" width="1200px">
|
|
<el-form :inline="true" label-position="top" @keyup.enter.native="getDataList">
|
|
<el-form-item :label="'物料编码'">
|
|
<el-input v-model="detailData.partNo" readonly style="width: 100px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'物料类别'">
|
|
<el-input v-model="detailData.invdefinetype" readonly style="width: 100px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'PN'">
|
|
<el-input v-model="detailData.cinvSourceCode" readonly style="width: 100px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'SKU'">
|
|
<el-input v-model="detailData.sku" readonly style="width: 100px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'物料名称'">
|
|
<el-input v-model="detailData.partDesc" readonly style="width: 300px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'单位'">
|
|
<el-input v-model="detailData.umName" readonly style="width: 60px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<span v-if="detailData.submitFlag === 'Y'" slot="label">协同人员</span>
|
|
<span v-else style="cursor: pointer" slot="label" @click="getOperatorList"><a>协同人员</a></span>
|
|
<el-input v-model="detailData.operatorName" readonly style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<span v-if="detailData.submitFlag === 'Y'" slot="label">责任人</span>
|
|
<span v-else style="cursor: pointer" slot="label" @click="getResponsiblePersonList"><a>责任人</a></span>
|
|
<el-input v-model="detailData.responsiblePersonName" readonly style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-form :inline="true" label-position="top" @keyup.enter.native="getDataList">
|
|
<el-form-item :label="'送检数量'">
|
|
<el-input-number :controls="false" :step="0" v-model="detailData.rollQty" style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'抽样数量'">
|
|
<el-input-number :controls="false" :step="0" v-model="detailData.samplingQty" style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'合格数量'">
|
|
<el-input-number :controls="false" :step="0" :min="0" v-if="detailData.submitFlag === 'Y'" v-model="detailData.passQty" disabled style="width: 85px"></el-input-number>
|
|
<el-input-number :controls="false" :step="0" :min="0" v-else v-model="detailData.passQty" style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'不合格数量'">
|
|
<el-input-number :controls="false" :step="0" :min="0" v-model="detailData.notPassQty" disabled style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'不合格项目数量'">
|
|
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="detailData.unqualifiedQty" disabled style="width: 85px"></el-input-number>
|
|
<el-input-number :controls="false" :step="0" v-else v-model="detailData.unqualifiedQty" style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'批次合格数'">
|
|
<el-input-number :controls="false" :step="0" :min="0" v-model="detailData.batchQualifiedQty" disabled style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item :label="'批次不合格数'">
|
|
<el-input-number :controls="false" :step="0" :min="0" v-model="detailData.notbatchQualifiedQty" disabled style="width: 85px"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item style="margin-top: 13px;margin-left: 365px">
|
|
<el-button @click="getFileContentData(detailData)">
|
|
<svg t="1739002974630" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="59598" width="22" height="22"><path d="M807.3216 889.5488H221.184c-78.7456 0-142.848-64.1024-142.848-142.848V286.976c0-78.7456 64.1024-142.848 142.848-142.848h178.8416c20.7872 0 40.7552 8.8064 54.784 24.1664l77.568 85.0944c2.4064 2.6112 5.8368 4.1472 9.3696 4.1472h265.5232c78.7456 0 142.848 64.1024 142.848 142.848v346.2656c0.0512 78.7968-64.0512 142.8992-142.7968 142.8992zM221.184 205.568c-44.9024 0-81.408 36.5056-81.408 81.408v459.6736c0 44.9024 36.5056 81.408 81.408 81.408h586.1376c44.9024 0 81.408-36.5056 81.408-81.408V400.4352c0-44.9024-36.5056-81.408-81.408-81.408h-265.5232c-20.7872 0-40.7552-8.8064-54.784-24.1664L409.3952 209.7152c-2.4064-2.6112-5.8368-4.1472-9.3696-4.1472H221.184z" fill="#6FB1F9" p-id="59599"></path><path d="M466.0224 453.8368H249.0368c-16.9472 0-30.72-13.7728-30.72-30.72s13.7728-30.72 30.72-30.72h216.9856c16.9472 0 30.72 13.7728 30.72 30.72s-13.7728 30.72-30.72 30.72z" fill="#6FB1F9" p-id="59600"></path></svg>
|
|
</el-button>
|
|
<el-button @click="openSubDetailImport">
|
|
<svg t="1739002903501" class="icon" viewBox="0 0 1550 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="50418" width="22" height="22"><path d="M985.000229 727.917714c20.48 0 34.113829-13.663086 34.113828-34.143085 0-10.24-3.393829-17.056914-10.24-23.873829l-204.8-204.8c-6.816914-6.846171-13.633829-10.24-23.873828-10.24-10.24 0-17.086171 3.393829-23.903086 10.24l-204.8 204.8c-6.816914 6.816914-10.24 13.633829-10.24 23.873829 0 20.48 13.663086 34.143086 34.143086 34.143085 10.24 0 17.056914-3.423086 23.873828-10.24l146.783086-146.783085v395.966171c0 20.48 13.663086 34.113829 34.143086 34.113829s34.113829-13.633829 34.113828-34.113829V570.894629l146.783086 146.783085c6.816914 6.816914 13.663086 10.24 23.903086 10.24z m282.799542-353.045943c0-10.24 1.287314-17.086171 0-27.296914C1240.502857 128.117029 1043.0464 29.257143 858.199771 29.257143 701.205943 29.257143 564.662857 117.994057 496.405943 247.720229 469.079771 240.874057 441.782857 234.057143 414.485943 234.057143 281.365943 234.057143 175.542857 307.112229 175.542857 440.232229c0 17.056914 3.423086 34.113829 6.816914 51.2C97.514057 535.786057 29.257143 585.5232 29.257143 723.031771c0 170.656914 136.543086 277.942857 307.2 277.942858H585.142857c20.48 0 34.143086-13.633829 34.143086-34.113829S605.622857 932.717714 585.142857 932.717714h-248.685714c-133.12 0-238.943086-76.565943-238.943086-209.685943 0-82.797714 37.566171-131.657143 105.325714-166.765714l58.046172-20.48-13.663086-61.44c-3.423086-10.24-3.423086-23.873829-3.423086-34.113828 0-95.583086 75.103086-137.918171 170.686172-137.918172 20.48 0 37.536914 3.423086 58.016914 10.24l54.623086 20.48 27.296914-51.2c61.44-112.64 179.317029-198.100114 303.776914-184.32 184.846629 20.48 309.511314 71.68 341.343086 250.0608 1.199543 6.787657 0 10.24 0 17.056914v6.846172l-3.423086 47.776914 44.383086 20.48c110.094629 34.6112 222.354286 143.36 222.354286 249.183086 0 150.176914-122.88 243.799771-273.056914 243.799771h-214.571886c-20.48 0-34.113829 13.663086-34.113829 34.143086s13.633829 34.113829 34.113829 34.113829h214.571886c187.713829 0 341.313829-124.342857 341.313828-312.056686 0-144.530286-121.270857-269.663086-263.314286-314.046172z" fill="#6C5FFC" p-id="50419"></path></svg>
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-form :inline="true" label-position="top">
|
|
<el-form-item :label="'检验结论'">
|
|
<el-select v-if="detailData.submitFlag === 'Y'" v-model="detailData.inspectionResult" disabled style="width: 100px" placeholder="请选择">
|
|
<el-option label="合格" value="合格"></el-option>
|
|
<el-option label="不合格" value="不合格"></el-option>
|
|
</el-select>
|
|
<el-select v-else v-model="detailData.inspectionResult" @change="resultChange" style="width: 100px" placeholder="请选择">
|
|
<el-option label="合格" value="合格"></el-option>
|
|
<el-option label="不合格" value="不合格"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'质检备注'">
|
|
<el-input v-if="detailData.submitFlag === 'Y'" v-model="detailData.inspectionRemark" disabled style="width: 293px"></el-input>
|
|
<el-input v-else v-model="detailData.inspectionRemark" style="width: 293px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item v-show="detailData.inspectionResult === '不合格'" style="margin-top: 5px">
|
|
<el-form-item :label="'处置措施'">
|
|
<el-select v-if="detailData.submitFlag === 'Y'" clearable v-model="detailData.disposalMeasures" disabled style="width: 100px">
|
|
<el-option
|
|
v-for="i in disposalMeasuresOptions"
|
|
:key="i.id"
|
|
:label="i.disposalMeasures"
|
|
:value="i.disposalMeasures">
|
|
</el-option>
|
|
</el-select>
|
|
<el-select v-else clearable v-model="detailData.disposalMeasures" style="width: 100px">
|
|
<el-option
|
|
v-for="i in disposalMeasuresOptions"
|
|
:key="i.id"
|
|
:label="i.disposalMeasures"
|
|
:value="i.disposalMeasures">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'处置说明'">
|
|
<el-input v-if="detailData.submitFlag === 'Y'" v-model="detailData.disposalRemark" disabled style="width: 293px"></el-input>
|
|
<el-input v-else v-model="detailData.disposalRemark" style="width: 293px"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div class="rq">
|
|
<el-table
|
|
:height="500"
|
|
:data="detailList"
|
|
border
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="center"
|
|
:min-width="90"
|
|
label="操作">
|
|
<template slot-scope="scope">
|
|
<el-button class="el-icon-picture" v-if="scope.row.imageDetailNum > 0" type="success" @click="uploadImageModal(scope.row)"></el-button>
|
|
<el-button class="el-icon-picture" v-else type="primary" @click="uploadImageModal(scope.row)"></el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
v-for="(item,index) in detailColumnList"
|
|
:key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed===''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden">
|
|
<template v-if="item.columnProp === 'pictureFlag'">
|
|
<span :style="{ color: scope.row[item.columnProp] === 'Y' ? 'red' : '' }">{{ scope.row[item.columnProp] === 'Y' ? '是' : scope.row[item.columnProp] === 'N' ? '否' : scope.row[item.columnProp] }}</span>
|
|
</template>
|
|
<template v-else>{{ scope.row[item.columnProp] }}</template>
|
|
</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="right"
|
|
:min-width="80"
|
|
label="实测值">
|
|
<template slot-scope="scope">
|
|
<el-input :ref="`textValue${scope.$index}`" v-if="scope.row.valueTypeDb === 'N'" v-model="scope.row.numberValue" @keyup.enter.native="focusNextInput(scope.$index, 'textValue')" type="number" @change="updateItemResult(scope.row)" style="height: 11px; width: 98%"></el-input>
|
|
<el-input :ref="`textValue${scope.$index}`" v-else v-model="scope.row.textValue" @keyup.enter.native="focusNextInput(scope.$index, 'textValue')" style="height: 11px; width: 98%"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="center"
|
|
:min-width="80"
|
|
label="检验明细">
|
|
<template slot-scope="scope">
|
|
<el-button v-if="scope.row.subDetailRecordNum > 0" type="success" @click="subDetailModal(scope.row)">点击输入</el-button>
|
|
<el-button v-else type="primary" @click="subDetailModal(scope.row)">点击输入</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="right"
|
|
:min-width="80"
|
|
label="抽样数量">
|
|
<template slot-scope="scope">
|
|
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.samplingQty" disabled style="height: 11px; width:98%"></el-input-number>
|
|
<el-input-number :controls="false" :step="0" v-else :ref="`samplingQty${scope.$index}`" v-model="scope.row.samplingQty" @keyup.enter.native="focusNextInput(scope.$index, 'samplingQty')" style="height: 11px; width: 98%"></el-input-number>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="right"
|
|
:min-width="80"
|
|
label="不合格数量">
|
|
<template slot-scope="scope">
|
|
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.unqualifiedQuantity" disabled style="height: 11px; width:98%"></el-input-number>
|
|
<el-input-number :controls="false" :step="0" v-else :ref="`unqualifiedQuantity${scope.$index}`" v-model="scope.row.unqualifiedQuantity" @keyup.enter.native="focusNextInput(scope.$index, 'unqualifiedQuantity')" style="height: 11px; width: 98%"></el-input-number>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop=""
|
|
header-align="center"
|
|
align="center"
|
|
:min-width="90"
|
|
label="项目检验结论">
|
|
<template slot-scope="scope">
|
|
<el-select :class="{redElSelect:scope.row.itemResult === 'N', greenElSelect:scope.row.itemResult === 'Y'}" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.itemResult" disabled style="height: 11px;padding: 0px">
|
|
<el-option label="合格" value="Y" style="color: green"></el-option>
|
|
<el-option label="不合格" value="N" style="color: red"></el-option>
|
|
</el-select>
|
|
<el-select :class="{redElSelect:scope.row.itemResult === 'N', greenElSelect:scope.row.itemResult === 'Y'}" v-else v-model="scope.row.itemResult" style="height: 11px;padding: 0px" placeholder="合格">
|
|
<el-option label="合格" value="Y" style="color: green"></el-option>
|
|
<el-option label="不合格" value="N" style="color: red"></el-option>
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<el-footer style="height:40px;margin-top: 20px;text-align:center">
|
|
<el-button v-if="detailData.state === '待检验'" type="primary" :loading="transferLoadFlag" @click="Transfer('1')">分批保存</el-button>
|
|
<el-button type="primary" @click="detailInformationFlag=false">关闭</el-button>
|
|
<el-button v-if="detailData.state === '待检验' || detailData.state === '待审核'" type="danger" :loading="transferLoadFlag" style="margin-left: 40px" @click="Transfer('2')">最终检验完成</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 子明细信息 -->
|
|
<el-dialog title="子明细信息" :close-on-click-modal="false" v-drag :visible.sync="subDetailFlag" width="1102px">
|
|
<el-button type="success" icon="el-icon-plus" size="mini" @click="handleAddBtn(subDetailData)">添加</el-button>
|
|
<el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDeleteBtn(subDetailData)">删除</el-button>
|
|
<el-button type="primary" icon="el-icon-more" size="mini" @click="batchHandleAdd(subDetailData)">批量新增</el-button>
|
|
<div class="rq">
|
|
<el-table
|
|
:height="400"
|
|
:data="templateTableData"
|
|
border
|
|
v-loading="subDetailLoading"
|
|
element-loading-text="拼命加载中"
|
|
:row-class-name="rowClassName"
|
|
@selection-change="handleDetailSelectionChange"
|
|
style="width: 100%;">
|
|
<el-table-column type="selection" align="center" width="40"></el-table-column>
|
|
<el-table-column label="序号" align="center" prop="num" width="50"></el-table-column>
|
|
<el-table-column prop="samplingLocation" header-align="center" align="center" :required="true" label="抽样位置A" width="120">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].samplingLocation" readonly placeholder="请输入抽样位置A"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `a`" v-model="templateTableData[row.xh-1].samplingLocation" @keyup.enter.native="nextFocus1(row.xh-1)" placeholder="请输入抽样位置A"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="samplingLocationB" header-align="center" align="center" :required="true" label="抽样位置B" width="120">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].samplingLocationB" readonly placeholder="请输入抽样位置B"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `b`" v-model="templateTableData[row.xh-1].samplingLocationB" @keyup.enter.native="nextFocus2(row.xh-1)" placeholder="请输入抽样位置B"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="subDetailValue" header-align="center" align="center" :required="true" label="实测值A" width="150">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValue" readonly placeholder="请输入实测值A"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `c`" v-model="templateTableData[row.xh-1].subDetailValue" @keyup.enter.native="nextFocus3(row.xh-1)" placeholder="请输入实测值A"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="subDetailValueB" header-align="center" align="center" :required="true" label="实测值B" width="150">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueB" readonly placeholder="请输入实测值B"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `d`" v-model="templateTableData[row.xh-1].subDetailValueB" @keyup.enter.native="nextFocus4(row.xh-1)" placeholder="请输入实测值B"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="subDetailValueC" header-align="center" align="center" :required="true" label="实测值C" width="150">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueC" readonly placeholder="请输入实测值C"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `e`" v-model="templateTableData[row.xh-1].subDetailValueC" @keyup.enter.native="nextFocus5(row.xh-1)" placeholder="请输入实测值C"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="subDetailValueD" header-align="center" align="center" :required="true" label="实测值D" width="150">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueD" readonly placeholder="请输入实测值D"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `f`" v-model="templateTableData[row.xh-1].subDetailValueD" @keyup.enter.native="nextFocus6(row.xh-1)" placeholder="请输入实测值D"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="subDetailValueE" header-align="center" align="center" :required="true" label="实测值E" width="150">
|
|
<template slot-scope="{row}">
|
|
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueE" readonly placeholder="请输入实测值E"></el-input>
|
|
<el-input v-else :ref="`${row.xh-1}` + `g`" v-model="templateTableData[row.xh-1].subDetailValueE" @keyup.enter.native="nextFocus7(row.xh-1)" placeholder="请输入实测值E"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-pagination
|
|
@size-change="sizeChangeHandle2"
|
|
@current-change="currentChangeHandle2"
|
|
:current-page="pageIndex2"
|
|
:page-sizes="[20, 50, 100, 200, 500]"
|
|
:page-size="pageSize2"
|
|
:total="tableData.length"
|
|
layout="total, sizes, prev, pager, next, jumper">
|
|
</el-pagination>
|
|
</div>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button v-if="detailData.submitFlag !== 'Y'" type="primary" :loading="subDetailVisiable" @click="saveSubDetailResult">保存</el-button>
|
|
<el-button type="primary" @click="subDetailFlag = false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 人员清单 -->
|
|
<el-dialog title="人员清单" :close-on-click-modal="false" v-drag :visible.sync="operatorModelFlag" width="820px">
|
|
<div class="rq">
|
|
<el-form :inline="true" label-position="top" :model="operatorData">
|
|
<el-form-item v-if="operatorData.flag !== '2'" :label="'所属角色'">
|
|
<el-select v-model="operatorData.roleId" placeholder="请选择" style="width: 120px">
|
|
<el-option
|
|
v-for="i in roleList"
|
|
:key="i.roleId"
|
|
:label="i.roleName"
|
|
:value="i.roleId">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'用户编码'">
|
|
<el-input v-model="operatorData.adminID" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'用户姓名'">
|
|
<el-input v-model="operatorData.adminName" clearable style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="' '">
|
|
<el-button type="primary" @click="getOperatorList2">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table
|
|
:height="300"
|
|
:data="operatorList"
|
|
ref="operatorTable"
|
|
@row-click="operatorClickRow"
|
|
@selection-change="selectionChangeHandle2"
|
|
border
|
|
style="width: 100%;">
|
|
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>
|
|
<el-table-column
|
|
v-for="(item,index) in operatorDetailList"
|
|
:key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed===''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden">
|
|
<template v-if="item.columnProp === 'pictureFlag'">
|
|
<span :style="{ color: scope.row[item.columnProp] === 'Y' ? 'red' : '' }">{{ scope.row[item.columnProp] === 'Y' ? '是' : scope.row[item.columnProp] === 'N' ? '否' : scope.row[item.columnProp] }}</span>
|
|
</template>
|
|
<template v-else>{{ scope.row[item.columnProp] }}</template>
|
|
</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<el-footer style="height:40px;margin-top: 20px;text-align:center">
|
|
<el-button type="primary" @click="confirmOperator">确认</el-button>
|
|
<el-button type="primary" @click="operatorModelFlag = false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 配置项目设备 -->
|
|
<el-dialog title="检验项目" :close-on-click-modal="false" v-drag :visible.sync="ItemObjectModelFlag" width="666px">
|
|
<div class="rq">
|
|
<el-table :height="350" :data="itemObjectList" border style="width: 100%">
|
|
<el-table-column
|
|
v-for="(item,index) in itemObjectColumnList"
|
|
:key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed===''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden">
|
|
<template v-if="item.columnProp === 'pictureFlag'">
|
|
<span :style="{ color: scope.row[item.columnProp] === 'Y' ? 'red' : '' }">{{ scope.row[item.columnProp] === 'Y' ? '是' : scope.row[item.columnProp] === 'N' ? '否' : scope.row[item.columnProp] }}</span>
|
|
</template>
|
|
<template v-else>{{ scope.row[item.columnProp] }}</template>
|
|
</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column header-align="center" align="center" :min-width="100" label="设备">
|
|
<template slot-scope="scope">
|
|
<el-select v-model="scope.row.equipmentNo" style="height: 11px" placeholder="请选择设备">
|
|
<el-option
|
|
v-for="i in scope.row.objectList"
|
|
:key="i.objectID"
|
|
:label="i.objectDesc"
|
|
:value="i.objectID">
|
|
</el-option>
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<el-footer style="height:35px;margin-top: 15px;text-align:center">
|
|
<el-button type="primary" @click="actionModal2">保存</el-button>
|
|
<el-button type="primary" @click="ItemObjectModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 批量新增子明细 -->
|
|
<el-dialog title="批量新增" :close-on-click-modal="false" v-drag :visible.sync="batchHandleAddModalFlag" width="510px">
|
|
<el-form :inline="true" label-position="top">
|
|
<el-form-item :label="'默认抽样位置A'">
|
|
<el-input v-model="batchAddData.samplingLocation" style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'默认抽样位置B'">
|
|
<el-input v-model="batchAddData.samplingLocationB" style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'抽样数量'">
|
|
<el-input type="number" v-model="batchAddData.samplingNumber" style="width: 150px"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="batchHandleAddModal">保存</el-button>
|
|
<el-button type="primary" @click="batchHandleAddModalFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 文件清单 -->
|
|
<el-dialog title="文件清单" :close-on-click-modal="false" v-drag :visible.sync="fileFlag" width="800px">
|
|
<el-form :inline="true" label-position="top">
|
|
<el-form-item v-if="detailInformationFlag">
|
|
<el-button type="primary" @click="addUploadFileModal">上传文件</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<sqc-file-table :columns="fileColumnList" :data-list="fileContentList" :query-loading="fileLoading" @refresh="getFileContentData(detailData)"></sqc-file-table>
|
|
<el-footer style="height:35px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="fileFlag = false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist>
|
|
<qcFAIUploadFile ref="qcFAIUploadFile" @refreshPageTables="()=>{this.getFileContentData(this.detailData)}" v-drag></qcFAIUploadFile>
|
|
<comQcItemImageUploadFile ref="comQcItemImageUploadFile" @refreshPageTables2="getInspectionFormData" v-drag></comQcItemImageUploadFile>
|
|
<subDetailUpload @changeEvent="changeMyString" ref="subDetailUpload" @refreshPageTables="getInspectionFormData" v-drag></subDetailUpload>
|
|
<qr-code ref="qrCode"></qr-code>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
qcSQCInspectionSearch,
|
|
sqcDetailSearch,
|
|
inspectorSearch,
|
|
selectSQCSubDetailedRecord,
|
|
saveSQCDetailedRecord,
|
|
checkSQCIsSubmit,
|
|
saveSQCSubDetailed,
|
|
saveSQCSubmitResult,
|
|
sqcRecordDelete,
|
|
disposalMeasuresSearch,
|
|
sqcRecordOverLoad,
|
|
actionSQCInspection,
|
|
getResponsibleOperatorList,
|
|
getSQCItemObjectList,
|
|
cancelSQCApproval,
|
|
} from "@/api/qc/qc.js"
|
|
import Chooselist from '@/views/modules/common/Chooselist_eam'
|
|
import {getInspectionFile} from '@/api/eam/eam_object_list.js'
|
|
import {
|
|
getUserRoleList,
|
|
getOperatorList
|
|
} from '@/api/eam/eam.js'
|
|
import {qcPrint} from '@/api/qc/qcPrint.js'
|
|
import qcFAIUploadFile from "./qc_FAI_upload_file"
|
|
import comQcItemImageUploadFile from "./com_qc_itemImage_upload_file"
|
|
import subDetailUpload from "./sub_detail_upload"
|
|
import QrCode from "../common/QrCode.vue";
|
|
import SqcFileTable from "./SQCFileTable.vue";
|
|
export default {
|
|
components: {
|
|
SqcFileTable,
|
|
QrCode,
|
|
Chooselist,
|
|
qcFAIUploadFile,
|
|
comQcItemImageUploadFile,
|
|
subDetailUpload
|
|
},
|
|
computed: {
|
|
templateTableData () {
|
|
let start = (this.pageIndex2 - 1) * this.pageSize2
|
|
let end = start + this.pageSize2
|
|
if (end > this.tableData.length){
|
|
end = this.tableData.length
|
|
}
|
|
return this.tableData.slice(start,end)
|
|
}
|
|
},
|
|
watch: {
|
|
detailData: {
|
|
deep: true,
|
|
handler: function () {
|
|
const roll = Number(this.detailData.rollQty) || 0
|
|
const samp = Number(this.detailData.samplingQty) || 0
|
|
const pass = Number(this.detailData.passQty) || 0
|
|
this.detailData.notPassQty = samp - pass
|
|
if (this.detailData.inspectionResult === '不合格') {
|
|
if (this.detailData.disposalMeasures === '让步接收' || this.detailData.disposalMeasures === '') {
|
|
this.detailData.batchQualifiedQty = roll
|
|
} else if (this.detailData.disposalMeasures === '挑选使用') {
|
|
this.detailData.batchQualifiedQty = roll - (Number(this.detailData.notPassQty) || 0)
|
|
} else {
|
|
this.detailData.batchQualifiedQty = 0
|
|
}
|
|
} else {
|
|
this.detailData.batchQualifiedQty = roll
|
|
}
|
|
this.detailData.notbatchQualifiedQty = roll - (Number(this.detailData.batchQualifiedQty) || 0)
|
|
}
|
|
},
|
|
detailList: {
|
|
deep: true,
|
|
handler: function () {
|
|
let num2 = 0
|
|
for (let i = 0; i < this.detailList.length; i++) {
|
|
if (this.detailList[i].itemResult === 'N') {
|
|
num2++
|
|
}
|
|
}
|
|
this.detailData.unqualifiedQty = num2
|
|
}
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
exportData: [],
|
|
exportName: "SQC检验录入" + this.dayjs().format('YYYYMMDDHHmmss'),
|
|
exportHeader: ["SQC检验录入"],
|
|
exportFooter: [],
|
|
// 其他数据结构沿用原页面(避免功能缺失),仅替换接口与显示文案
|
|
searchData: {
|
|
page: 1,
|
|
limit: 20,
|
|
site: '',
|
|
inspectionNo: '',
|
|
states: [],
|
|
inspectionResult: '',
|
|
partNo: '',
|
|
partDesc: '',
|
|
supplierDesc: '',
|
|
inspectorName: '',
|
|
startDate: null,
|
|
endDate: null,
|
|
startDate2: null,
|
|
endDate2: null,
|
|
poOrderNo: '',
|
|
poItemNo: '',
|
|
orderType: '',
|
|
submissionType: '',
|
|
cinvSourceCode: '',
|
|
sku: '',
|
|
spec: '',
|
|
disposalMeasures: ''
|
|
},
|
|
dataList: [],
|
|
detailList: [],
|
|
detailData: {
|
|
site: '',
|
|
buNo: '',
|
|
inspectionNo: '',
|
|
partNo: '',
|
|
partDesc: '',
|
|
rollQty: '',
|
|
samplingQty: 0,
|
|
unqualifiedQty: 0,
|
|
unqualifiedQuantity: '',
|
|
disposalMeasures: '',
|
|
disposalRemark: '',
|
|
inspectionResult: '',
|
|
inspectorNo: '',
|
|
inspectorName: '',
|
|
inspectionRemark: '',
|
|
submitFlag: '',
|
|
cinvSourceCode: '',
|
|
sku: '',
|
|
invdefinetype: '',
|
|
umId: '',
|
|
umName: '',
|
|
operator: '',
|
|
operatorName: '',
|
|
responsiblePerson: '',
|
|
responsiblePersonName: '',
|
|
state: '',
|
|
passQty: 0,
|
|
notPassQty: 0,
|
|
batchQualifiedQty: 0,
|
|
notbatchQualifiedQty: 0
|
|
},
|
|
saveInformationData: {
|
|
site: '',
|
|
buNo: '',
|
|
inspectionNo: '',
|
|
disposalMeasures: '',
|
|
disposalRemark: '',
|
|
inspectorNo: '',
|
|
inspectionRemark: '',
|
|
samplingQty: '',
|
|
rollQty: '',
|
|
itemList: [],
|
|
unqualifiedQty: '',
|
|
partNo: '',
|
|
partDesc: '',
|
|
operator: '',
|
|
operatorName: '',
|
|
responsiblePerson: '',
|
|
responsiblePersonName: '',
|
|
subDetailList: [],
|
|
type: '',
|
|
passQty: '',
|
|
notPassQty: '',
|
|
batchQualifiedQty: ''
|
|
},
|
|
fileFlag: false,
|
|
fileColumnList: [
|
|
{
|
|
columnProp: 'fileName',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '文件名称',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: ''
|
|
},
|
|
{
|
|
columnProp: 'createdBy',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '上传人',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: true,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: false
|
|
},
|
|
{
|
|
columnProp: 'createDate',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '上传时间',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: true,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: false
|
|
},
|
|
{
|
|
columnProp: 'orderRef3',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '备注',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: true,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: false
|
|
}
|
|
],
|
|
fileContentList: [],
|
|
fileLoading: false,
|
|
detailInformationFlag: false,
|
|
pageIndex: 1,
|
|
pageSize: 20,
|
|
totalPage: 0,
|
|
pageIndex2: 1,
|
|
pageSize2: 20,
|
|
tableData: [],
|
|
columnList1: [
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1BuDesc',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'site',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '工厂编号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectionNo',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectionNo',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '检验单号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1PartNo',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'partNo',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '物料编码',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1Spec',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'spec',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '规格型号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1PartDesc',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'partDesc',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '物料名称',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 300,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1RollNo',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'rollNo',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '标签条码',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 150,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectionResult',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectionResult',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '检验结论',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1DisposalMeasures',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'disposalMeasures',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '处置措施',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1TaskDate',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'taskDate',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '送检日期',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 130,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectionCycle',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectionCycle',
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: '检验周期(h)',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1OrderNo',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'orderNo',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '工单号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 150,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1SeqNo',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'seqNo',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '派工单号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 150,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1OperationDesc',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'operationDesc',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '工序',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1ResourceDesc',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'resourceDesc',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '机台',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1Sku',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'sku',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: 'SKU',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1CinvSourceCode',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'cinvSourceCode',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: 'PN',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1Invdefinetype',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'invdefinetype',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '物料类别',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1RollQty',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'rollQty',
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: '送检数量',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1SamplingQty',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'samplingQty',
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: '抽样数量',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1UmName',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'umName',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '单位',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectionRemark',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectionRemark',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '质检备注',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 200,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1DisposalRemark',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'disposalRemark',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '处置说明',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 200,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1ActionDate',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'actionDate',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '开始检验时间',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 170,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectorDate',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectorDate',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '检验时间',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 170,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1InspectorName',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'inspectorName',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '质检员',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table1SpecialRequirements',
|
|
tableId: "301015Table1",
|
|
tableName: "SQC检验记录表",
|
|
columnProp: 'specialRequirements',
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: '特殊要求',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 200,
|
|
},
|
|
],
|
|
detailColumnList: [
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2ItemNo',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'itemNo',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '检验项目编码',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2ItemDesc',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'itemDesc',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '检验项目名称',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 150
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2SamplingLevelDesc',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'samplingLevelDesc',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '检验水平',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2SamplingProgrammeDesc',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'samplingProgrammeDesc',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '检验方案',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2MethodName',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'methodName',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '检验方法',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2MethodRemark',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'methodRemark',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '检验方法说明',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 200
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2ObjectDesc',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'objectDesc',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '检测仪器',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301006,
|
|
serialNumber: '301006Table2ObjectDesc',
|
|
tableId: "301006Table2",
|
|
tableName: "检验单明细表",
|
|
columnProp: 'pictureFlag',
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: '图片是否必填',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120,
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2Aql',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'aql',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: 'AQL',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2Ac',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'ac',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: 'AC',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2Re',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 're',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: 'RE',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2DefaultValue',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'defaultValue',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: '标准值',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2MaxValue',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'maxValue',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: '上限值',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2MinValue',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'minValue',
|
|
headerAlign: 'center',
|
|
align: 'right',
|
|
columnLabel: '下限值',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 301015,
|
|
serialNumber: '301015Table2ValueType',
|
|
tableId: '301015Table2',
|
|
tableName: '检验单明细表',
|
|
columnProp: 'valueType',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '检测值类型',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
}
|
|
],
|
|
loadFlag: false,
|
|
transferLoadFlag: false,
|
|
menuId: this.$route.meta.menuId,
|
|
submitData: {
|
|
site: '',
|
|
inspectionNo: '',
|
|
submit_flag: '',
|
|
inspectionResult: '',
|
|
submitList: [],
|
|
updateBy: this.$store.state.user.name,
|
|
type: 'sqc'
|
|
},
|
|
subDetailFlag: false,
|
|
subDetailData: {
|
|
site: '',
|
|
buNo: '',
|
|
inspectionNo: '',
|
|
itemNo: '',
|
|
itemDesc: '',
|
|
defaultValue: '',
|
|
maxValue: '',
|
|
minValue: '',
|
|
valueTypeDb: '',
|
|
subDetailValues: [],
|
|
page: 1,
|
|
limit: 10
|
|
},
|
|
checkedDetail: [],
|
|
subDetailVisiable: false,
|
|
subDetailLoading: false,
|
|
batchHandleAddModalFlag: false,
|
|
batchAddData: {
|
|
samplingLocation: '',
|
|
samplingLocationB: '',
|
|
samplingNumber: ''
|
|
},
|
|
operatorModelFlag: false,
|
|
operatorData: {
|
|
flag: '',
|
|
site: '',
|
|
bu: '',
|
|
adminID: '',
|
|
adminName: '',
|
|
roleName: '',
|
|
roleId: '',
|
|
userName: this.$store.state.user.name
|
|
},
|
|
operatorList: [],
|
|
roleList: [],
|
|
dataListSelections2: [],
|
|
operatorDetailList: [
|
|
{
|
|
columnProp: 'adminID',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '用户账号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: ''
|
|
},
|
|
{
|
|
columnProp: 'adminName',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '用户名称',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: ''
|
|
},
|
|
{
|
|
columnProp: 'email',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '邮箱',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: ''
|
|
},
|
|
{
|
|
columnProp: 'phone',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '手机号',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: ''
|
|
}
|
|
],
|
|
ItemObjectModelFlag: false,
|
|
itemObjectList: [],
|
|
itemObjectColumnList: [
|
|
{
|
|
columnProp: 'itemNo',
|
|
headerAlign: 'center',
|
|
align: 'center',
|
|
columnLabel: '项目编码',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
status: true,
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
columnProp: 'itemDesc',
|
|
headerAlign: 'center',
|
|
align: 'left',
|
|
columnLabel: '项目名称',
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
status: true,
|
|
columnWidth: 200
|
|
}
|
|
],
|
|
actionData: {
|
|
site: '',
|
|
buNo: '',
|
|
inspectionNo: ''
|
|
},
|
|
options: [],
|
|
height: 500,
|
|
searchLoading: false,
|
|
disposalMeasuresOptions: [],
|
|
authSearch: false,
|
|
authCheck: false,
|
|
authCancelCheck: false,
|
|
authDelete: false,
|
|
authOverLoad: false,
|
|
authDetail: false,
|
|
authFile: false,
|
|
|
|
// selections
|
|
submitList: [],
|
|
|
|
// file upload folder
|
|
fileFolder: 'qcSQC',
|
|
}
|
|
},
|
|
methods: {
|
|
// 下方方法体直接复用原页面结构:仅把接口换成 SQC 接口
|
|
getDataList () {
|
|
this.searchLoading = true
|
|
this.searchData.page = this.pageIndex
|
|
this.searchData.limit = this.pageSize
|
|
qcSQCInspectionSearch(this.searchData).then(({data}) => {
|
|
this.searchLoading = false
|
|
if (data && data.code === 0) {
|
|
this.dataList = data.page.list || []
|
|
this.totalPage = data.page.totalCount || 0
|
|
} else {
|
|
this.dataList = []
|
|
this.totalPage = 0
|
|
}
|
|
}).catch(() => {
|
|
this.searchLoading = false
|
|
})
|
|
},
|
|
SQCClickRow (row) {
|
|
this.detailData = row
|
|
this.$refs.SQCTable.toggleRowSelection(row)
|
|
},
|
|
selectionSQC (rows) {
|
|
this.submitList = rows
|
|
},
|
|
detailModal (row) {
|
|
this.detailData.site = row.site
|
|
this.detailData.buNo = row.buNo
|
|
this.detailData.inspectionNo = row.inspectionNo
|
|
this.detailData.partNo = row.partNo
|
|
this.detailData.partDesc = row.partDesc
|
|
this.detailData.rollQty = row.rollQty
|
|
this.detailData.samplingQty = row.samplingQty
|
|
this.detailData.unqualifiedQty = row.unqualifiedQty
|
|
this.detailData.unqualifiedQuantity = row.unqualifiedQuantity
|
|
this.detailData.submitFlag = row.submitFlag
|
|
this.detailData.disposalMeasures = row.disposalMeasures
|
|
this.detailData.disposalRemark = row.disposalRemark
|
|
this.detailData.inspectionResult = row.inspectionResult
|
|
this.detailData.inspectorNo = row.inspectorNo
|
|
this.detailData.inspectorName = row.inspectorName
|
|
this.detailData.inspectionRemark = row.inspectionRemark
|
|
this.detailData.cinvSourceCode = row.cinvSourceCode
|
|
this.detailData.sku = row.sku
|
|
this.detailData.invdefinetype = row.invdefinetype
|
|
this.detailData.umId = row.umId
|
|
this.detailData.umName = row.umName
|
|
this.detailData.operator = row.operator
|
|
this.detailData.operatorName = row.operatorName
|
|
this.detailData.responsiblePerson = row.responsiblePerson
|
|
this.detailData.responsiblePersonName = row.responsiblePersonName
|
|
this.detailData.state = row.state
|
|
if (row.state === '待检验') {
|
|
this.detailData.passQty = row.samplingQty
|
|
} else {
|
|
this.detailData.passQty = row.passQty != null ? row.passQty : 0
|
|
this.detailData.notPassQty = row.notPassQty != null ? row.notPassQty : 0
|
|
}
|
|
this.detailData.batchQualifiedQty = row.batchQualifiedQty != null ? row.batchQualifiedQty : 0
|
|
this.getInspectionFormData()
|
|
this.inspectorSearch()
|
|
this.detailInformationFlag = true
|
|
},
|
|
getInspectionFormData () {
|
|
sqcDetailSearch(this.detailData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.detailList = data.rows || []
|
|
} else {
|
|
this.detailList = []
|
|
}
|
|
})
|
|
},
|
|
actionModal (row) {
|
|
this.actionData = {
|
|
site: row.site,
|
|
buNo: row.buNo,
|
|
inspectionNo: row.inspectionNo
|
|
}
|
|
getSQCItemObjectList(this.actionData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
if (!data.rows || data.rows.length === 0) {
|
|
this.itemObjectList = []
|
|
this.actionModal2()
|
|
} else {
|
|
this.itemObjectList = data.rows
|
|
this.ItemObjectModelFlag = true
|
|
}
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '获取检验项目失败')
|
|
}
|
|
})
|
|
},
|
|
actionModal2 () {
|
|
this.$confirm(`确认开始检验?`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
let tempData = {
|
|
site: this.actionData.site,
|
|
buNo: this.actionData.buNo,
|
|
inspectionNo: this.actionData.inspectionNo,
|
|
actionBy: this.$store.state.user.name,
|
|
state: '待检验',
|
|
equipmentList: this.itemObjectList || []
|
|
}
|
|
actionSQCInspection(tempData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.getDataList()
|
|
this.$message.success('操作成功')
|
|
this.ItemObjectModelFlag = false
|
|
} else {
|
|
this.$message.warning(data.msg || '操作失败')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
Transfer (type) {
|
|
if (type === '2') {
|
|
if (this.detailData.inspectionResult === '' || this.detailData.inspectionResult == null) {
|
|
this.$message.warning('请选择检验结论!')
|
|
return
|
|
}
|
|
if (this.detailData.inspectionResult === '不合格' && (this.detailData.disposalMeasures == null || this.detailData.disposalMeasures === '')) {
|
|
this.$message.warning('请选择处置措施!')
|
|
return
|
|
}
|
|
if (this.detailList.length > 0 && this.detailData.inspectionResult === '不合格') {
|
|
const flag = this.detailList.some(item => item.itemResult === 'N')
|
|
if (!flag) {
|
|
this.$message.warning('请选择不合格项目!')
|
|
return
|
|
}
|
|
}
|
|
if (this.detailData.inspectionResult !== '不合格') {
|
|
this.detailData.disposalMeasures = ''
|
|
this.detailData.disposalRemark = ''
|
|
}
|
|
const picRequiredRow = this.detailList.find(
|
|
item => item.pictureFlag === 'Y' && !(Number(item.imageDetailNum) > 0)
|
|
)
|
|
if (picRequiredRow) {
|
|
this.$message.warning(`项目编码:${picRequiredRow.itemNo || ''}图片必填,请检查!`)
|
|
return
|
|
}
|
|
}
|
|
if (this.detailData.passQty > this.detailData.rollQty) {
|
|
this.$message.warning('合格数量不能大于送检数量!')
|
|
return
|
|
}
|
|
this.saveDetailInformation(type)
|
|
},
|
|
saveDetailInformation (type, options = {}) {
|
|
const keepDetailOpen = options.keepDetailOpen === true
|
|
this.saveInformationData.site = this.detailData.site
|
|
this.saveInformationData.buNo = this.detailData.buNo
|
|
this.saveInformationData.inspectionNo = this.detailData.inspectionNo
|
|
this.saveInformationData.disposalMeasures = this.detailData.disposalMeasures
|
|
this.saveInformationData.disposalRemark = this.detailData.disposalRemark
|
|
this.saveInformationData.inspectorNo = this.$store.state.user.name
|
|
this.saveInformationData.inspectionResult = this.detailData.inspectionResult
|
|
this.saveInformationData.inspectionRemark = this.detailData.inspectionRemark
|
|
this.saveInformationData.rollQty = this.detailData.rollQty
|
|
this.saveInformationData.samplingQty = this.detailData.samplingQty
|
|
this.saveInformationData.unqualifiedQty = this.detailData.unqualifiedQty
|
|
this.saveInformationData.partNo = this.detailData.partNo
|
|
this.saveInformationData.partDesc = this.detailData.partDesc
|
|
this.saveInformationData.operator = this.detailData.operator
|
|
this.saveInformationData.responsiblePerson = this.detailData.responsiblePerson
|
|
this.saveInformationData.itemList = JSON.parse(JSON.stringify(this.detailList))
|
|
this.saveInformationData.passQty = this.detailData.passQty == null ? 0 : this.detailData.passQty
|
|
this.saveInformationData.notPassQty = this.detailData.notPassQty == null ? 0 : this.detailData.notPassQty
|
|
this.saveInformationData.batchQualifiedQty = this.detailData.batchQualifiedQty == null ? 0 : this.detailData.batchQualifiedQty
|
|
this.saveInformationData.type = type
|
|
this.transferLoadFlag = true
|
|
saveSQCDetailedRecord(this.saveInformationData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.getDataList()
|
|
if (keepDetailOpen) {
|
|
this.getInspectionFormData()
|
|
if (!options.skipSuccessMessage) {
|
|
this.$message.success('操作成功')
|
|
}
|
|
} else {
|
|
this.detailInformationFlag = false
|
|
this.$message.success('操作成功')
|
|
}
|
|
if (typeof options.afterSuccess === 'function') {
|
|
options.afterSuccess()
|
|
}
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '操作失败')
|
|
}
|
|
this.transferLoadFlag = false
|
|
}).catch(() => {
|
|
this.transferLoadFlag = false
|
|
})
|
|
},
|
|
disposalMeasuresSearch () {
|
|
disposalMeasuresSearch({ inspectionTypeNo: '105' }).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.disposalMeasuresOptions = data.rows
|
|
}
|
|
})
|
|
},
|
|
getButtonAuthData () {
|
|
let searchFlag = this.isAuth(this.menuId + ':search')
|
|
let checkFlag = this.isAuth(this.menuId + ':check')
|
|
let deleteFlag = this.isAuth(this.menuId + ':delete')
|
|
let detailFlag = this.isAuth(this.menuId + ':detail')
|
|
let fileFlag = this.isAuth(this.menuId + ':file')
|
|
let cancelCheckFlag = this.isAuth(this.menuId + ':cancelCheck')
|
|
let overLoadFlag = this.isAuth(this.menuId + ':overLoad')
|
|
this.authSearch = !searchFlag
|
|
this.authCheck = !checkFlag
|
|
this.authDelete = !deleteFlag
|
|
this.authOverLoad = !overLoadFlag
|
|
this.authDetail = !detailFlag
|
|
this.authFile = !fileFlag
|
|
this.authCancelCheck = !cancelCheckFlag
|
|
},
|
|
getUserRoleList () {
|
|
getUserRoleList().then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.roleList = data.rows
|
|
} else {
|
|
this.roleList = []
|
|
}
|
|
})
|
|
},
|
|
getOperatorList () {
|
|
this.operatorData.flag = '1'
|
|
this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo
|
|
this.$nextTick(() => {
|
|
if (this.$refs.operatorTable) {
|
|
this.$refs.operatorTable.clearSelection()
|
|
}
|
|
})
|
|
let tempDataList = (this.detailData.operator == null ? '' : this.detailData.operator).split(';')
|
|
getOperatorList(this.operatorData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.operatorList = data.rows
|
|
this.operatorList.forEach(val => {
|
|
if (tempDataList.includes(val.adminID)) {
|
|
this.$nextTick(() => this.$refs.operatorTable && this.$refs.operatorTable.toggleRowSelection(val, true))
|
|
}
|
|
})
|
|
this.operatorModelFlag = true
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '加载人员失败')
|
|
}
|
|
})
|
|
},
|
|
getResponsiblePersonList () {
|
|
this.operatorData.flag = '2'
|
|
this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo
|
|
this.$nextTick(() => {
|
|
if (this.$refs.operatorTable) {
|
|
this.$refs.operatorTable.clearSelection()
|
|
}
|
|
})
|
|
let tempDataList = (this.detailData.responsiblePerson == null ? '' : this.detailData.responsiblePerson).split(';')
|
|
getResponsibleOperatorList(this.operatorData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.operatorList = data.rows
|
|
this.operatorList.forEach(val => {
|
|
if (tempDataList.includes(val.adminID)) {
|
|
this.$nextTick(() => this.$refs.operatorTable && this.$refs.operatorTable.toggleRowSelection(val, true))
|
|
}
|
|
})
|
|
this.operatorModelFlag = true
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '加载责任人失败')
|
|
}
|
|
})
|
|
},
|
|
getOperatorList2 () {
|
|
if (this.operatorData.flag === '1') {
|
|
let tempDataList = (this.detailData.operator == null ? '' : this.detailData.operator).split(';')
|
|
getOperatorList(this.operatorData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.operatorList = data.rows
|
|
this.operatorList.forEach(val => {
|
|
if (tempDataList.includes(val.adminID)) {
|
|
this.$nextTick(() => this.$refs.operatorTable && this.$refs.operatorTable.toggleRowSelection(val, true))
|
|
}
|
|
})
|
|
} else {
|
|
this.operatorList = []
|
|
}
|
|
})
|
|
} else {
|
|
let tempDataList = (this.detailData.responsiblePerson == null ? '' : this.detailData.responsiblePerson).split(';')
|
|
getResponsibleOperatorList(this.operatorData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.operatorList = data.rows
|
|
this.operatorList.forEach(val => {
|
|
if (tempDataList.includes(val.adminID)) {
|
|
this.$nextTick(() => this.$refs.operatorTable && this.$refs.operatorTable.toggleRowSelection(val, true))
|
|
}
|
|
})
|
|
} else {
|
|
this.operatorList = []
|
|
}
|
|
})
|
|
}
|
|
},
|
|
operatorClickRow (row) {
|
|
this.$refs.operatorTable.toggleRowSelection(row)
|
|
},
|
|
selectionChangeHandle2 (val) {
|
|
this.dataListSelections2 = val
|
|
},
|
|
confirmOperator () {
|
|
if (this.dataListSelections2.length === 0) {
|
|
this.$message.warning('请勾选人员!')
|
|
return
|
|
}
|
|
if (this.operatorData.flag === '1') {
|
|
this.detailData.operator = ''
|
|
this.detailData.operatorName = ''
|
|
for (let i = 0; i < this.dataListSelections2.length; i++) {
|
|
this.detailData.operatorName = this.detailData.operatorName + ';' + this.dataListSelections2[i].adminName
|
|
this.detailData.operator = this.detailData.operator + ';' + this.dataListSelections2[i].adminID
|
|
}
|
|
if (this.detailData.operator.charAt(0) === ';') {
|
|
this.detailData.operator = this.detailData.operator.substring(1)
|
|
this.detailData.operatorName = this.detailData.operatorName.substring(1)
|
|
}
|
|
} else {
|
|
this.detailData.responsiblePerson = ''
|
|
this.detailData.responsiblePersonName = ''
|
|
for (let i = 0; i < this.dataListSelections2.length; i++) {
|
|
this.detailData.responsiblePersonName = this.detailData.responsiblePersonName + ';' + this.dataListSelections2[i].adminName
|
|
this.detailData.responsiblePerson = this.detailData.responsiblePerson + ';' + this.dataListSelections2[i].adminID
|
|
}
|
|
if (this.detailData.responsiblePerson.charAt(0) === ';') {
|
|
this.detailData.responsiblePerson = this.detailData.responsiblePerson.substring(1)
|
|
this.detailData.responsiblePersonName = this.detailData.responsiblePersonName.substring(1)
|
|
}
|
|
}
|
|
this.operatorData = {
|
|
flag: '',
|
|
site: '',
|
|
bu: '',
|
|
adminID: '',
|
|
adminName: '',
|
|
roleName: '',
|
|
roleId: '',
|
|
userName: this.$store.state.user.name
|
|
}
|
|
this.operatorModelFlag = false
|
|
},
|
|
openSubDetailImport () {
|
|
let currentData = {
|
|
flag: 'SQC',
|
|
site: this.detailData.site,
|
|
buNo: this.detailData.buNo,
|
|
inspectionNo: this.detailData.inspectionNo
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs.subDetailUpload.init(currentData)
|
|
})
|
|
},
|
|
subDetailModal (row) {
|
|
this.subDetailLoading = true
|
|
this.subDetailData = row
|
|
this.pageIndex2 = 1
|
|
selectSQCSubDetailedRecord(this.subDetailData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.tableData = data.rows || []
|
|
}
|
|
this.subDetailLoading = false
|
|
}).catch(() => {
|
|
this.subDetailLoading = false
|
|
})
|
|
this.batchAddData = {
|
|
samplingLocation: '',
|
|
samplingLocationB: '',
|
|
samplingNumber: ''
|
|
}
|
|
this.subDetailFlag = true
|
|
},
|
|
rowClassName ({ row, rowIndex }) {
|
|
row.xh = rowIndex + 1
|
|
row.num = this.tableData.indexOf(row) + 1
|
|
},
|
|
handleDetailSelectionChange (selection) {
|
|
this.checkedDetail = selection
|
|
},
|
|
handleAddBtn (td) {
|
|
checkSQCIsSubmit(td).then(({data}) => {
|
|
if (data && data.flag !== 1) {
|
|
this.tableData.push({
|
|
subDetailValue: '',
|
|
samplingLocation: '',
|
|
samplingLocationB: '',
|
|
subDetailValueB: '',
|
|
subDetailValueC: '',
|
|
subDetailValueD: '',
|
|
subDetailValueE: ''
|
|
})
|
|
} else {
|
|
this.$message.warning('记录已提交!')
|
|
}
|
|
})
|
|
},
|
|
batchHandleAdd (td) {
|
|
checkSQCIsSubmit(td).then(({data}) => {
|
|
if (data && data.flag !== 1) {
|
|
this.batchHandleAddModalFlag = true
|
|
} else {
|
|
this.$message.warning('记录已提交!')
|
|
}
|
|
})
|
|
},
|
|
batchHandleAddModal () {
|
|
const n = parseInt(this.batchAddData.samplingNumber, 10) || 0
|
|
for (let i = 0; i < n; i++) {
|
|
this.tableData.push({
|
|
samplingLocation: this.batchAddData.samplingLocation,
|
|
samplingLocationB: this.batchAddData.samplingLocationB,
|
|
subDetailValue: '',
|
|
subDetailValueB: '',
|
|
subDetailValueC: '',
|
|
subDetailValueD: '',
|
|
subDetailValueE: ''
|
|
})
|
|
}
|
|
this.batchHandleAddModalFlag = false
|
|
},
|
|
handleDeleteBtn (td) {
|
|
checkSQCIsSubmit(td).then(({data}) => {
|
|
if (data && data.flag !== 1) {
|
|
if (this.checkedDetail.length === 0) {
|
|
this.$message.warning('请先选择要删除的数据')
|
|
} else {
|
|
this.$confirm('是否确认删除该子明细记录?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.checkedDetail.forEach((val) => {
|
|
this.tableData.splice(this.tableData.indexOf(val), 1)
|
|
if (this.templateTableData.length === 0) {
|
|
this.pageIndex2--
|
|
}
|
|
})
|
|
this.$message.success('删除成功!')
|
|
}).catch(() => {})
|
|
}
|
|
} else {
|
|
this.$message.warning('记录已提交!')
|
|
}
|
|
})
|
|
},
|
|
saveSubDetailResult () {
|
|
for (let i = 0; i < this.tableData.length; i++) {
|
|
if (this.tableData[i].subDetailValue === '' || this.tableData[i].subDetailValue == null) {
|
|
this.$message.warning('序号' + (i + 1) + '未填写实测值!')
|
|
return
|
|
}
|
|
}
|
|
this.subDetailData.subDetailValues = this.tableData
|
|
this.subDetailVisiable = true
|
|
saveSQCSubDetailed(this.subDetailData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
if (data.count > 0) {
|
|
this.subDetailData.itemResult = 'N'
|
|
this.subDetailData.unqualifiedQuantity = data.count
|
|
}
|
|
if (this.subDetailData.subDetailValues.length > 0) {
|
|
this.subDetailData.subDetailRecordNum = 1
|
|
} else {
|
|
this.subDetailData.subDetailRecordNum = -1
|
|
this.subDetailData.unqualifiedQuantity = 0
|
|
this.subDetailData.itemResult = 'Y'
|
|
}
|
|
this.subDetailFlag = false
|
|
this.tableData = []
|
|
this.$message.success('操作成功')
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '操作失败')
|
|
}
|
|
}).finally(() => {
|
|
this.subDetailVisiable = false
|
|
})
|
|
},
|
|
resultChange () {
|
|
if (this.detailData.inspectionResult === '不合格') {
|
|
this.detailData.passQty = 0
|
|
}
|
|
},
|
|
uploadImageModal (row) {
|
|
const openImage = () => {
|
|
let currentData = {
|
|
site: this.detailData.site,
|
|
buNo: this.detailData.buNo,
|
|
createBy: this.$store.state.user.name,
|
|
inspectionNo: this.detailData.inspectionNo,
|
|
itemNo: row.itemNo,
|
|
folder: 'SQCItemImageFile'
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs.comQcItemImageUploadFile.init(currentData)
|
|
})
|
|
}
|
|
if (this.detailData.state !== '待检验') {
|
|
openImage()
|
|
return
|
|
}
|
|
if (this.detailData.passQty > this.detailData.rollQty) {
|
|
this.$message.warning('合格数量不能大于送检数量!')
|
|
return
|
|
}
|
|
this.saveDetailInformation('1', {
|
|
keepDetailOpen: true,
|
|
skipSuccessMessage: true,
|
|
afterSuccess: openImage
|
|
})
|
|
},
|
|
inspectorSearch () {
|
|
inspectorSearch().then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.options = data.rows
|
|
}
|
|
})
|
|
},
|
|
nextFocus1 (index) {
|
|
let a = `${index + 1}` + `a`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus2 (index) {
|
|
let a = `${index + 1}` + `b`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus3 (index) {
|
|
let a = `${index + 1}` + `c`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus4 (index) {
|
|
let a = `${index + 1}` + `d`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus5 (index) {
|
|
let a = `${index + 1}` + `e`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus6 (index) {
|
|
let a = `${index + 1}` + `f`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
nextFocus7 (index) {
|
|
let a = `${index + 1}` + `g`
|
|
this.$nextTick(() => {
|
|
this.$refs[a] && this.$refs[a].focus()
|
|
})
|
|
},
|
|
focusNextInput (index, type) {
|
|
let aaa = ''
|
|
if (this.detailList.length - 1 === index) {
|
|
aaa = `${type}0`
|
|
} else {
|
|
aaa = `${type}${index + 1}`
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs[aaa] && this.$refs[aaa].focus()
|
|
})
|
|
},
|
|
updateItemResult (row) {
|
|
if (row.maxValue == null && row.minValue == null && row.defaultValue == null) {
|
|
return
|
|
}
|
|
if (row.maxValue == null && row.minValue == null) {
|
|
if (row.numberValue != row.defaultValue) {
|
|
row.itemResult = 'N'
|
|
}
|
|
} else if (row.maxValue != null && row.minValue != null) {
|
|
if (row.numberValue > row.maxValue || row.numberValue < row.minValue) {
|
|
row.itemResult = 'N'
|
|
} else {
|
|
row.itemResult = 'Y'
|
|
}
|
|
} else if (row.maxValue != null) {
|
|
if (row.numberValue > row.maxValue) {
|
|
row.itemResult = 'N'
|
|
} else {
|
|
row.itemResult = 'Y'
|
|
}
|
|
} else if (row.minValue != null) {
|
|
if (row.numberValue < row.minValue) {
|
|
row.itemResult = 'N'
|
|
} else {
|
|
row.itemResult = 'Y'
|
|
}
|
|
}
|
|
},
|
|
sizeChangeHandle2 (val) {
|
|
this.pageSize2 = val
|
|
},
|
|
currentChangeHandle2 (val) {
|
|
this.pageIndex2 = val
|
|
},
|
|
changeMyString (val) {
|
|
for (let i = 0; i < this.detailList.length; i++) {
|
|
if (val[this.detailList[i].itemNo] !== undefined) {
|
|
this.detailList[i].unqualifiedQuantity = val[this.detailList[i].itemNo]
|
|
if (val[this.detailList[i].itemNo] != null) {
|
|
this.detailList[i].subDetailRecordNum = 1
|
|
}
|
|
if (val[this.detailList[i].itemNo] > 0) {
|
|
this.detailList[i].itemResult = 'N'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
// 每页数
|
|
sizeChangeHandle (val) {
|
|
this.pageSize = val
|
|
this.pageIndex = 1
|
|
this.getDataList()
|
|
},
|
|
|
|
// 当前页
|
|
currentChangeHandle (val) {
|
|
this.pageIndex = val
|
|
this.getDataList()
|
|
},
|
|
|
|
// 是否允许勾选
|
|
selectFlag (row) {
|
|
// 取消审核需要勾选“已完成”记录,因此这里不做行级限制
|
|
return true
|
|
},
|
|
|
|
fields () {
|
|
let json = '{'
|
|
this.columnList1.forEach((item, index) => {
|
|
if (index === this.columnList1.length - 1) {
|
|
json += '"' + item.columnLabel + '"' + ':' + '"' + item.columnProp + '"'
|
|
} else {
|
|
json += '"' + item.columnLabel + '"' + ':' + '"' + item.columnProp + '"' + ','
|
|
}
|
|
})
|
|
json += '}'
|
|
return eval('(' + json + ')')
|
|
},
|
|
|
|
async createExportData () {
|
|
const q = JSON.parse(JSON.stringify(this.searchData || {}))
|
|
q.page = 1
|
|
q.limit = -1
|
|
const { data } = await qcSQCInspectionSearch(q)
|
|
if (data && data.code === 0 && data.page && data.page.list) {
|
|
this.exportData = data.page.list
|
|
return this.exportData
|
|
}
|
|
this.exportData = []
|
|
return []
|
|
},
|
|
|
|
startDownload () {},
|
|
finishDownload () {},
|
|
|
|
// 审核(与 IPQC 一致:仅「待审核」可审)
|
|
submitResult () {
|
|
if (!this.submitList || this.submitList.length === 0) {
|
|
this.$message.warning('请勾选要审核的检验单!')
|
|
return
|
|
}
|
|
let tempData1 = ''
|
|
let tempData2 = ''
|
|
for (let i = 0; i < this.submitList.length; i++) {
|
|
if (this.submitList[i].state !== '待审核') {
|
|
tempData1 = tempData1 + this.submitList[i].inspectionNo + '、'
|
|
}
|
|
if (this.submitList[i].inspectionResult === '不合格' && (this.submitList[i].disposalMeasures === '' || this.submitList[i].disposalMeasures == null)) {
|
|
tempData2 = tempData2 + this.submitList[i].inspectionNo + '、'
|
|
}
|
|
}
|
|
if (tempData1 !== '') {
|
|
tempData1 = tempData1.substring(0, tempData1.length - 1)
|
|
this.$message.warning('检验单号 ' + tempData1 + ' 不是待审核状态!')
|
|
return
|
|
}
|
|
if (tempData2 !== '') {
|
|
tempData2 = tempData2.substring(0, tempData2.length - 1)
|
|
this.$message.warning('检验单号 ' + tempData2 + ' 的处置措施未选择!')
|
|
return
|
|
}
|
|
this.$confirm(`已确认单据信息无误,确定审核该 ` + this.submitList.length + ` 条记录`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.submitData.submitList = this.submitList
|
|
saveSQCSubmitResult(this.submitData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.getDataList()
|
|
this.submitList = []
|
|
this.$message.success('操作成功')
|
|
} else {
|
|
this.$message.warning((data && data.msg) || '操作失败')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
|
|
// 取消审核
|
|
cancelApproval () {
|
|
let tempData1 = '' // 记录不是已完成状态的单号
|
|
if (!this.submitList || this.submitList.length === 0) {
|
|
this.$message.warning('请勾选要取消审核的检验单!')
|
|
return
|
|
}
|
|
for (let i = 0; i < this.submitList.length; i++) {
|
|
if (this.submitList[i].state !== '已完成') {
|
|
tempData1 = tempData1 + this.submitList[i].inspectionNo + '、'
|
|
}
|
|
}
|
|
if (tempData1 !== '') {
|
|
tempData1 = tempData1.substring(0, tempData1.length - 1)
|
|
this.$message.warning('检验单号 ' + tempData1 + ' ,不是已完成状态!')
|
|
return
|
|
}
|
|
this.$confirm(`确定取消审核该 ` + this.submitList.length + ` 条记录`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.submitData.submitList = this.submitList
|
|
cancelSQCApproval(this.submitData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.getDataList()
|
|
this.submitList = []
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$message.warning(data.msg || '操作失败')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
|
|
// 删除
|
|
deleteModal () {
|
|
if (!this.submitList || this.submitList.length === 0) {
|
|
this.$message.warning('请勾选要删除的检验单!')
|
|
return
|
|
}
|
|
this.$confirm(`确认删除选中的检验单?`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
sqcRecordDelete({ submitList: this.submitList }).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.$message.success('操作成功')
|
|
this.getDataList()
|
|
} else {
|
|
this.$message.warning(data.msg || '操作失败')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
|
|
// 任务重载
|
|
overLoadModal () {
|
|
if (!this.submitList || this.submitList.length === 0) {
|
|
this.$message.warning('请勾选要重载的检验单!')
|
|
return
|
|
}
|
|
this.$confirm(`确认重载选中的检验单?`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
sqcRecordOverLoad({ submitList: this.submitList }).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.$message.success('操作成功')
|
|
this.getDataList()
|
|
} else {
|
|
this.$message.warning(data.msg || '操作失败')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
|
|
printList () {
|
|
if (!this.submitList || this.submitList.length === 0) {
|
|
this.$message.warning('请勾选要打印的检验单!')
|
|
return
|
|
}
|
|
const inspectionNos = this.$refs.qrCode.init(this.submitList.map(item => item.inspectionNo))
|
|
for (let i = 0; i < inspectionNos.length; i++) {
|
|
this.submitList[i].qrCode = inspectionNos[i]
|
|
}
|
|
qcPrint(this.submitList)
|
|
},
|
|
|
|
// 文件清单
|
|
getFileContentData (row) {
|
|
const r = row || this.detailData || {}
|
|
let currentData = {
|
|
orderRef1: r.site,
|
|
orderRef2: r.inspectionNo,
|
|
orderRef4: r.buNo,
|
|
partNo: r.partNo
|
|
}
|
|
this.fileLoading = true
|
|
getInspectionFile(currentData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.fileContentList = data.rows || []
|
|
} else {
|
|
this.fileContentList = []
|
|
}
|
|
this.fileLoading = false
|
|
}).catch(() => {
|
|
this.fileLoading = false
|
|
})
|
|
this.fileFlag = true
|
|
},
|
|
|
|
// 新增文件
|
|
addUploadFileModal () {
|
|
let currentData = {
|
|
titleCon: 'SQC文件上传',
|
|
site: this.detailData.site,
|
|
buNo: this.detailData.buNo,
|
|
createBy: this.$store.state.user.name,
|
|
inspectionNo: this.detailData.inspectionNo,
|
|
remark: '',
|
|
folder: this.fileFolder,
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs.qcFAIUploadFile.init(currentData)
|
|
})
|
|
},
|
|
|
|
getBaseData () {},
|
|
},
|
|
created () {
|
|
this.getButtonAuthData()
|
|
this.disposalMeasuresSearch()
|
|
if (!this.authSearch) {
|
|
this.getDataList()
|
|
}
|
|
this.getUserRoleList()
|
|
},
|
|
mounted () {
|
|
this.$nextTick(() => {
|
|
this.height = window.innerHeight - 250
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
/deep/ .redElSelect .el-input--suffix .el-input__inner{
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
/deep/ .greenElSelect .el-input--suffix .el-input__inner{
|
|
color: rgb(103,194,58);
|
|
font-weight: bold;
|
|
}
|
|
.el-table /deep/ .cell{
|
|
height: auto;
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
|