Bugzilla – Attachment 192044 Details for
Bug 41182
SUSHI harvest should send a full date
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 41182: Adjust interface for new field
Bug-41182-Adjust-interface-for-new-field.patch (text/plain), 3.39 KB, created by
Nick Clemens (kidclamp)
on 2026-01-26 16:15:53 UTC
(
hide
)
Description:
Bug 41182: Adjust interface for new field
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2026-01-26 16:15:53 UTC
Size:
3.39 KB
patch
obsolete
>From abc6a00f02950645591166965eafe722d24d0f2a Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 26 Jan 2026 16:11:13 +0000 >Subject: [PATCH] Bug 41182: Adjust interface for new field > >--- > .../ERM/UsageStatisticsDataProviderDetails.vue | 10 ++++++++++ > .../ERM/UsageStatisticsDataProvidersFormAdd.vue | 17 +++++++++++++++++ > 2 files changed, 27 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProviderDetails.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProviderDetails.vue >index c418dd201f9..6fe0b7f1c43 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProviderDetails.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProviderDetails.vue >@@ -89,6 +89,16 @@ > {{ usage_data_provider.requestor_email }} > </span> > </li> >+ <li> >+ <label>{{ $__("Date format") }}:</label> >+ <span id="usage_data_provider_dateformat"> >+ {{ >+ usage_data_provider.dateformat == 7 >+ ? $__("7 digit") >+ : $__("10 digit") >+ }} >+ </span> >+ </li> > </ol> > </fieldset> > </template> >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 508a0eda1c2..de152f9c065 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 >@@ -319,6 +319,18 @@ > :disabled="!selected_provider && !manual_form" > /> > </li> >+ <li> >+ <label for="usage_data_provider_dateformat" >+ >{{ $__("Date format") }}: >+ </label> >+ <v-select >+ id="usage_data_provider_dateformat" >+ v-model="usage_data_provider.dateformat" >+ label="description" >+ :reduce="dateformat => dateformat.value" >+ :options="dateformats" >+ /> >+ </li> > </ol> > <ol class="credentials_form" v-if="sushi_service"> > <h3>{{ $__("Credentials information") }}</h3> >@@ -430,6 +442,10 @@ export default { > { description: $__("Active"), value: 1 }, > { description: $__("Inactive"), value: 0 }, > ]); >+ const dateformats = ref([ >+ { description: $__("7 digit"), value: 7 }, >+ { description: $__("10 digit"), value: 10 }, >+ ]); > const registry_data = ref([]); > const valid_report_types = ref([ > ...authorisedValues.value.av_report_types, >@@ -629,6 +645,7 @@ export default { > initialized, > previous_route, > statuses, >+ dateformats, > registry_data, > valid_report_types, > selected_provider, >-- >2.39.5
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 41182
:
189044
|
190713
|
192041
|
192042
|
192043
|
192044
|
192045
|
192046
|
192047
|
192048
|
192049
|
192050