|
@@ -1909,6 +1909,7 @@ const computedVendor = computed(() => {
|
|
label: '',
|
|
label: '',
|
|
value: '',
|
|
value: '',
|
|
Payment_Terms: '',
|
|
Payment_Terms: '',
|
|
|
|
+ High_Risk_Supplier: false
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
|
|
@@ -1955,6 +1956,18 @@ const getSupplierLists = function (string: string) {
|
|
PDF_display2: i.PDF_display2 || '',
|
|
PDF_display2: i.PDF_display2 || '',
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+ if (
|
|
|
|
+ vendorList.value.length === 1 &&
|
|
|
|
+ vendorList.value[0].High_Risk_Supplier === true
|
|
|
|
+ ) {
|
|
|
|
+ ElMessageBox.alert(
|
|
|
|
+ '请注意该供应商在我们黑名单中。<br>Please note that this supplier is in our black list.',
|
|
|
|
+ 'Alert',
|
|
|
|
+ {
|
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
|
+ },
|
|
|
|
+ )
|
|
|
|
+ }
|
|
vendorLoading.value = false
|
|
vendorLoading.value = false
|
|
loading.value = false
|
|
loading.value = false
|
|
resolve(true)
|
|
resolve(true)
|
|
@@ -2126,6 +2139,7 @@ const getProductData = async (id: string) =>
|
|
item.Supplier?.id &&
|
|
item.Supplier?.id &&
|
|
!computedRecommandVendorID.value.includes(item.Supplier.id)
|
|
!computedRecommandVendorID.value.includes(item.Supplier.id)
|
|
) {
|
|
) {
|
|
|
|
+ console.log(item, 'item')
|
|
recommandVendor.value.push({
|
|
recommandVendor.value.push({
|
|
id: item.Supplier.id,
|
|
id: item.Supplier.id,
|
|
name: item.Supplier.name,
|
|
name: item.Supplier.name,
|