Bugzilla – Attachment 130192 Details for
Bug 29173
Button "replace authority record via Z39/50/SRU" doesn't pre-fill
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29173: Fixed pre-filling of the search form from the "Replace record with ZR39.50/SRU" (Authority page detail)
Bug-29173-Fixed-pre-filling-of-the-search-form-fro.patch (text/plain), 3.36 KB, created by
David Nind
on 2022-02-05 19:50:52 UTC
(
hide
)
Description:
Bug 29173: Fixed pre-filling of the search form from the "Replace record with ZR39.50/SRU" (Authority page detail)
Filename:
MIME Type:
Creator:
David Nind
Created:
2022-02-05 19:50:52 UTC
Size:
3.36 KB
patch
obsolete
>From 6707bc7e69c3c581da3a1eadef966b34d66c93e9 Mon Sep 17 00:00:00 2001 >From: ThibaudGLT <thibaud.guillot@biblibre.com> >Date: Thu, 9 Dec 2021 10:54:37 +0000 >Subject: [PATCH] Bug 29173: Fixed pre-filling of the search form from the > "Replace record with ZR39.50/SRU" (Authority page detail) > >Now this action has the same pre-filling behaviour as the "Edit" -> "Edit Record" -> "Replace Record via Z39.50/SRU Search" action. >Author Personal - Author Meeting/Conf. - Uniform Title and Subject are filled in if the subfield contains data (like the "Edit->Replace" action). >Unimarc and Marc21 specificities are supported. > >Test Plan : > >1) You must have a Z39.50/SRU server for authorities >2) Go to an authority detail page (Author - Uniform title - Subject) >3) First go to "Edit"-> "Edit record" -> "Replace record via..." >4) See that form is prefilled with form data >5) Go back and now click on "Replace Record.." directly >6) See that form is also prefilled with data now > >https://bugs.koha-community.org/show_bug.cgi?id=29173 > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: David Nind <david@davidnind.com> >--- > cataloguing/z3950_auth_search.pl | 41 ++++++++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > >diff --git a/cataloguing/z3950_auth_search.pl b/cataloguing/z3950_auth_search.pl >index da93dac37f..d6eab4bf96 100755 >--- a/cataloguing/z3950_auth_search.pl >+++ b/cataloguing/z3950_auth_search.pl >@@ -24,11 +24,22 @@ use C4::Auth qw( get_template_and_user ); > use C4::Output qw( output_html_with_http_headers ); > use C4::Context; > use C4::Breeding qw( Z3950Search Z3950SearchAuth ); >+use C4::AuthoritiesMarc qw( GetAuthority); >+use MARC::Record; >+use Koha::Authorities; >+use Koha::Authority::Types; > > my $input = CGI->new; > my $dbh = C4::Context->dbh; > my $error = $input->param('error'); > my $authid = $input->param('authid') || 0; >+ >+my $record = GetAuthority($authid); >+my $authobj = Koha::Authorities->find($authid); >+my $authtypecode = $authobj ? $authobj->authtypecode : ''; >+my $authority_type = Koha::Authority::Types->find($authtypecode); >+my $authtag = $authority_type->auth_tag_to_report; >+my $authfields = $authtag ? $record->field($authtag) : ''; > my $nameany = $input->param('nameany'); > my $authorany = $input->param('authorany'); > my $authorcorp = $input->param('authorcorp'); >@@ -45,6 +56,36 @@ my $index =$input->param('index'); > $page = $input->param('goto_page') if $input->param('changepage_goto'); > my $controlnumber = $input->param('controlnumber'); > >+if (! $authorpersonal) { >+ if ($authtag == 100) { >+ $authorpersonal = $authfields->subfield('a'); >+ } elsif ($authtag == 200) { >+ $authorpersonal = $authfields->subfield('a'); >+ } >+} >+ >+if (! $authormeetingcon) { >+ if ($authtag == 110) { >+ $authormeetingcon = $authfields->subfield('a'); >+ } elsif ($authtag == 210) { >+ $authormeetingcon = $authfields->subfield('a'); >+ } >+} >+ >+if (! $uniformtitle) { >+ if ($authtag == 130) { >+ $uniformtitle = $authfields->subfield('a'); >+ } elsif ($authtag == 230) { >+ $uniformtitle = $authfields->subfield('a'); >+ } >+} >+ >+if (! $subject) { >+ if ($authtag == 250) { >+ $subject = $authfields->subfield('a'); >+ } >+} >+ > my ( $template, $loggedinuser, $cookie ) = get_template_and_user({ > template_name => "cataloguing/z3950_auth_search.tt", > query => $input, >-- >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 29173
:
128378
|
128410
|
128728
|
128730
|
128731
|
128756
|
130192
|
130193
|
130422
|
132443
|
136410
|
136411
|
136440
|
144867
|
144972
|
144983
|
146380
|
146381