Browse Source

feat: 创建po单页面, 增加 黑名单供应商 提醒逻辑.

peter 2 tháng trước cách đây
mục cha
commit
c1d3fe8dbe
2 tập tin đã thay đổi với 16 bổ sung1 xóa
  1. 2 1
      src/interface.ts
  2. 14 0
      src/pages/purchase-order/edit.vue

+ 2 - 1
src/interface.ts

@@ -86,7 +86,8 @@ export interface IVendorItem {
   PDF_display: string
   PDF_display2: string
   Payment_Terms: string
-  [x: string]: string | null
+  High_Risk_Supplier: Boolean
+  [x: string]: string | Boolean | null
 }
 
 export interface IRecommandVendor {

+ 14 - 0
src/pages/purchase-order/edit.vue

@@ -1909,6 +1909,7 @@ const computedVendor = computed(() => {
         label: '',
         value: '',
         Payment_Terms: '',
+        High_Risk_Supplier: false
       }
 })
 
@@ -1955,6 +1956,18 @@ const getSupplierLists = function (string: string) {
               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
         loading.value = false
         resolve(true)
@@ -2126,6 +2139,7 @@ const getProductData = async (id: string) =>
           item.Supplier?.id &&
           !computedRecommandVendorID.value.includes(item.Supplier.id)
         ) {
+          console.log(item, 'item')
           recommandVendor.value.push({
             id: item.Supplier.id,
             name: item.Supplier.name,