Преглед на файлове

change: 供应商信息字段调整.

peter преди 1 година
родител
ревизия
23576633cf
променени са 2 файла, в които са добавени 20 реда и са изтрити 2 реда
  1. 1 0
      src/interface.ts
  2. 19 2
      src/pages/purchase-order/edit.vue

+ 1 - 0
src/interface.ts

@@ -73,6 +73,7 @@ export interface IVendorItem {
   label: string
   Primary_Contact_name: string
   PDF_display: string
+  PDF_display2: string
   [x: string]: string | null
 }
 export interface ICompanyItem {

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

@@ -167,9 +167,18 @@
                     clearable
                   ></el-select-v2>
                 </el-form-item>
-                <div style="white-space: pre-wrap">
+                <div
+                  v-if="typeof computedCompany.taxReimbursement === 'undefined'"
+                  style="white-space: pre-wrap"
+                >
                   {{ computedVendor.PDF_display }}
                 </div>
+                <div
+                  v-else
+                  style="white-space: pre-wrap"
+                >
+                  {{ computedVendor.PDF_display2 }}
+                </div>
               </div>
               <div class="form-area-right">
                 <el-form-item label="采购订单 #:">
@@ -556,9 +565,15 @@
               <div class="column-vendor">
                 {{ computedVendor.label }}
               </div>
-              <div class="column-vendor">
+              <div
+                v-if="typeof computedCompany.taxReimbursement === 'undefined'"
+                class="column-vendor"
+              >
                 {{ computedVendor.PDF_display }}
               </div>
+              <div class="column-vendor">
+                {{ computedVendor.PDF_display2 }}
+              </div>
             </div>
             <div class="flex-auto">
               <div class="flex">
@@ -1618,6 +1633,7 @@ const computedVendor = computed(() => {
     : {
         Primary_Contact_name: '',
         PDF_display: '',
+        PDF_display2: '',
         label: '',
         value: '',
       }
@@ -1644,6 +1660,7 @@ const getSupplierLists = utils.debounce(function (string: string) {
           value: i.supplier_id || i.id,
           Primary_Contact_name: i.Primary_Contact_name || '',
           PDF_display: i.PDF_display || '',
+          PDF_display2: i.PDF_display2 || '',
         }
       })
     })