Browse Source

2026-02-12

1、销售报价查询优化
2、ecn 新IFS料号显示优化
master
fengyuan_yang 2 weeks ago
parent
commit
e6ee967507
  1. 8
      src/views/modules/changeManagement/changeRecord.vue
  2. 7
      src/views/modules/quote/index.vue

8
src/views/modules/changeManagement/changeRecord.vue

@ -316,7 +316,7 @@
min-width="170"
label="New IFS Part No.">
<template slot-scope="scope">
<el-input clearable @keydown.native.prevent :ref="`newPartNo${scope.$index}`" v-model="scope.row.newPartNo" style="width:77%"></el-input>
<el-input clearable @keydown.native.prevent :ref="`newPartNo${scope.$index}`" v-model="scope.row.finalPartNo" style="width:77%"></el-input>
<el-button :disabled="showModalFlag||changeRequestDetailFlag('newPartNo') === 'N'" type="primary" @click="choosePartNo(scope.row)" style="width:18%;padding: 3px 7px">·&nbsp;·&nbsp;·</el-button>
</template>
</el-table-column>
@ -3563,7 +3563,10 @@
//
getRowData (row) {
// newPartNoPLM
this.$set(this.tempPartRow,'newPartNo', row.testPartNo)
// finalPartNoIFS
this.$set(this.tempPartRow,'finalPartNo', row.finalPartNo)
this.partModelFlag = false
},
@ -4226,6 +4229,9 @@
this.modalData.userName = this.$store.state.user.name
this.modalData.menuId = this.$route.meta.menuId
// finalPartNoIFSnewPartNoPLM
// newPartNoPLM
this.modalData.detailList = this.chooseDataList
this.modalData.ecnTypeData = this.form
this.modalData.costImpactData = this.costImpactData

7
src/views/modules/quote/index.vue

@ -620,8 +620,11 @@ export default {
if (data && data.code === 0){
this.dataList = data.rows
this.total = data.total
//
this.loadQuoteDetailInfo()
// N+1
// 201+20=21
// SQLJOIN
// this.loadQuoteDetailInfo()
if (this.dataList[0] !== undefined) {
this.handleSelect(this.dataList[0])
} else {

Loading…
Cancel
Save