Bugzilla – Attachment 155609 Details for
Bug 34789
Fix typo in erm_eholdings_titles
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34789: Update usage throughout Koha modules and Vue components
Bug-34789-Update-usage-throughout-Koha-modules-and.patch (text/plain), 8.12 KB, created by
Matt Blenkinsop
on 2023-09-14 12:29:43 UTC
(
hide
)
Description:
Bug 34789: Update usage throughout Koha modules and Vue components
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2023-09-14 12:29:43 UTC
Size:
8.12 KB
patch
obsolete
>From c92adfbb96a93d8c9623f91ad3b5e6156c07d8f2 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Thu, 14 Sep 2023 12:26:53 +0000 >Subject: [PATCH] Bug 34789: Update usage throughout Koha modules and Vue > components > >--- > Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm | 8 ++++---- > Koha/ERM/Providers/EBSCO.pm | 2 +- > .../js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue | 6 +++--- > .../js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue | 8 ++++---- > .../js/vue/components/ERM/EHoldingsLocalTitlesShow.vue | 6 +++--- > 5 files changed, 15 insertions(+), 15 deletions(-) > >diff --git a/Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm b/Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm >index 5216a7ce85..9638c7fcd3 100644 >--- a/Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm >+++ b/Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm >@@ -85,7 +85,7 @@ sub _get_unimarc_mapping { > my $monograph_edition = $record->subfield( '205', 'a' ); > my $first_editor = $publisher_name; > my $parent_publication_title_id = ''; # FIXME ? >- my $preceeding_publication_title_id = ''; # FIXME ? >+ my $preceding_publication_title_id = ''; # FIXME ? > my $access_type = $record->subfield( '856', 'y' ); > > return { >@@ -112,7 +112,7 @@ sub _get_unimarc_mapping { > monograph_edition => $monograph_edition, > first_editor => $first_editor, > parent_publication_title_id => $parent_publication_title_id, >- preceeding_publication_title_id => $preceeding_publication_title_id, >+ preceding_publication_title_id => $preceding_publication_title_id, > access_type => $access_type, > }; > } >@@ -146,7 +146,7 @@ sub _get_marc21_mapping { > my $monograph_edition = ''; # FIXME ? > my $first_editor = ''; # FIXME ? > my $parent_publication_title_id = ''; # FIXME ? >- my $preceeding_publication_title_id = ''; # FIXME ? >+ my $preceding_publication_title_id = ''; # FIXME ? > my $access_type = ''; # FIXME ? > > return { >@@ -173,7 +173,7 @@ sub _get_marc21_mapping { > monograph_edition => $monograph_edition, > first_editor => $first_editor, > parent_publication_title_id => $parent_publication_title_id, >- preceeding_publication_title_id => $preceeding_publication_title_id, >+ preceding_publication_title_id => $preceding_publication_title_id, > access_type => $access_type, > }; > } >diff --git a/Koha/ERM/Providers/EBSCO.pm b/Koha/ERM/Providers/EBSCO.pm >index b39ddbba4f..c0904cb225 100644 >--- a/Koha/ERM/Providers/EBSCO.pm >+++ b/Koha/ERM/Providers/EBSCO.pm >@@ -47,7 +47,7 @@ sub build_title { > # monograph_edition => ?, > # first_editor => ?, > # parent_publication_title_id => ?, >- # preceeding_publication_title_id => ?, >+ # preceding_publication_title_id => ?, > # access_type => ?, > }; > if ( $result->{contributorsList} ) { >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue >index 53b6d2b5e2..5877464e82 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue >@@ -202,7 +202,7 @@ > {{ title.parent_publication_title_id }} > </span> > </li> >- <li v-if="title.preceeding_publication_title_id"> >+ <li v-if="title.preceding_publication_title_id"> > <label > >{{ > $__( >@@ -211,7 +211,7 @@ > }}:</label > > > <span> >- {{ title.preceeding_publication_title_id }} >+ {{ title.preceding_publication_title_id }} > </span> > </li> > <li v-if="title.access_type"> >@@ -283,7 +283,7 @@ export default { > monograph_edition: "", > first_editor: "", > parent_publication_title_id: "", >- preceeding_publication_title_id: "", >+ preceding_publication_title_id: "", > access_type: "", > resources: [], > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue >index a446e55a3c..f12109ecf3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue >@@ -333,7 +333,7 @@ > </li> > > <li> >- <label for="title_preceeding_publication_title_id" >+ <label for="title_preceding_publication_title_id" > >{{ > $__( > "Title identifier of any preceding publication title" >@@ -341,8 +341,8 @@ > }}:</label > > > <input >- id="title_preceeding_publication_title_id" >- v-model="title.preceeding_publication_title_id" >+ id="title_preceding_publication_title_id" >+ v-model="title.preceding_publication_title_id" > :placeholder=" > $__( > 'Title identifier of any preceding publication title' >@@ -426,7 +426,7 @@ export default { > monograph_edition: "", > first_editor: "", > parent_publication_title_id: "", >- preceeding_publication_title_id: "", >+ preceding_publication_title_id: "", > access_type: "", > resources: [], > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue >index 24fdddf81a..39dd8b5716 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue >@@ -219,7 +219,7 @@ > {{ title.parent_publication_title_id }} > </span> > </li> >- <li v-if="title.preceeding_publication_title_id"> >+ <li v-if="title.preceding_publication_title_id"> > <label > >{{ > $__( >@@ -228,7 +228,7 @@ > }}:</label > > > <span> >- {{ title.preceeding_publication_title_id }} >+ {{ title.preceding_publication_title_id }} > </span> > </li> > <li v-if="title.access_type"> >@@ -303,7 +303,7 @@ export default { > monograph_edition: "", > first_editor: "", > parent_publication_title_id: "", >- preceeding_publication_title_id: "", >+ preceding_publication_title_id: "", > access_type: "", > resources: [], > }, >-- >2.37.1 (Apple Git-137.1)
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 34789
:
155607
|
155608
|
155609
|
155610
|
155730
|
155731
|
155732
|
155733
|
155750
|
155751
|
155752
|
155753
|
155754
|
155887