|
@@ -72,7 +72,7 @@
|
|
asyncRemove
|
|
asyncRemove
|
|
>
|
|
>
|
|
<template #selectionSupplier="props">
|
|
<template #selectionSupplier="props">
|
|
- <a-select v-model:value="props.row.selectionSupplier" style="width: 100%;" @change="selectSupplier(props)">
|
|
|
|
|
|
+ <a-select v-model:value="props.row.selectionSupplier" style="width: 100%;" @change="selectSupplier(props)" allowClear>
|
|
<a-select-option v-for="item in supplierList" :key="item.value" >{{ item.label }}</a-select-option>
|
|
<a-select-option v-for="item in supplierList" :key="item.value" >{{ item.label }}</a-select-option>
|
|
</a-select>
|
|
</a-select>
|
|
</template>
|
|
</template>
|
|
@@ -345,7 +345,9 @@ import { log } from 'console';
|
|
try {
|
|
try {
|
|
SupplierQuotationDetailsTable.dataSource.map(event=>{
|
|
SupplierQuotationDetailsTable.dataSource.map(event=>{
|
|
if(item.productCode==event.productCode){
|
|
if(item.productCode==event.productCode){
|
|
|
|
+ item=Object.assign(item,event)
|
|
item.selectionSupplier = event.quotationSuppiler
|
|
item.selectionSupplier = event.quotationSuppiler
|
|
|
|
+ item.deliveryTime=event.childDeliveryTime
|
|
throw 'break'
|
|
throw 'break'
|
|
}
|
|
}
|
|
})
|
|
})
|