Browse Source

2025-04-10

BOM Routing 相关排除已转正的临时物料
master
fengyuan_yang 9 months ago
parent
commit
fb22520992
  1. 4
      src/views/modules/part/partInformation.vue

4
src/views/modules/part/partInformation.vue

@ -1444,7 +1444,7 @@
<el-input v-model="copyPartData.partDesc" style="width: 200px"></el-input>
</el-form-item>
<el-form-item label="To Site">
<el-input v-model="copyPartData.site" style="width: 60px"></el-input>
<el-input v-model="copyPartData.site" :readonly="modalData.flag === '3'" style="width: 60px"></el-input>
</el-form-item>
</el-form>
</fieldset>
@ -4983,6 +4983,7 @@
this.modalData.routingAlternativeList = this.routingAlternativeSelections
partInformationToOfficial(this.modalData).then(({data}) => {
if (data && data.code === 0) {
this.searchData.partNo = this.modalData.ifsPartNo
this.getDataList()
this.modalFlag = false
this.$message({
@ -5119,6 +5120,7 @@
this.copyLoading = true
copyPart(this.copyPartData).then(({data}) => {
if (data && data.code === 0) {
this.searchData.partNo = this.copyPartData.partNo
this.getDataList()
this.copyPartModelFlag = false
if (this.modalData.flag === '3') {

Loading…
Cancel
Save