|
@@ -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;
|