|
@@ -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 || '',
|
|
|
}
|
|
|
})
|
|
|
})
|