|
|
|
@ -165,7 +165,7 @@
|
|
|
|
|
<el-option v-for="item in suppliers"
|
|
|
|
|
:key="item.erpId"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.erpId">
|
|
|
|
|
:value="item.name">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</template>
|
|
|
|
@ -445,7 +445,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
tableCountChange(row) {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
this.currentRow.supId = row.supName;
|
|
|
|
|
this.currentRow.supId= this.suppliers.find(item => item.name == row.supName).erpId
|
|
|
|
|
updateDetail(this.currentRow);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|