Bugzilla – Attachment 169816 Details for
Bug 37288
Edit data provider form does not show the name
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37288: Improve display of data provider edit form
Bug-37288-Improve-display-of-data-provider-edit-fo.patch (text/plain), 3.25 KB, created by
David Nind
on 2024-07-29 09:58:19 UTC
(
hide
)
Description:
Bug 37288: Improve display of data provider edit form
Filename:
MIME Type:
Creator:
David Nind
Created:
2024-07-29 09:58:19 UTC
Size:
3.25 KB
patch
obsolete
>From 7872f076ca690ea6f992bb2109b9d9e8bed62b34 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Wed, 17 Jul 2024 08:36:16 +0000 >Subject: [PATCH] Bug 37288: Improve display of data provider edit form > >This patch makes some improvements to the edit form for data providers. It delays page display until the counter registry has responded and also improves the display of the "create manually" and "Create from registry" buttons > >Test plan: >1) Create a Data provider in the ERM module >2) Click to edit that new provider >3) The page will load and there will be a slight delay before the Data provider name input is populated >4) The "Create manually" button will also be visible >5) Apply patch and yarn build >6) Hard refresh the browser and repeat steps 1 and 2 >7) This time when the page loads the provider name should be prepopulated and no manual creation button will be visible > >Signed-off-by: David Nind <david@davidnind.com> >--- > .../ERM/UsageStatisticsDataProvidersFormAdd.vue | 12 +++++++++--- > 1 file changed, 9 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue >index a935459249..8311922e2b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue >@@ -59,7 +59,10 @@ > </v-select> > <span class="required">{{ $__("Required") }}</span> > <button >- v-if="!manual_form" >+ v-if=" >+ !manual_form && >+ !usage_data_provider.erm_usage_data_provider_id >+ " > type="button" > style="margin-left: 1em" > @click="createManualProvider()" >@@ -67,7 +70,10 @@ > {{ $__("Create manually") }} > </button> > <button >- v-else >+ v-if=" >+ manual_form && >+ !usage_data_provider.erm_usage_data_provider_id >+ " > type="button" > style="margin-left: 1em" > @click="createFromRegistry()" >@@ -440,7 +446,6 @@ export default { > this.usage_data_provider.report_types = > this.formatReportTypes(usage_data_provider.report_types) > this.getCounterRegistry(usage_data_provider.name, "edit") >- this.initialized = true > }, > error => {} > ) >@@ -463,6 +468,7 @@ export default { > ) > } > this.searching = false >+ this.initialized = true > }, > error => {} > ) >-- >2.39.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 37288
:
169074
|
169793
|
169811
|
169816
|
169817
|
169934
|
169935