|
|
|
@ -912,6 +912,7 @@ |
|
|
|
getFQCItemObjectList, // 查询项目设备 |
|
|
|
dataAcquisitionByItem, // 根据项目数据采集 |
|
|
|
cancelApproval2, // 取消审核 |
|
|
|
searchPartAttributeDetails, // 查询物料属性模板 |
|
|
|
} from "@/api/qc/qc.js" |
|
|
|
import {getTableDefaultListLanguage, getTableUserListLanguage} from "@/api/table.js" |
|
|
|
import Chooselist from '@/views/modules/common/Chooselist_eam' |
|
|
|
@ -3178,6 +3179,8 @@ |
|
|
|
// 选中派工单号 |
|
|
|
getRowData1 (row) { |
|
|
|
this.modalData.sku = row.sku |
|
|
|
this.modalData.partNo = row.partNo |
|
|
|
this.modalData.partDesc = row.partDesc |
|
|
|
this.modalData.cinvSourceCode = row.cinvSourceCode |
|
|
|
this.modalData.orderNo = row.orderNo |
|
|
|
this.modalData.seqNo = row.seqNo |
|
|
|
@ -3187,6 +3190,21 @@ |
|
|
|
this.modalData.rollQty = row.qtyrequired |
|
|
|
this.modalData.sjzs = row.sjzs |
|
|
|
this.getOperationList() |
|
|
|
//查询物料对应的模板 |
|
|
|
let params = { |
|
|
|
site: this.modalData.bu.split('_')[0], |
|
|
|
buNo: this.modalData.bu.split('_')[1], |
|
|
|
partNo: this.modalData.partNo, |
|
|
|
attributeNo: this.modalData.partNo, |
|
|
|
partDesc: this.modalData.partDesc, |
|
|
|
attributeType: 'A' |
|
|
|
} |
|
|
|
searchPartAttributeDetails(params).then(({data}) => { |
|
|
|
if (data.total = 1){ |
|
|
|
this.modalData.templateId = data.rows[0].templateId |
|
|
|
this.modalData.templateName = data.rows[0].templateName |
|
|
|
} |
|
|
|
}) |
|
|
|
this.seqDetailFlag = false |
|
|
|
}, |
|
|
|
|
|
|
|
|