Ver código fonte

feat: 创建PO.供应商搜索增加曾用名支持.

peter 1 mês atrás
pai
commit
8722a46780
1 arquivos alterados com 33 adições e 10 exclusões
  1. 33 10
      src/pages/purchase-order/edit.vue

+ 33 - 10
src/pages/purchase-order/edit.vue

@@ -1909,7 +1909,7 @@ const computedVendor = computed(() => {
         label: '',
         value: '',
         Payment_Terms: '',
-        High_Risk_Supplier: false
+        High_Risk_Supplier: false,
       }
 })
 
@@ -1930,17 +1930,31 @@ const getSupplierLists = function (string: string) {
       reject('false')
       return
     }
-    const data = {
-      value: keyword,
-      name: 'Vendors',
-      api_name: 'Vendor_Name',
-      contains: 'contains',
-      page: 1,
-      limit: 100,
+    const query = {
+      title: 'Vendors',
+      comm: {
+        group_operator: 'OR',
+        group: [
+          {
+            comparator: 'contains',
+            field: {
+              api_name: 'Vendor_Name',
+            },
+            value: keyword,
+          },
+          {
+            comparator: 'contains',
+            field: {
+              api_name: 'Previous_Supplier_Name',
+            },
+            value: keyword,
+          },
+        ],
+      },
     }
 
     vendorLoading.value = true
-    getSearchData(data)
+    getSearchData2(query)
       .then((response) => {
         if (response.data.code !== 1) return false
         const res = response.data.result || { data: [] }
@@ -1949,7 +1963,11 @@ const getSupplierLists = function (string: string) {
           .map((i: any) => {
             return {
               ...i,
-              label: i.Suppliers_Name || i.Vendor_Name,
+              label:
+                (i.Suppliers_Name || i.Vendor_Name) +
+                (i.Previous_Supplier_Name && i.Previous_Supplier_Name != null
+                  ? ` (曾用名: ${i.Previous_Supplier_Name})`
+                  : ''),
               value: i.supplier_id || i.id,
               Primary_Contact_name: i.Primary_Contact_name || '',
               PDF_display: i.PDF_display || '',
@@ -1991,6 +2009,11 @@ const getSearchData = async function (p: any) {
       return response
     })
 }
+const getSearchData2 = async function (p: any) {
+  return await request.post('/common/getPublicListsAll', p).then((response) => {
+    return response
+  })
+}
 
 const computedCompanyList = computed(() => {
   return userInfo.value.Organization === 'PrimePac'