Bugzilla – Attachment 153066 Details for
Bug 34206
[22.11] Vendor options do not show on agreements and licenses form
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34206: Fix display of vendor options in agreements and licenses forms
Bug-34206-Fix-display-of-vendor-options-in-agreeme.patch (text/plain), 2.26 KB, created by
Pedro Amorim
on 2023-07-05 15:57:52 UTC
(
hide
)
Description:
Bug 34206: Fix display of vendor options in agreements and licenses forms
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2023-07-05 15:57:52 UTC
Size:
2.26 KB
patch
obsolete
>From e6f3386287ba8cbf07542dc3d60e672c95b43d95 Mon Sep 17 00:00:00 2001 >From: John Doe <you@example.com> >Date: Wed, 5 Jul 2023 15:56:46 +0000 >Subject: [PATCH] Bug 34206: Fix display of vendor options in agreements and > licenses forms > >Test plan: >1) Go to ERM licenses /cgi-bin/koha/erm/licenses >2) Click 'New license' and click the 'vendor' dropdown >3) Notice how it doesn't bring up any options >4) Apply patch and repeat test plan. Notice how now the vendor options show. >5) Repeat test plan for agreements > >The test plan should be done using the 22.11.x branch >--- > .../prog/js/vue/components/ERM/AgreementsFormAdd.vue | 2 +- > .../prog/js/vue/components/ERM/LicensesFormAdd.vue | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue >index e551a94532..7efe2c5b71 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue >@@ -28,7 +28,7 @@ > <v-select > id="agreement_vendor_id" > v-model="agreement.vendor_id" >- label="display_name" >+ label="name" > :reduce="vendor => vendor.id" > :options="vendors" > /> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue >index 674ac5cc09..3648164da3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue >@@ -28,7 +28,7 @@ > <v-select > id="license_vendor_id" > v-model="license.vendor_id" >- label="display_name" >+ label="name" > :reduce="vendor => vendor.id" > :options="vendors" > /> >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34206
:
153066
|
153067