Ver código fonte

fix: 修正供应商pdf_display字段. 供应商候选数据新增过滤逻辑. 样式微调.

peter 1 ano atrás
pai
commit
cd84907dda
1 arquivos alterados com 19 adições e 11 exclusões
  1. 19 11
      src/pages/purchase-order/edit.vue

+ 19 - 11
src/pages/purchase-order/edit.vue

@@ -571,7 +571,10 @@
               >
                 {{ computedVendor.PDF_display }}
               </div>
-              <div class="column-vendor">
+              <div
+                v-else
+                class="column-vendor"
+              >
                 {{ computedVendor.PDF_display2 }}
               </div>
             </div>
@@ -1660,16 +1663,18 @@ const getSupplierLists = utils.debounce(function (string: string) {
     .then((response) => {
       if (response.data.code !== 1) return
       const res = response.data.result
-      vendorList.value = res.data.map((i: any) => {
-        return {
-          ...i,
-          label: i.Suppliers_Name || i.Vendor_Name,
-          value: i.supplier_id || i.id,
-          Primary_Contact_name: i.Primary_Contact_name || '',
-          PDF_display: i.PDF_display || '',
-          PDF_display2: i.PDF_display2 || '',
-        }
-      })
+      vendorList.value = res.data
+        .filter((i: any) => !i.Hide_Record)
+        .map((i: any) => {
+          return {
+            ...i,
+            label: i.Suppliers_Name || i.Vendor_Name,
+            value: i.supplier_id || i.id,
+            Primary_Contact_name: i.Primary_Contact_name || '',
+            PDF_display: i.PDF_display || '',
+            PDF_display2: i.PDF_display2 || '',
+          }
+        })
     })
     .finally(() => {
       vendorLoading.value = false
@@ -2250,6 +2255,9 @@ input[type='number'] {
       & > div {
         padding-bottom: 8pt;
       }
+      &:first-of-type {
+        padding-right: 10pt;
+      }
     }
     .column-vendor {
       vertical-align: top;