Bugzilla – Attachment 148639 Details for
Bug 33160
Make sure 773 (host item entry) displays in the cart when not linked by $w
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33160: Use hostinfo to display title information when 773$w is empty
Bug-33160-Use-hostinfo-to-display-title-informatio.patch (text/plain), 8.44 KB, created by
Marcel de Rooy
on 2023-03-24 09:05:40 UTC
(
hide
)
Description:
Bug 33160: Use hostinfo to display title information when 773$w is empty
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2023-03-24 09:05:40 UTC
Size:
8.44 KB
patch
obsolete
>From c84ca91d1a7e7841f1793b48fe4e51f3697dea6e Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer@bsz-bw.de> >Date: Tue, 7 Mar 2023 16:49:35 +0000 >Subject: [PATCH] Bug 33160: Use hostinfo to display title information when > 773$w is empty >Content-Type: text/plain; charset=utf-8 > >When a 773 entry is not linked to another record using 773$w or >by using Easyanalytics, the title information would not display. > >To test: >1. Activate the UseControlNumber system preference >2. Search for a record and make sure it has 001 set to some value. >3. Use Edit > Add child record to create an analytical record from this record. >4. Make sure 773$w was filled in and finish by adding any mandatory fields, save. >5. Add this record to your cart. Also add a 773$g with the pages or similar. >6. Create another record with 773$t and $g, but without $w. >7. Also add this record to your cart. >8. Look at the cart brief and full view in staff and OPAC. >9. Verify the In: source information only displays for the first record. >10. Apply patch >11. Veriy the In: source information now displays for both records on all 4 pages. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > basket/basket.pl | 3 ++- > .../intranet-tmpl/prog/en/modules/basket/basket.tt | 8 ++++---- > .../opac-tmpl/bootstrap/en/modules/opac-basket.tt | 10 +++++----- > opac/opac-basket.pl | 3 ++- > 4 files changed, 13 insertions(+), 11 deletions(-) > >diff --git a/basket/basket.pl b/basket/basket.pl >index 54fabe44d4..edfd9df889 100755 >--- a/basket/basket.pl >+++ b/basket/basket.pl >@@ -96,9 +96,10 @@ foreach my $biblionumber ( @bibs ) { > $dat->{MARCSERIES} = $marcseriesarray; > $dat->{MARCURLS} = $marcurlsarray; > $dat->{HASAUTHORS} = $hasauthors; >- my ( $host, $relatedparts ) = $biblio->get_marc_host; >+ my ( $host, $relatedparts, $hostinfo ) = $biblio->get_marc_host; > $dat->{HOSTITEMENTRIES} = $host; > $dat->{RELATEDPARTS} = $relatedparts; >+ $dat->{HOSTINFO} = $hostinfo; > > push( @results, $dat ); > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >index 15371ae67a..43365f4c44 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >@@ -219,14 +219,14 @@ > </tr> > [% END %] > >- [% IF BIBLIO_RESULT.HOSTITEMENTRIES %] >+ [% IF BIBLIO_RESULT.HOSTITEMENTRIES || BIBLIO_RESULT.HOSTINFO %] > <tr> > <th scope="row">In</th> > <td> > [% IF BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber %] > <p>[% INCLUDE 'biblio-title.inc' link = 1 biblio=BIBLIO_RESULT.HOSTITEMENTRIES %] [% BIBLIO_RESULT.RELATEDPARTS | html %]</p> > [% ELSE %] >- <p>[% BIBLIO_RESULT.HOSTITEMENTRIES | html %]</p> >+ <p>[% BIBLIO_RESULT.HOSTINFO | html %]</p> > [% END %] > </td> > </tr> >@@ -298,12 +298,12 @@ > [% IF ( BIBLIO_RESULT.notes ) %] > <p>[% BIBLIO_RESULT.notes | html %]</p> > [% END %] >- [% IF BIBLIO_RESULT.HOSTITEMENTRIES %] >+ [% IF BIBLIO_RESULT.HOSTITEMENTRIES || BIBLIO_RESULT.HOSTINFO %] > <p>In: > [% IF BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber %] > [% INCLUDE 'biblio-title.inc' link = 1 biblio=BIBLIO_RESULT.HOSTITEMENTRIES %] [% BIBLIO_RESULT.RELATEDPARTS | html %] > [% ELSE %] >- [% BIBLIO_RESULT.HOSTITEMENTRIES | html %] >+ [% BIBLIO_RESULT.HOSTINFO | html %] > [% END %] > </p> > [% END %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt >index 307c391084..5f8c9a1eee 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt >@@ -236,7 +236,7 @@ > </tr> > [% END %] > >- [% IF BIBLIO_RESULT.HOSTITEMENTRIES %] >+ [% IF BIBLIO_RESULT.HOSTITEMENTRIES || BIBLIO_RESULT.HOSTINFO %] > <tr> > <th scope="row">In</th> > <td> >@@ -244,7 +244,7 @@ > [% IF BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber %] > <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' biblio=BIBLIO_RESULT.HOSTITEMENTRIES %]</a> [% BIBLIO_RESULT.RELATEDPARTS | html %] > [% ELSE %] >- [% BIBLIO_RESULT.HOSTITEMENTRIES | html %] >+ [% BIBLIO_RESULT.HOSTINFO| html %] > [% END %] > </p> > </td> >@@ -310,12 +310,12 @@ > <span id="newtag[% BIBLIO_RESULT.biblionumber | html %]_status" class="tagstatus results_summary" style="display:none">Tag status here.</span> > [% END %] > >- [% IF BIBLIO_RESULT.HOSTITEMENTRIES %] >+ [% IF BIBLIO_RESULT.HOSTITEMENTRIES || BIBLIO_RESULT.HOSTINFO %] > <p>In: > [% IF BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber %] >- <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' biblio=BIBLIO_RESULT.HOSTITEMENTRIES %]</a> [% BIBLIO_RESULT.RELATEDPARTS | html %] >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% BIBLIO_RESULT.HOSTITEMENTRIES.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' biblio=BIBLIO_RESULT.HOSTITEMENTRIES %]</a> [% BIBLIO_RESULT.RELATEDPARTS | html %] > [% ELSE %] >- [% BIBLIO_RESULT.HOSTITEMENTRIES | html %] >+ [% BIBLIO_RESULT.HOSTINFO | html %] > [% END %] > </p> > [% END %] >diff --git a/opac/opac-basket.pl b/opac/opac-basket.pl >index 31096332b6..7c57867438 100755 >--- a/opac/opac-basket.pl >+++ b/opac/opac-basket.pl >@@ -117,9 +117,10 @@ foreach my $biblionumber ( @bibs ) { > $dat->{MARCSERIES} = $marcseriesarray; > $dat->{MARCURLS} = $marcurlsarray; > $dat->{HASAUTHORS} = $hasauthors; >- my ( $host, $relatedparts ) = $biblio->get_marc_host; >+ my ( $host, $relatedparts, $hostinfo ) = $biblio->get_marc_host; > $dat->{HOSTITEMENTRIES} = $host; > $dat->{RELATEDPARTS} = $relatedparts; >+ $dat->{HOSTINFO} = $hostinfo; > > push( @results, $dat ); > } >-- >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 33160
:
147867
|
148639
|
148640
|
148641
|
148642