|
|
<template> <div class="mod-config"> <!-- 条件查询 --> <el-form :inline="true" label-position="top" :model="searchData"> <el-form-item :label="'BU'"> <el-select v-model="searchData.buNo" placeholder="请选择" clearable style="width: 75px"> <el-option v-for = "i in buList" :key = "i.buNo" :label = "i.buDesc" :value = "i.buNo"> </el-option> </el-select> </el-form-item> <el-form-item :label="'检验单号'"> <el-input v-model="searchData.inspectionNo" clearable style="width: 120px"></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="'SKU'"> <el-input v-model="searchData.sku" 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="'检验结论'"> <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.inspectionTypeNo" clearable style="width: 100px"> <el-option label="IPQC首检" value="首件检"></el-option> <el-option label="IPQC自检" value="自检"></el-option> <el-option label="IPQC巡检" value="巡检"></el-option> <el-option label="IPQC末件检" 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.resourceId" clearable filterable style="width: 120px"> <el-option v-for = "i in resourceList3" :key = "i.resourceId" :label = "i.resourceDesc" :value = "i.resourceId"> </el-option> </el-select> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="searchData"> <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.orderNo" clearable style="width: 137px"></el-input> </el-form-item> <el-form-item :label="'派工单号'"> <el-input v-model="searchData.seqNo" clearable style="width: 167px"></el-input> </el-form-item> <el-form-item :label="'工序'"> <el-input v-model="searchData.operationDesc" clearable style="width: 108px"></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> <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: 170px" v-model="searchData.startDate" type="datetime" value-format='yyyy-MM-dd HH:mm:ss' format='yyyy-MM-dd HH:mm:ss' placeholder="开始日期"></el-date-picker> - <el-date-picker style="width: 170px" v-model="searchData.endDate" type="datetime" value-format='yyyy-MM-dd HH:mm:ss' format='yyyy-MM-dd HH:mm:ss' 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="!authSave" type="primary" @click="addModal">新增</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 type="primary" @click="printList">打印</el-button> <el-button @click="exportExcel()" type="primary" style="margin-left: 2px">{{'导出'}}</el-button> </el-form-item> </el-form>
<!-- 检验记录展示列表 --> <el-table :height="height" :data="dataList" border ref="IPQCTable" @row-click="IPQCClickRow" @selection-change="selectionIPQC" 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"> {{ scope.row[item.columnProp] }}</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 style="margin-top: 0px" @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="modalFlag" width="495px"> <el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;"> <el-form-item label="BU" prop="bu" :rules="rules.bu"> <el-select v-model="modalData.bu" placeholder="请选择" @change="buChange" style="width: 221px"> <el-option v-for = "i in userBuList" :key = "i.buNo" :label = "i.sitename" :value = "i.buNo"> <span style="float: left;width: 100px">{{ i.sitename }}</span> <span style="float: right; color: #8492a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; font-size: 11px;width: 60px"> {{ i.buDesc }} </span> </el-option> </el-select> </el-form-item> <el-form-item label="标签号"> <el-input v-if="this.modalData.specialTaskFlag === 'Y'" disabled v-model="modalData.rollNo" style="width: 221px"></el-input> <el-input v-else v-model="modalData.rollNo" @keyup.native.enter="rollNoEnter" clearable style="width: 221px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px"> <el-form-item v-if="this.modalData.specialTaskFlag !== 'Y' && (this.modalData.rollNo === '' || this.modalData.rollNo == null)" prop="orderNo" :rules="rules.seqNoType"> <span style="cursor: pointer" slot="label" @click="getBaseList(1052)"><a herf="#">派工单号</a></span> <el-input v-model="modalData.seqNo" style="width: 221px"></el-input> </el-form-item> <el-form-item v-if="this.modalData.specialTaskFlag !== 'Y' && this.modalData.rollNo !== '' && this.modalData.rollNo != null" prop="orderNo" :rules="rules.seqNoType"> <span slot="label">派工单号</span> <el-input v-model="modalData.seqNo" disabled style="width: 221px"></el-input> </el-form-item> <el-form-item v-if="this.modalData.specialTaskFlag === 'Y'" prop="orderNo" :rules="rules.seqNoType"> <span slot="label">派工单号</span> <el-input v-model="modalData.seqNo" disabled style="width: 221px"></el-input> </el-form-item> <el-form-item label="工单号" prop="orderNo" :rules="rules.orderNoType"> <el-input v-model="modalData.orderNo" style="width: 221px" disabled></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px"> <el-form-item label="工序" prop="operationDesc" :rules="rules.operationDescType"> <el-select v-model="modalData.operationDesc" placeholder="请选择" style="width: 221px"> <el-option v-for = "i in operationList" :key = "i.operationNo" :label = "i.operationDesc" :value = "i.operationDesc"> </el-option> </el-select> </el-form-item> <el-form-item v-if="this.modalData.specialTaskFlag === 'Y'"> <span style="cursor: pointer" slot="label" @click="getBaseList(505)"><a herf="#">机台</a></span> <el-input v-model="modalData.resourceDesc" style="width: 221px"></el-input> </el-form-item> <el-form-item v-else label="机台" prop="resourceId" :rules="rules.resourceIdType"> <el-input v-model="modalData.resourceDesc" style="width: 221px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px"> <el-form-item v-if="this.modalData.specialTaskFlag === 'Y'" :model="modalData"> <span style="cursor: pointer" slot="label" @click="queryPartList"><a herf="#">物料编码</a></span> <el-input v-model="modalData.partNo" style="width: 221px"></el-input> </el-form-item> <el-form-item v-else label="物料编码" prop="partNo" :rules="rules.partNoType"> <el-input v-model="modalData.partNo" readonly style="width: 221px"></el-input> </el-form-item> <el-form-item label="物料名称"> <el-input v-model="modalData.partDesc" readonly style="width: 221px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px"> <el-form-item label="物料类别"> <el-input v-model="modalData.invdefinetype" readonly style="width: 221px"></el-input> </el-form-item> <el-form-item label="SKU"> <el-input v-model="modalData.sku" readonly style="width: 221px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px"> <el-form-item label="检验类型" prop="inspectionTypeNo" :rules="rules.inspectionTypeNoType"> <el-select v-model="modalData.inspectionTypeNo" style="width: 221px"> <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="送检数量" prop="rollQty" :rules="rules.rollQtyType"> <el-input v-model="modalData.rollQty" type="number" style="width: 103px"></el-input> </el-form-item> <el-form-item label="单位" prop="umId" :rules="rules.umIdType"> <el-select v-model="modalData.umId" placeholder="请选择" style="width: 103px"> <el-option v-for = "i in umList" :key = "i.umId" :label = "i.umName" :value = "i.umId"> </el-option> </el-select> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px"> <el-form-item prop="templateId" :rules="rules.templateId"> <span style="cursor: pointer" v-if="this.controlData.baseData === '控制'" slot="label" @click="queryTemplateList"><a>检验模板</a></span> <span v-else slot="label">检验模板</span> <el-input v-model="modalData.templateName" disabled style="width: 221px"></el-input> </el-form-item> <el-form-item label="送检总数"> <el-input v-model="modalData.sjzs" disabled style="width: 120px"></el-input> </el-form-item> <el-form-item label=" "> <input type="checkbox" id="specialTask" name="specialTask" v-model="checked" @click="changeSpecialTask"/> <label for="specialTask">无工单检验</label> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px"> <el-form-item label="老卷号"> <el-input v-model="modalData.batchRollNo" style="width: 456px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" :model="modalData" style="margin-left: 7px"> <el-form-item label="特殊要求"> <el-input type="textarea" v-model="modalData.specialRequirements" :rows="3" resize='none' show-word-limit style="width: 456px;height: 30px"></el-input> </el-form-item> </el-form> <el-footer style="height:40px;margin-top: 55px;text-align:center"> <el-button type="primary" :loading="saveLoading" @click="saveData">保存</el-button> <el-button type="primary" @click="modalFlag = false">关闭</el-button> </el-footer> </el-dialog>
<!-- 检验单详情页 --> <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 style="margin-top: 13px;margin-left: 405px"> <el-button v-if="detailData.submitFlag !== 'Y'" :loading="loadFlag" @click="dataAcquisition"> <svg t="1739002700745" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="38076" width="22" height="22"><path d="M922.000696 762.746435V465.363478l55.652174-0.111304v299.542261c0 131.695304-106.562783 239.571478-236.922435 239.571478H285.42887C155.158261 1004.365913 48.484174 896.623304 48.484174 764.794435V465.252174h59.258435v299.542261c0 101.843478 77.022609 179.712 177.775304 179.712H740.841739c100.61913 0 181.158957-79.916522 181.158957-181.76z" fill="#1D293F" p-id="38077"></path><path d="M290.148174 192.556522c20.301913-20.925217 30.47513-48.617739 30.47513-83.099826 0-72.548174-36.285217-108.833391-108.722087-108.833392H141.401043v223.365566h70.255305c32.055652-0.111304 58.167652-10.529391 78.491826-31.432348z m-105.227131-7.635479V39.446261h23.596522c19.70087 0 35.661913 6.166261 47.994435 18.632348 12.354783 12.466087 18.387478 29.740522 18.387478 52.001391 0 22.973217-5.921391 41.22713-17.652869 54.650435s-27.937391 20.190609-48.617739 20.190608H184.921043zM634.434783 595.366957h-84.057044V498.866087a102.511304 102.511304 0 0 0 74.262261-98.54887c0-56.230957-45.478957-102.310957-101.10887-102.310956-55.629913 0-101.086609 46.08-101.086608 102.310956 0 46.08 30.586435 85.25913 72.192 97.947826v96.990609h-81.252174c-16.829217-43.78713-50.688-99.283478-81.65287-143.070609a101.331478 101.331478 0 0 0 14.269218-52.001391c0-56.230957-45.946435-102.310957-102.177392-102.310956s-102.177391 46.08-102.177391 102.310956c0 56.230957 45.946435 102.310957 102.177391 102.310957 15.716174 0 30.72-3.628522 44.009739-10.017392 21.170087 34.326261 42.829913 74.351304 57.811479 102.778435h-73.906087l128.333913 130.493218 94.675478-108.966957v145.853217h-111.616l148.034783 148.858435 130.715826-148.858435h-111.504696v-129.402434l91.180522 92.516174 113.307826-130.248348h-53.203478c14.758957-28.42713 36.173913-68.452174 57.210434-102.800696 13.178435 6.41113 27.937391 10.039652 43.542261 10.039652 55.629913 0 101.086609-46.08 101.086609-102.310956 0-56.230957-45.456696-102.310957-101.086609-102.310957-55.652174 0-101.220174 46.08-101.220174 102.310957a102.4 102.4 0 0 0 14.135653 52.001391c-30.72 43.653565-64.200348 99.283478-80.896 142.937044z m-390.611479-148.48a46.614261 46.614261 0 0 1-46.436174-46.458435c0-25.510957 20.925217-46.436174 46.436174-46.436174s46.436174 20.925217 46.436174 46.436174-20.925217 46.436174-46.436174 46.436174z m279.819131 0c-25.266087 0-45.946435-20.925217-45.946435-46.458435 0-25.510957 20.702609-46.436174 45.968696-46.436174 25.266087 0 45.946435 20.925217 45.946434 46.436174s-20.680348 46.436174-45.946434 46.436174z m278.639304-93.005914c25.288348 0 45.968696 20.925217 45.968696 46.436174s-20.702609 46.436174-45.968696 46.436174c-25.266087 0-45.946435-20.925217-45.946435-46.436174s20.680348-46.436174 45.946435-46.436174zM395.130435 172.722087h74.128695l15.248696 51.155478h47.415652L458.707478 0.623304h-51.155478L332.8 223.98887h47.170783l15.11513-51.266783z m32.768-114.777044c1.825391-6.032696 3.027478-12.332522 3.517217-18.854956h1.202087c0.601043 8.102957 1.691826 14.514087 3.138783 19.456l23.218087 77.401043h-54.405566l23.329392-78.002087z m168.96 165.932522h43.631304V39.446261h58.189913V0.623304h-159.877565v38.956522h58.056348v184.297739z m169.894956-51.155478h74.128696l15.248696 51.155478h47.415652L830.330435 0.623304h-51.155478l-74.752 223.365566h47.193043l15.09287-51.266783z m32.768-114.777044c1.825391-6.032696 3.027478-12.332522 3.517218-18.854956h1.202087c0.601043 8.102957 1.691826 14.514087 3.161043 19.456l23.218087 77.401043h-54.427826l23.329391-78.002087z" fill="#FD9F01" p-id="38078"></path></svg> </el-button> <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="subDetailUpload"> <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 icon="el-icon-picture" type="primary" @click="uploadImageModal(scope.row)"></el-button> <el-button style="margin-left: 2px" icon="el-icon-s-platform" type="primary" :loading="loadFlag" @click="dataAcquisitionByItem(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">{{ scope.row[item.columnProp] }}</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="right" 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 v-if="detailData.state === '待检验' || detailData.state === '待审核'" type="primary" :loading="transferLoadFlag" @click="Transfer('2')">保存</el-button> <el-button type="primary" @click="detailInformationFlag=false">关闭</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" @click="saveSubDetailResult">保存</el-button> <el-button type="primary" @click="subDetailFlag = false">关闭</el-button> </el-footer> </el-dialog>
<!-- 派工单号 --> <el-dialog title="派工单号" @close="closeDialog" :close-on-click-modal="false" v-drag :visible.sync="seqDetailFlag" width="952px" height="273px"> <el-form :inline="true" label-position="top" :model="seqDetailData" style="margin-left: 7px;margin-top: -5px;"> <el-form-item label="工单号"> <el-input v-model="seqDetailData.orderNo" clearable style="width: 150px"></el-input> </el-form-item> <el-form-item label="派工单号"> <el-input v-model="seqDetailData.seqNo" clearable style="width: 150px"></el-input> </el-form-item> <el-form-item label="SKU"> <el-input v-model="seqDetailData.sku" clearable style="width: 150px"></el-input> </el-form-item> <el-form-item label="状态"> <el-select v-model="seqDetailData.status" style="width: 100px" clearable placeholder="请选择"> <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-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="seqDetailData" style="margin-left: 7px;margin-top: -5px;"> <el-form-item label="物料编码"> <el-input v-model="seqDetailData.partNo" clearable style="width: 150px"></el-input> </el-form-item> <el-form-item label="物料名称"> <el-input v-model="seqDetailData.partDesc" clearable style="width: 315px"></el-input> </el-form-item> <el-form-item label="工序"> <el-input v-model="seqDetailData.operationDesc" clearable style="width: 150px"></el-input> </el-form-item> <el-form-item> <el-button type="primary" @click="searchSeqInfo" style="margin-top: 24px">查询</el-button> </el-form-item> </el-form> <el-table :height="400" :data="seqInfoList" @row-dblclick="getRowData1" border style="width: 100%;"> <el-table-column v-for="(item,index) in seqDetailColumnList" :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"> </el-table-column> </el-table> <el-footer style="height:40px;margin-top: 10px;text-align:center"> <el-button type="primary" @click="seqDetailFlag = 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="templateModelFlag" width="520px"> <div class="rq"> <el-form :inline="true" label-position="top" :model="templateData"> <el-form-item :label="'模板编码'"> <el-input v-model="templateData.templateId" clearable style="width: 120px"></el-input> </el-form-item> <el-form-item :label="'模板名称'"> <el-input v-model="templateData.templateName" clearable style="width: 120px"></el-input> </el-form-item> <el-form-item :label="' '"> <el-button type="primary" @click="queryTemplateList">查询</el-button> </el-form-item> </el-form> <el-table :height="300" :data="templateList" @row-dblclick="getRowData" border style="width: 100%;"> <el-table-column v-for="(item,index) in templateDetailList" :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">{{scope.row[item.columnProp]}}</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="templateModelFlag=false">关闭</el-button> </el-footer> </el-dialog>
<!-- 物料 --> <el-dialog title="物料清单" :close-on-click-modal="false" v-drag :visible.sync="partModelFlag" width="520px"> <div class="rq"> <el-form :inline="true" label-position="top" :model="partData"> <el-form-item :label="'物料编码'"> <el-input v-model="partData.partNo" clearable style="width: 115px"></el-input> </el-form-item> <el-form-item :label="'物料名称'"> <el-input v-model="partData.partDesc" clearable style="width: 115px"></el-input> </el-form-item> <el-form-item :label="'SKU'"> <el-input v-model="partData.sku" clearable style="width: 79px"></el-input> </el-form-item> <el-form-item :label="'PN'"> <el-input v-model="partData.cinvSourceCode" clearable style="width: 79px"></el-input> </el-form-item> <el-form-item :label="' '"> <el-button type="primary" @click="queryPartList">查询</el-button> </el-form-item> </el-form> <el-table :height="300" :data="partList" @row-dblclick="getRowData2" border style="width: 100%;"> <el-table-column v-for="(item,index) in partDetailList" :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">{{scope.row[item.columnProp]}}</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="partModelFlag=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> <iqc-file-table :columns="fileColumnList" :data-list="fileContentList" :query-loading="fileLoading"></iqc-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>
<!-- 机修人员清单 --> <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">{{scope.row[item.columnProp]}}</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">{{scope.row[item.columnProp]}}</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>
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist>
<!-- 上传文件的modal --> <qcFAIUploadFile ref="qcFAIUploadFile" @refreshPageTables="()=>{this.getFileContentData(this.detailData)}" v-drag></qcFAIUploadFile>
<!-- 上传文件的modal --> <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 { qcIPQCInspectionSearch, // 查询IPQC的检验记录
ipqcDetailSearch, // 查询IPQC的检验明细
ipqcRecordDelete, // 删除检验记录
saveIPQCDetailedRecord, // 新增明细信息
saveIPQCSubmitResult, // 审核
saveIPQCSubDetailed, // 新增子明细信息
selectIPQCSubDetailedRecord, // 子明细记录信息查询
checkIPQCIsSubmit, // 检查是否已提交
getOperationList, // 查询工序列表
getResourceList, // 查询机台列表
getPartList, // 查询物料列表
saveOsInspection, // 新增检验记录
queryController, // 检查动控
queryTemplateList, // 获取检验模板列表
getSpecialOperationList, // 获取特殊工序列表
inspectionTypeSearch, // 搜索所有检验类型
disposalMeasuresSearch, // 获取处置措施列表
getRollNo, // 模糊查询标签号
rollNoEnter, // 标签号回车事件
queryPartList, // 查询物料集合
umSearch, // 查询单位列表
getSiteAndBuByUserName, getSiteAndBuByUserName2, searchSeqInfo, // 派工单号查询
actionIPQCInspection, // 开始检验
dataAcquisition, // 数据采集
getResponsibleOperatorList, // 获取责任人列表
getIPQCItemObjectList, // 查询项目设备
dataAcquisitionByItem, // 根据项目数据采集
cancelApproval2, // 取消审核
getUserRoleList, // 获取用户角色列表
getOperatorList } from "@/api/qc/qc.js" import {getTableDefaultListLanguage, getTableUserListLanguage} from "@/api/table.js" import Chooselist from '@/views/modules/common/Chooselist_eam' import {getInspectionFile} from '@/api/eam/eam_object_list.js' import {userFavoriteList, saveUserFavorite, removeUserFavorite} from '@/api/userFavorite.js' import {qcPrint} from '@/api/qc/qcPrint.js' import excel from "@/utils/excel-util.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 IqcFileTable from "./IQCFileTable.vue"; import {queryResourceList3} from "../../../api/qc/qc"; /*上传文件的組件*/ export default { components: { IqcFileTable, 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 (newV, oldV) { this.detailData.notPassQty = this.detailData.samplingQty - this.detailData.passQty if (this.detailData.inspectionResult === '不合格') { if (this.detailData.disposalMeasures === '让步接收' || this.detailData.disposalMeasures === '') { this.detailData.batchQualifiedQty = this.detailData.rollQty } else if (this.detailData.disposalMeasures === '挑选使用') { this.detailData.batchQualifiedQty = this.detailData.rollQty - this.detailData.notPassQty } else { this.detailData.batchQualifiedQty = 0 } } else { this.detailData.batchQualifiedQty = this.detailData.rollQty } } }, detailList: { deep: true, handler: function (newV, oldV) { 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 { loadFlag: false, transferLoadFlag: false, inspectionNo: '', fileFlag: false, fileContentList: [], // 是否收藏
favorite: false, // 导出 start
exportData: [], exportName: "IPQC检验录入" + this.dayjs().format('YYYYMMDDHHmmss'), exportHeader: ["IPQC检验录入"], exportFooter: [], exportList: [], // 导出 end
checkCompletedData:{ inspectionNo: '' }, submitData:{ site: '', inspectionNo: '', submit_flag: '', inspectionResult: '', submitList: [], updateBy: this.$store.state.user.name, type: 'ipqc' }, tagNo:'', searchData: { site: '', userName: this.$store.state.user.name, inspectionNo: '', state: '', inspectionResult: '', orderNo: '', operationDesc: '', buNo: '', startDate: '', endDate: '', startDate2: '', endDate2: '', inspectionTypeNo: '', partNo: '', partDesc: '', cinvSourceCode: '', sku: '', disposalMeasures: '', page: 1, limit: 10, seqNo: '', states: ['未开始','待检验'], }, pageIndex: 1, pageSize: 20, totalPage: 0, pageIndex2: 1, pageSize2: 20, totalPage2: 0, height: 200, dataList: [], dataListSelections: [], modalData: { flag:'', site: '', bu: '', inspectionNo:'', partNo: '', partDesc: '', inspectionTypeNo:'', inspectionTypeName:'', inspectorNo:'', inspectorName:'', submit_flag:'', orderNo: '', operationDesc: '', operationNo: '', resourceId: '', resourceDesc: '', rollQty: '', seqNo: '', batchRollNo: '', invdefinetype: '', sku: '', cinvSourceCode: '', qtyrequired: '', lotsize:'', specialRequirements: '', templateId: '', templateName: '', specialTaskFlag: '', workCenterNo: '', rollNo: '', umId: '', umName: '', sjzs: '' }, // 展示列集
columnList1: [ { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table1BuDesc', tableId: "301014Table1", tableName: "IPQC检验记录表", columnProp: 'buDesc', headerAlign: "center", align: "center", columnLabel: 'BU', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', columnWidth: 100, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table1InspectionNo', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1BatchRollNo', tableId: "301014Table1", tableName: "IPQC检验记录表", columnProp: 'batchRollNo', 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: 301014, serialNumber: '301014Table1RollNo', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectionResult', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1DisposalMeasures', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectionTypeNo', tableId: "301014Table1", tableName: "IPQC检验记录表", columnProp: 'inspectionTypeNo', 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: 301014, serialNumber: '301014Table1TaskDate', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectionCycle', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1OrderNo', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1SeqNo', tableId: "301014Table1", tableName: "IPQC检验记录表", columnProp: 'seqNo', 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: 301014, serialNumber: '301014Table1OperationDesc', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1ResourceDesc', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1PartNo', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1PartDesc', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1Sku', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1cinvSourceCode', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1Invdefinetype', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1RollQty', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1SamplingQty', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1UmName', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectionRemark', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1DisposalRemark', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1ActionDate', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectorDate', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1InspectorName', tableId: "301014Table1", tableName: "IPQC检验记录表", 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: 301014, serialNumber: '301014Table1SpecialRequirements', tableId: "301014Table1", tableName: "IPQC检验记录表", columnProp: 'specialRequirements', headerAlign: "center", align: "left", columnLabel: '特殊要求', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', columnWidth: 200, }, ], //项目清单
detailData: { site: '', buNo: '', inspectionNo:'', partNo:'', partDesc:'', rollQty:'', samplingQty: '', unqualifiedQty: 0, unqualifiedQuantity:'', disposalMeasures:'', disposalRemark: '', inspectionResult: '', inspectorNo: '', inspectorName: '', inspectionRemark: '', submitFlag: '', cinvSourceCode: '', sku: '', invdefinetype: '', umId: '', umName: '', operator: '', operatorName: '', responsiblePerson: '', responsiblePersonName: '', state: '', passQty: '', notPassQty: '', batchQualifiedQty: '' }, detailInformationFlag: false, detailList: [], saveInformationData: { site: '', buNo: '', inspectionNo:'', disposalMeasures: '', disposalRemark: '', inspectorNo: '', inspectionRemark: '', samplingQty: '', rollQty: '', itemList:[], unqualifiedQty: '', partNo: '', partDesc: '', operator: '', operatorName: '', responsiblePerson: '', responsiblePersonName: '', subDetailList: [], type: '', passQty: '', notPassQty: '', batchQualifiedQty: '' }, detailColumnList: [ { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table2ItemNo', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2ItemDesc', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2SamplingLevelDesc', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2SamplingProgrammeDesc', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2MethodName', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2MethodRemark', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2ObjectDesc', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2Aql', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2Ac', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2Re', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2DefaultValue', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2MaxValue', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2MinValue', tableId: "301014Table2", 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: 301014, serialNumber: '301014Table2ValueType', tableId: "301014Table2", tableName: "检验单明细表", columnProp: 'valueType', headerAlign: "center", align: "center", columnLabel: '检测值类型', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', columnWidth: 100, }, ], 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 }, ], // 派工单号
seqInfoList: [], seqDetailFlag: false, seqDetailData: { orderNo: '', seqNo: '', sku: '', cinvSourceCode:'', partNo: '', partDesc: '', operationDesc: '', qtyrequired: '', lotsize: '', status: '已开工' }, seqDetailColumnList: [ { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3OrderNo', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'orderNo', headerAlign: "center", align: "center", columnLabel: '工单号', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3SeqNo', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'seqNo', headerAlign: "center", align: "center", columnLabel: '派工单号', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3Sku', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'sku', headerAlign: "center", align: "center", columnLabel: 'SKU', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3PartNo', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'partNo', headerAlign: "center", align: "center", columnLabel: '物料编码', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3PartDesc', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'partDesc', headerAlign: "center", align: "center", columnLabel: '物料名称', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3Lotsize', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'lotsize', headerAlign: "center", align: "right", columnLabel: '工单数量', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3Qtyrequired', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'qtyrequired', headerAlign: "center", align: "right", columnLabel: '派工数量', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3Sjzs', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'sjzs', headerAlign: "center", align: "right", columnLabel: '送检总数', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, }, { userId: this.$store.state.user.name, functionId: 301014, serialNumber: '301014Table3OperationDesc', tableId: "301014Table3", tableName: "派工单号表", fixed: '', columnWidth: 80, columnProp: 'operationDesc', headerAlign: "center", align: "center", columnLabel: '工序', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, } ], // 子明细数据对象
tableData: [], checkedDetail: [], subDetailFlag: false, subDetailData: { site: '', buNo: '', inspectionNo: '', itemNo: '', itemDesc: '', defaultValue: '', maxValue: '', minValue: '', valueTypeDb: '', subDetailValues:[], page: 1, limit: 10, }, options: [], modalDisableFlag: false, modalFlag: false, operationList: [], resourceList: [], partList: [], IPQCSelections: [], rules: { seqNoType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], orderNoType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], operationDescType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], resourceIdType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], rollQtyType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], inspectionTypeNoType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], partNoType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], umIdType: [ { required: true, message: ' ', trigger: ['blur','change'] } ], templateId: [ { required: true, message: ' ', trigger: ['blur','change'] } ], bu:[ { required: true, message: ' ', trigger: ['blur','change'] } ] }, batchHandleAddModalFlag: false, batchAddData: { samplingLocation: '', samplingLocationB: '', samplingNumber: '' }, controlData: {}, templateData: { site: '', bu: '', templateId: '', templateName: '', inspectionTypeNo: '', inspectionTypeName: '' }, partData: { site: '', bu: '', partNo: '', partDesc: '', sku: '', cinvSourceCode: '', }, templateList: [], templateModelFlag: false, templateDetailList: [ { columnProp: 'templateId', headerAlign: "center", align: "center", columnLabel: '模板编码', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'templateName', headerAlign: "center", align: "center", columnLabel: '模板名称', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectionTypeName', headerAlign: "center", align: "center", columnLabel: '检验类型', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, ], partDetailList: [ { columnProp: 'partNo', headerAlign: "center", align: "center", columnLabel: '物料编码', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'partDesc', headerAlign: "center", align: "center", columnLabel: '物料名称', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'sku', headerAlign: "center", align: "center", columnLabel: 'SKU', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'cinvSourceCode', headerAlign: "center", align: "center", columnLabel: 'PN', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', } ], checked: false, typeOptions: [], disposalMeasuresOptions: [], timeout: null, partModelFlag: false, umList: [], userBuList: [], buList: [], resourceList3: [], authSearch: false, authSave: false, authCheck: false, authCancelCheck: false, authDelete: false, authDetail: false, authFile: false, menuId: this.$route.meta.menuId, roleList: [], operatorList: [], operatorData: { flag: '', site: '', bu: '', adminID: '', adminName: '', roleName: '', roleId: '', userName: this.$store.state.user.name }, operatorModelFlag: false, 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: '', }, ], acquisitionList: [], 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: '' }, fileLoading: false, subDetailLoading: false, saveLoading: false, searchLoading: false } },
mounted () { this.$nextTick(() => { this.height = window.innerHeight - 250 }) },
created () { // 按钮控制
this.getButtonAuthData() // 获取用户的 site 和 bu
this.getSiteAndBuByUserName() // 获取用户的 site 和 bu
this.getSiteAndBuByUserName2() // 收藏
this.favoriteIsOk() // 检验类型
this.inspectionTypeSearch() // 处置措施
this.disposalMeasuresSearch() // 单位
this.umSearch() // 查看 质量任务生成规则控制 动控是否开启
this.queryController() // 动态列
this.getTableUserColumn(this.$route.meta.menuId+'table1',1) this.getTableUserColumn(this.$route.meta.menuId+'table2',2) this.getTableUserColumn(this.$route.meta.menuId+'table3',3) if (!this.authSearch) { // 获取数据列表
this.getDataList() } // 获取用户角色
this.getUserRoleList() //查询工序列表
this.queryResourceList() },
methods: {
// 获取用户的bu
getSiteAndBuByUserName2 () { let tempData = { username: this.$store.state.user.name, } getSiteAndBuByUserName2(tempData).then(({data}) => { if (data.code === 0) { this.buList = data.rows } }) }, queryResourceList (){ queryResourceList3().then(( {data} ) => { this.resourceList3 = data.rows }) },
// 批量打印标签
printList () { if (this.IPQCSelections.length === 0) { this.$message.warning('请勾选要打印的检验单!') return } const inspectionNos = this.$refs.qrCode.init(this.IPQCSelections.map(item => item.inspectionNo)) for (let i = 0; i < inspectionNos.length; i++) { this.IPQCSelections[i].qrCode = inspectionNos[i] } qcPrint(this.IPQCSelections) },
// 数据采集
dataAcquisition () { this.loadFlag = true let tempDate = { site: this.detailData.site, buNo: this.detailData.buNo, inspectionNo: this.detailData.inspectionNo, flag: 'ipqc' } dataAcquisition(tempDate).then(({data}) => { if (data.code === 0) { this.changeMyString(data.rows) this.$message.success('数据采集成功') } else { this.$message.error(data.msg) } this.loadFlag = false }) },
// 根据项目数据采集
dataAcquisitionByItem (row) { this.loadFlag = true let tempDate = { site: row.site, buNo: row.buNo, inspectionNo: row.inspectionNo, templateId: row.templateId, itemNo: row.itemNo, flag: 'ipqc' } dataAcquisitionByItem(tempDate).then(({data}) => { if (data.code === 0) { this.changeMyString(data.rows) this.$message.success('数据采集成功') } else { this.$message.error(data.msg) } this.loadFlag = false }) },
// 获取用户角色
getUserRoleList () { getUserRoleList().then(({data}) => { if (data.code === 0) { this.roleList = data.rows } else { this.roleList = [] } }) },
// 获取协同人员列表
getOperatorList () { this.operatorData.flag = '1' this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo if (this.roleList.length > 0) { let filterList = this.roleList.filter(item => item.roleName === '机修人员') if (filterList.length > 0) { this.operatorData.roleId = filterList[0].roleId } else { this.operatorData.roleId = this.roleList[0].roleId } } else { this.operatorData.roleId = '' } // 先清空缓存选中
this.$nextTick(() => 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.toggleRowSelection(val, true)) } }) this.operatorModelFlag = true } else { this.$message.error(data.msg) } }) },
// 获取责任人员列表
getResponsiblePersonList () { this.operatorData.flag = '2' this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo
// 先清空缓存选中
this.$nextTick(() => 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.toggleRowSelection(val, true)) } }) this.operatorModelFlag = true } else { this.$message.error(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.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.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') { for (let i = 0; i < this.dataListSelections2.length; i++) { if (!this.detailData.operator.split(';').includes(this.dataListSelections2[i].adminID)) { 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 { for (let i = 0; i < this.dataListSelections2.length; i++) { if (!this.detailData.responsiblePerson.split(';').includes(this.dataListSelections2[i].adminID)) { 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 },
// bu内容改变事件
buChange () { if (this.modalData.specialTaskFlag !== 'Y') { // 正常检验
this.modalData.templateId = '' this.modalData.templateName = '' } else { // 无工单检验
this.modalData.partNo = '' this.modalData.partDesc = '' this.modalData.invdefinetype = '' this.modalData.sku = '' this.modalData.cinvSourceCode = '' this.modalData.templateId = '' this.modalData.templateName = '' } },
// 获取用户的bu
getSiteAndBuByUserName () { let tempData = { username: this.$store.state.user.name, } getSiteAndBuByUserName(tempData).then(({data}) => { if (data.code === 0) { this.userBuList = data.rows } }) },
// 子明细导入
subDetailUpload () { let currentData = { flag: 'IPQC', site: this.detailData.site, buNo: this.detailData.buNo, inspectionNo: this.detailData.inspectionNo } //打开组件 去做新增业务
this.$nextTick(() => { this.$refs.subDetailUpload.init(currentData) }) },
// 查询单位
umSearch () { let tempData = { site: this.$store.state.user.site, active: 'Y' } umSearch(tempData).then(({data}) => { if (data.code === 0) { this.umList = data.rows } }) },
// 标签号回车事件
rollNoEnter () { const regex = /\(08\)(.*)/ const result = this.modalData.rollNo.match(regex) let tempData = { site: '', bu: this.modalData.bu, rollNo: result == null ? this.modalData.rollNo : result[1] } rollNoEnter(tempData).then(({data}) => { if (data && data.code === 0) { this.operationList = data.rows this.modalData.seqNo = data.rows[0].seqNo this.modalData.orderNo = data.rows[0].orderNo this.modalData.operationDesc = data.rows[0].operationDesc this.modalData.workCenterNo = data.rows[0].workCenterNo this.modalData.resourceId = data.rows[0].resourceId this.modalData.resourceDesc = data.rows[0].resourceDesc this.modalData.partNo = data.rows[0].partNo this.modalData.partDesc = data.rows[0].partDesc this.modalData.invdefinetype = data.rows[0].invdefinetype this.modalData.sku = data.rows[0].sku this.modalData.cinvSourceCode = data.rows[0].cinvSourceCode } else { this.$message.error(data.msg) } }) },
// input 模糊搜索
querySearchAsync (queryString, cb) { clearTimeout(this.timeout) let results = [] if (queryString === '') { cb(results) } else { // 掉接口需要的参数
let find = { rollNo: queryString, //上面输入框绑定的数据
site: this.$store.state.user.site, } // 这里去调后端的接口.根据自己接口的情况进行赋值
getRollNo(find).then(({data}) => { if (data.code === 0) { let result = data.rows // 循环放到一个远程搜索需要的数组
for (let i = 0; i < result.length; i++) { const element = result[i] results.push({ value: element.rollNo, seqNo: element.seqNo, orderNo: element.orderNo }) } cb(results) } else { results = [] cb(results) } }) } },
// 点击出现搜索后点击的每一项
handleSelect (item) { this.modalData.rollNo = item.value this.modalData.seqNo = item.seqNo this.modalData.orderNo = item.orderNo //this.getOperationList()
},
// 获取处置措施列表
disposalMeasuresSearch () { let tempData = { inspectionTypeNo: '101' } disposalMeasuresSearch(tempData).then(({data}) => { if (data.code === 0) { this.disposalMeasuresOptions = data.rows } }) },
// 查询检验类型
inspectionTypeSearch () { let tempData = { site: this.$store.state.user.site } inspectionTypeSearch(tempData).then(({data}) => { if (data.code === 0) { this.typeOptions = data.rows this.typeOptions.forEach(val => { if (val.inspectionTypeName.includes('IPQC')) { this.templateData.inspectionTypeNo = val.inspectionTypeNo this.templateData.inspectionTypeName = val.inspectionTypeName } }) } }) },
selectFlag () { return true },
// 单机选中
IPQCClickRow (row) { this.$refs.IPQCTable.toggleRowSelection(row) },
// 复选
selectionIPQC (val) { this.IPQCSelections = val },
//刷新派设备文档的列表
getFileContentData (row) { let currentData = { orderRef1: row.site, orderRef2: row.inspectionNo, orderRef4: row.buNo, partNo: row.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 },
/*新增文件的modal*/ addUploadFileModal () { let currentData = { titleCon: 'IPQC文件上传', site: this.detailData.site, buNo: this.detailData.buNo, createBy: this.$store.state.user.name, inspectionNo: this.detailData.inspectionNo, remark: '', folder: 'qcIPQC', } //打开组件 去做新增业务
this.$nextTick(() => { this.$refs.qcFAIUploadFile.init(currentData) }) },
// 上传项目图片
uploadImageModal (row) { let currentData = { site: this.detailData.site, buNo: this.detailData.buNo, createBy: this.$store.state.user.name, inspectionNo: this.detailData.inspectionNo, itemNo: row.itemNo, folder: 'IPQCItemImageFile' } //打开组件 去做新增业务
this.$nextTick(() => { this.$refs.comQcItemImageUploadFile.init(currentData) }) },
// 获取基础数据列表S
getBaseList (val,type) { this.tagNo = val this.$nextTick(() => { let strVal = '' if (val === 1052) { this.searchSeqInfo() this.seqDetailFlag = true } if (val === 505) { strVal = this.modalData.resourceDesc this.$refs.baseList.init(val, strVal) } }) },
/* 列表方法的回调 */ getBaseData (val) { if (this.tagNo === 1052) { this.modalData.seqNo = val.seqno this.modalData.orderNo = val.orderno this.modalData.operationDesc = '' this.modalData.resourceId = '' //this.getOperationList()
} if (this.tagNo === 505) { this.modalData.resourceId = val.resource_id this.modalData.resourceDesc = val.resource_desc } },
// 获取工序列表
getOperationList () { getOperationList(this.modalData).then(({data}) => { if (data && data.code === 0) { this.operationList = data.rows this.modalData.operationDesc = data.rows[0].operationDesc this.modalData.workCenterNo = data.rows[0].workCenterNo this.modalData.resourceId = data.rows[0].resourceId this.modalData.resourceDesc = data.rows[0].resourceDesc this.modalData.partNo = data.rows[0].partNo this.modalData.partDesc = data.rows[0].partDesc this.modalData.invdefinetype = data.rows[0].invdefinetype this.modalData.sku = data.rows[0].sku this.modalData.cinvSourceCode = data.rows[0].cinvSourceCode this.modalData.operationDesc = data.rows[0].operationDesc this.modalData.qtyrequired = data.rows[0].qtyrequired this.modalData.lotsize = data.rows[0].lotsize } else { this.$message.error(data.msg) } }) },
// 获取机台列表
getResourceList () { // 判断是否为特殊任务,特殊任务的机台不随工序改变
if (this.modalData.specialTaskFlag === 'Y') { return } else { getResourceList(this.modalData).then(({data}) => { if (data && data.code === 0) { this.modalData.workCenterNo = data.rows[0].workCenterNo this.modalData.resourceId = data.rows[0].resourceId this.modalData.resourceDesc = data.rows[0].resourceDesc } else { this.$message.error(data.msg) } }) } },
// 获取物料列表
getPartList () { getPartList(this.modalData).then(({data}) => { if (data && data.code === 0) { this.partList = data.rows this.modalData.partNo = this.partList[0].partNo this.modalData.partDesc = this.partList[0].partDesc this.modalData.invdefinetype = this.partList[0].invdefinetype this.modalData.sku = this.partList[0].sku this.modalData.cinvSourceCode = this.partList[0].cinvSourceCode } else { this.$message.error(data.msg) } }) },
// 检查动控是否开启
queryController () { let tempData = { controlNo: '10004', site: this.$store.state.user.site, } queryController(tempData).then(({data}) => { if (data && data.code === 0) { this.controlData = data.rows } else { this.$message.error(data.msg) } }) },
addModal () { this.modalData = { flag: '1', site: '', bu: this.userBuList[0].buNo, inspectionNo:'', partNo: '', partDesc: '', inspectionTypeNo:'', inspectionTypeName:'', inspectorNo:'', inspectorName:'', submit_flag:'', orderNo: '', operationDesc: '', operationNo: '', resourceId: '', resourceDesc: '', rollQty: '', seqNo: '', batchRollNo: '', invdefinetype: '', sku: '', cinvSourceCode: '', specialRequirements: '', templateId: '', templateName: '', specialTaskFlag: '', workCenterNo: '', rollNo: '', umId: this.umList[0].umId, umName: this.umList[0].umName, sjzs: '', } this.operationList = [] this.resourceList = [] this.partList = [] this.modalDisableFlag = false this.modalFlag = true this.checked = false },
// 获取检验模板列表
queryTemplateList () { this.templateData.bu = this.modalData.bu // 查询所有检验模板
queryTemplateList(this.templateData).then(({data}) => { if (data && data.code === 0) { this.templateList = data.rows this.templateModelFlag = true } else { this.$message.error(data.msg) } }) },
// 获取物料列表
queryPartList () { this.partData.bu = this.modalData.bu // 查询所有物料
if (this.partData.partNo === '' && this.partData.partDesc === '' && this.partData.sku === '' && this.partData.cinvSourceCode === '') { this.partList = [] this.partModelFlag = true } else { queryPartList(this.partData).then(({data}) => { if (data && data.code === 0) { this.partList = data.rows this.partModelFlag = true }else { this.$message.error(data.msg) } }) } },
// 选中检验模板
getRowData (row) { this.modalData.templateId = row.templateId this.modalData.templateName = row.templateName this.templateModelFlag = false },
// 选中派工单号
getRowData1 (row) { this.modalData.sku = row.sku this.modalData.partNo = row.partNo this.modalData.partDesc = row.partDesc this.modalData.orderNo = row.orderNo this.modalData.seqNo = row.seqNo this.modalData.lotsize = row.lotsize this.modalData.operationDesc = row.operationDesc this.modalData.qtyrequired = row.qtyrequired this.modalData.rollQty = row.qtyrequired this.modalData.sjzs = row.sjzs this.modalData.resourceId = row.resourceId this.modalData.resourceDesc = row.resourceDesc this.modalData.workCenterNo = row.workCenterNo //this.getOperationList()
this.seqDetailFlag = false },
// 选中物料
getRowData2 (row) { this.modalData.partNo = row.partNo this.modalData.partDesc = row.partDesc this.modalData.sku = row.sku this.modalData.invdefinetype = row.invdefinetype this.modalData.cinvSourceCode = row.cinvSourceCode this.partData = { site: '', bu: '', partNo: '', partDesc: '', sku: '', cinvSourceCode: '', } this.partModelFlag = false },
// 是否新增特殊任务
changeSpecialTask () { // 先重置数据
this.modalData = { flag: '1', site: '', bu: this.userBuList[0].buNo, inspectionNo:'', partNo: '', partDesc: '', inspectionTypeNo:'', inspectionTypeName:'', inspectorNo:'', inspectorName:'', submit_flag:'', orderNo: '', operationDesc: '', operationNo: '', resourceId: '', resourceDesc: '', rollQty: '', seqNo: '', batchRollNo: '', invdefinetype: '', sku: '', cinvSourceCode: '', specialRequirements: '', templateId: '', templateName: '', specialTaskFlag: '', workCenterNo: '', rollNo: '', umId: this.umList[0].umId, umName: this.umList[0].umName } // 获取选中框
let obj = document.getElementsByName('specialTask') // 判断是否打勾
if (obj[0].checked) { let tempData = { site: '', bu: this.modalData.bu } this.modalData.specialTaskFlag = 'Y' // 获取特殊工序列表
getSpecialOperationList(tempData).then(({data}) => { if (data && data.code === 0) { this.operationList = data.rows } else { this.$message.error(data.msg) } }) // 派工单和工单号赋值
this.modalData.seqNo = '000#1TSGD' this.modalData.orderNo = '000#1' } else { this.operationList = [] this.modalData.specialTaskFlag = '' } },
// 新增IPQC巡检记录
saveData () { if (this.modalData.bu === '' || this.modalData.bu == null) { this.$message.warning('请选择BU!') return } if (this.modalData.seqNo === '' || this.modalData.seqNo == null) { this.$message.warning('请选择派工单!') return } if (this.modalData.orderNo === '' || this.modalData.orderNo == null) { this.$message.warning('请选择工单!') return } if (this.modalData.inspectionTypeNo === '' || this.modalData.inspectionTypeNo == null) { this.$message.warning('请选择检验类型!') return } if (this.modalData.specialTaskFlag !== 'Y' && (this.modalData.partNo === '' || this.modalData.partNo == null)) { this.$message.warning('请选择物料!') return } if (this.modalData.operationDesc === '' || this.modalData.operationDesc == null) { this.$message.warning('请选择工序!') return } if (this.modalData.specialTaskFlag !== 'Y' && (this.modalData.resourceId === '' || this.modalData.resourceId == null)) { this.$message.warning('请选择机台!') return } if (this.modalData.rollQty === '' || this.modalData.rollQty == null) { this.$message.warning('请填写送检数量!') return } if (this.modalData.umId === '' || this.modalData.umId == null) { this.$message.warning('请选择单位!') return } if (this.controlData.baseData === '控制' && (this.modalData.templateId == null || this.modalData.templateId === '')) { this.$message.warning('请选择检验模板!') return } this.saveLoading = true if(this.modalData.flag === '1'){ saveOsInspection(this.modalData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.operationList = [] this.resourceList = [] this.partList = [] this.modalFlag = false this.$message.success('操作成功') } else { this.$message.error(data.msg) } this.saveLoading = false }).catch(()=>{ this.saveLoading = false }) } },
// 获取主信息数据列表
getDataList () { this.searchLoading = true this.searchData.limit = this.pageSize this.searchData.page = this.pageIndex qcIPQCInspectionSearch(this.searchData).then(({data}) => { if (data.code === 0) { this.dataList = data.page.list this.pageIndex = data.page.currPage this.pageSize = data.page.pageSize this.totalPage = data.page.totalCount this.searchLoading = false } else { this.searchLoading = false } }).catch(()=>{ this.searchLoading = false }) },
// 每页数
sizeChangeHandle (val) { this.pageSize = val this.pageIndex = 1 this.getDataList() },
// 当前页
currentChangeHandle (val) { this.pageIndex = val this.getDataList() },
// 子明细每页数
sizeChangeHandle2 (val) { this.pageSize2 = val },
// 子明细当前页
currentChangeHandle2 (val) { this.pageIndex2 = val },
// 多选
selectionChangeHandle (val) { this.dataListSelections = val },
// 删除检验记录
deleteModal () { if (this.IPQCSelections.length === 0) { this.$alert('请勾选要删除的检验单!', '提示', { confirmButtonText: '确定' }) return false } this.$confirm(`是否删除该 `+ this.IPQCSelections.length +` 条检验记录?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { let tempData = { submitList: this.IPQCSelections } ipqcRecordDelete(tempData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.IPQCSelections = [] this.$message.success('操作成功') } else { this.$message.error(data.msg) } }) }) },
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 = '' } } this.saveDetailInformation(type) },
// 新增明细信息
saveDetailInformation (type) { 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 saveIPQCDetailedRecord(this.saveInformationData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.detailInformationFlag = false this.$message.success('操作成功') } else { this.$message.error(data.msg) } this.transferLoadFlag = false }).catch(()=>{ this.transferLoadFlag = false }) },
// 开始检验
actionModal (row) { this.actionData = { site: row.site, buNo: row.buNo, inspectionNo: row.inspectionNo } getIPQCItemObjectList(this.actionData).then(({data}) => { if (data && data.code === 0) { if (data.rows.length === 0) { this.actionModal2() } else { this.itemObjectList = data.rows this.ItemObjectModelFlag = true } } else { this.$message.error(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 } actionIPQCInspection(tempData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.$message.success('操作成功') this.ItemObjectModelFlag = false } else { this.$message.error(data.msg) } }) }) },
// 明细记录信息查询
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.cinvSourceCode = row.cinvSourceCode 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 this.detailData.notPassQty = row.notPassQty } this.detailData.batchQualifiedQty = row.batchQualifiedQty this.getInspectionFormData() this.detailInformationFlag = true },
// 检验单明细
getInspectionFormData () { ipqcDetailSearch(this.detailData).then(({data}) => { if (data && data.code === 0) { this.detailList = data.rows } else { this.detailList = [] } }) },
// 子明细记录信息查询
subDetailModal (row) { this.subDetailLoading = true this.subDetailData = row this.pageIndex2 = 1 selectIPQCSubDetailedRecord(this.subDetailData).then(({data}) => { if (data.code === 0) { this.tableData = data.rows } this.subDetailLoading = false }).catch(()=>{ this.subDetailLoading = false }) this.batchAddData = { samplingLocation: '', samplingLocationB: '', samplingNumber: '' } this.subDetailFlag = true },
// 子明细分页查询
subDetailModal2 () { selectIPQCSubDetailedRecord(this.subDetailData).then(({data}) => { if (data.code === 0) { this.tableData = data.rows } }) },
// 审核按钮
submitResult () { let tempData1 = '' // 记录不是待审核状态的单号
let tempData2 = '' // 记录处置措施未填写的单号
if (this.IPQCSelections.length === 0) { this.$alert('请勾选要审核的检验单!', '提示', { confirmButtonText: '确定' }) return false } for (let i = 0; i < this.IPQCSelections.length; i++) { if (this.IPQCSelections[i].state !== '待审核'){ tempData1 = tempData1 + this.IPQCSelections[i].inspectionNo + '、' } if (this.IPQCSelections[i].inspectionResult === '不合格' && (this.IPQCSelections[i].disposalMeasures === '' || this.IPQCSelections[i].disposalMeasures == null)) { tempData2 = tempData2 + this.IPQCSelections[i].inspectionNo + '、' } } if (tempData1 !== ''){ tempData1 = tempData1.substring(0, tempData1.length - 1) this.$alert('检验单号 ' + tempData1 + ' 不是待审核状态!', '提示', { confirmButtonText: '确定' }) return false } if (tempData2 !== ''){ tempData2 = tempData2.substring(0, tempData2.length - 1) this.$alert('检验单号 ' + tempData2 + ' 的处置措施未选择!', '提示', { confirmButtonText: '确定' }) return false } this.$confirm(`已确认单据信息无误,确定审核该 ` + this.IPQCSelections.length + ` 条记录`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { this.submitData.submitList = this.IPQCSelections saveIPQCSubmitResult(this.submitData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.IPQCSelections = [] this.$message.success('操作成功') } else { this.$message.error(data.msg) } }) }) },
// 取消审核
cancelApproval () { let tempData1 = '' // 记录不是已完成状态的单号
if (this.IPQCSelections.length === 0) { this.$message.warning('请勾选要取消审核的检验单!') return } for (let i = 0; i < this.IPQCSelections.length; i++) { if (this.IPQCSelections[i].state !== '已完成') { tempData1 = tempData1 + this.IPQCSelections[i].inspectionNo + '、' } } if (tempData1 !== '') { tempData1 = tempData1.substring(0, tempData1.length - 1) this.$message.warning('检验单号 ' + tempData1 + ' ,不是已完成状态!') return } this.$confirm(`确定取消审核该 ` + this.IPQCSelections.length + ` 条记录`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { this.submitData.submitList = this.IPQCSelections cancelApproval2(this.submitData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.IPQCSelections = [] this.$message.success('操作成功') } else { this.$message.error(data.msg) } }) }) },
// 子明细方法
// 表格的新增
rowClassName ({ row, rowIndex }) { row.xh = rowIndex + 1 row.num = this.tableData.indexOf(row) + 1 },
// 单选框选中数据
handleDetailSelectionChange (selection) { this.checkedDetail = selection },
// 点击新增更多
handleAddBtn (td) { checkIPQCIsSubmit(td).then(({data}) => { if (data.flag !== 1) { let obj = { subDetailValue: '', samplingLocation: '', samplingLocationB: '', subDetailValueB: '', subDetailValueC: '', subDetailValueD: '', subDetailValueE: '', } this.tableData.push(obj) } else { this.$message.error('记录已提交') } }) },
// 批量新增操作
batchHandleAdd (td) { checkIPQCIsSubmit(td).then(({data}) => { if (data.flag !== 1) { this.batchHandleAddModalFlag = true } else { this.$message.error('记录已提交') } }) },
// 批量新增行
batchHandleAddModal () { for (let i = 0; i < this.batchAddData.samplingNumber; i++) { let obj = { samplingLocation: this.batchAddData.samplingLocation, samplingLocationB: this.batchAddData.samplingLocationB, subDetailValue: '', subDetailValueB: '', subDetailValueC: '', subDetailValueD: '', subDetailValueE: '', } this.tableData.push(obj) } this.batchHandleAddModalFlag = false },
// 回车事件
nextFocus1 (index) { let a = `${index + 1}` + `a` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus2 (index) { let a = `${index + 1}` + `b` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus3 (index) { let a = `${index + 1}` + `c` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus4 (index) { let a = `${index + 1}` + `d` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus5 (index) { let a = `${index + 1}` + `e` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus6 (index) { let a = `${index + 1}` + `f` this.$nextTick(() => { this.$refs[a].focus() }) }, nextFocus7 (index) { let a = `${index + 1}` + `g` this.$nextTick(() => { 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].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' } } },
//删除
handleDeleteBtn (td) { checkIPQCIsSubmit(td).then(({data}) => { if (data.flag !== 1) { if (this.checkedDetail.length === 0) { this.$alert("请先选择要删除的数据", "提示", { confirmButtonText: "确定", }) } else { this.$confirm("请是否确认删除该子明细记录?", "提示", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning", callback: (action) => { if (action === "confirm") { let val = this.checkedDetail val.forEach((val, index) => { this.tableData.splice(this.tableData.indexOf(val), 1) if (this.templateTableData.length === 0) { this.pageIndex2-- } }) this.$message({ message: "删除成功!", type: "success", }) return } else { this.$message({ message: "已取消删除操作", type: "warning", }) return } }, }) } } else { this.$message.error('记录已提交') } }) },
// 新增子明细记录
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 saveIPQCSubDetailed(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.error(data.msg) } }) },
// 检验结论改变事件
resultChange () { if (this.detailData.inspectionResult === '不合格') { this.detailData.passQty = 0 } },
// 校验用户是否收藏
favoriteIsOk () { let userFavorite = { userId: this.$store.state.user.id, languageCode: this.$i18n.locale } userFavoriteList(userFavorite).then(({data}) => { for (let i = 0; i < data.list.length; i++) { if(this.$route.meta.menuId === data.list[i].menuId){ this.favorite = true } } }) },
// 收藏 OR 取消收藏
favoriteFunction () { let userFavorite = { userId: this.$store.state.user.id, functionId: this.$route.meta.menuId, } if (this.favorite) { removeUserFavorite(userFavorite).then(({data}) => { this.$message.success(data.msg) this.favorite = false }) } else { // 收藏
saveUserFavorite(userFavorite).then(({data}) => { this.$message.success(data.msg) this.favorite = true }) } },
async exportExcel() { this.searchData.limit = -1 this.searchData.page = 1 excel.exportTable({ url: "/pms/qc/qcIPQCInspectionSearch", columnMapping: this.columnList, //可以直接用table,不需要的列就剔除
mergeSetting: [],//需要合并的列
params: this.searchData, fileName: this.exportName+".xlsx", rowFetcher: res => res.data, columnFormatter: [], dropColumns: [], }) },
// 动态列开始 获取 用户保存的 格式列
async getTableUserColumn (tableId, columnId) { let queryTableUser = { userId: this.$store.state.user.name, functionId: this.$route.meta.menuId, tableId: tableId, status: true, languageCode: this.$i18n.locale } await getTableUserListLanguage(queryTableUser).then(({data}) => { if (data.rows.length > 0) { switch (columnId) { case 1: this.columnList1 = data.rows break; case 2: this.detailColumnList = data.rows break; case 3: this.seqDetailColumnList = data.rows break; } } else { this.getColumnList(tableId, columnId) } }) },
// 获取 tableDefault 列
async getColumnList (tableId, columnId) { let queryTable= { functionId: this.$route.meta.menuId, tableId: tableId, languageCode: this.$i18n.locale } await getTableDefaultListLanguage(queryTable).then(({data}) => { if (data.rows.length !== 0) { switch (columnId) { case 1: this.columnList1 = data.rows break; case 2: this.detailColumnList = data.rows break; case 3: this.seqDetailColumnList = data.rows break; } } }) },
/** * 明细导入后将返回值回传给父组件 * @param 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' } } } }, searchSeqInfo () { let tempData = { // 取modalData.bu中index为0的字符作为site 例:2_01-Label 取2
bu: this.modalData.bu, seqNo: this.seqDetailData.seqNo, orderNo: this.seqDetailData.orderNo, sku: this.seqDetailData.sku, partDesc: this.seqDetailData.partDesc, partNo: this.seqDetailData.partNo, operationDesc: this.seqDetailData.operationDesc, status: this.seqDetailData.status } if (!this.seqDetailData.seqNo && !this.seqDetailData.orderNo && !this.seqDetailData.sku && !this.seqDetailData.partNo && !this.seqDetailData.partDesc && !this.seqDetailData.operationDesc){ this.seqInfoList = [] } else { searchSeqInfo(tempData).then(({data}) => { if (data && data.code === 0) { this.seqInfoList = data.rows } else { this.$message.error(data.msg) } }) } }, closeDialog () { this.seqDetailData = { seqNo : '', orderNo: '', sku: '', partNo: '', partDesc: '', operationDesc: '', status: '已开工' } this.seqInfoList = [] },
//获取按钮的权限数据
getButtonAuthData () { let searchFlag = this.isAuth(this.menuId + ":search") let checkFlag = this.isAuth(this.menuId + ":check") let saveFlag = this.isAuth(this.menuId + ":save") 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") //处理页面的权限数据
this.authSearch = !searchFlag this.authCheck = !checkFlag this.authSave = !saveFlag this.authDelete = !deleteFlag this.authDetail = !detailFlag this.authFile = !fileFlag this.authCancelCheck = !cancelCheckFlag }, } }</script>
<style>/* 添加自定义主题中缺失的图标定义 */.el-icon-s-platform:before { content: "\e7bd";}</style>
<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>
|