11de340639
add authority type in the form to create the missing authority. when authority was found, the 600$9 field have the authid. Testing scenario (Creating an authority record for a failed automatic link) : 1 - In your system preferences set: AutoCreateAuthorities: Don't generate BiblioAddsAuthorities: Allow 2 - Go to the Cataloging -> New record (koha/cataloguing/addbiblio.pl) Ensure you are using the basic editor 3 - Click the "Link authorities automatically" button. A message should appear, telling the user "No authority link was changed." 4 - Add random informations in field 600$a of the biblio record. 5 - Click the "Link authorities automatically" button. the message box should now show "600 - No matching authority found.". the 9 subfield is red Above the 9 subfield is a red X with a blue plus next to it Hover on the plus, see it is titled 'Create authority' 6 - Click the 'Create authority' link 7 - A new authroity form pops up, the info from the cataloging editor is prefilled Click the 100 field heading to expand and confirm info is transferred 8 - Fill in necessary fields and save the new authority 9 - The cataloging screen now has the 9 subfield populated and is green 10 - Click "Link authorities automatically" again Dialog says "No authority link was changed" 11 - In another tab go to System preferences and set AutoCreateAuthorities to 'Generate' 12 - Add random information to the 650 field 13 - Click 'Link authorities' button 14 - Dialog says:650 - No matching authority found. A new authority was created automatically. 15 - The subfield 9 is green and has the id of the new authority record 16 - In another tab search authorities and find an existing subject heading 17 - Add a new 650 with the info from the existing record 18 - Click 'Link authorities' 19 - The new field is correctly linked to existing authority Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> https://bugs.koha-community.org/show_bug.cgi?id=12299 Signed-off-by: Michal Denar <black23@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Michal Denar <black23@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
110 lines
3.6 KiB
Perl
Executable file
110 lines
3.6 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Copyright 2013 Prosentient Systems
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI qw / -utf8 /;
|
|
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use C4::Context;
|
|
use C4::Breeding;
|
|
use C4::Koha;
|
|
|
|
my $input = CGI->new;
|
|
my $dbh = C4::Context->dbh;
|
|
my $error = $input->param('error');
|
|
my $authid = $input->param('authid') || 0;
|
|
my $nameany = $input->param('nameany');
|
|
my $authorany = $input->param('authorany');
|
|
my $authorcorp = $input->param('authorcorp');
|
|
my $authorpersonal = $input->param('authorpersonal');
|
|
my $authormeetingcon = $input->param('authormeetingcon');
|
|
my $title = $input->param('title');
|
|
my $uniformtitle = $input->param('uniformtitle');
|
|
my $subject = $input->param('subject');
|
|
my $subjectsubdiv = $input->param('subjectsubdiv');
|
|
my $srchany = $input->param('srchany');
|
|
my $op = $input->param('op')||'';
|
|
my $page = $input->param('current_page') || 1;
|
|
my $index =$input->param('index');
|
|
$page = $input->param('goto_page') if $input->param('changepage_goto');
|
|
my $controlnumber = $input->param('controlnumber');
|
|
|
|
my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
|
|
template_name => "cataloguing/z3950_auth_search.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
flagsrequired => { catalogue => 1 },
|
|
});
|
|
|
|
$template->param(
|
|
nameany => $nameany,
|
|
authorany => $authorany,
|
|
authorcorp => $authorcorp,
|
|
authorpersonal => $authorpersonal,
|
|
authormeetingcon => $authormeetingcon,
|
|
title => $title,
|
|
uniformtitle => $uniformtitle,
|
|
subject => $subject,
|
|
subjectsubdiv => $subjectsubdiv,
|
|
srchany => $srchany,
|
|
authid => $authid,
|
|
controlnumber => $controlnumber,
|
|
index => $index,
|
|
);
|
|
|
|
if ( $op ne "do_search" ) {
|
|
my $sth = $dbh->prepare("SELECT id,host,servername,checked FROM z3950servers WHERE recordtype = 'authority' ORDER BY `rank`, servername");
|
|
$sth->execute();
|
|
my $serverloop = $sth->fetchall_arrayref( {} );
|
|
$template->param(
|
|
serverloop => $serverloop,
|
|
opsearch => "search",
|
|
index => $index,
|
|
);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
exit;
|
|
}
|
|
|
|
my @id = $input->multi_param('id');
|
|
if ( @id==0 ) {
|
|
# empty server list -> report and exit
|
|
$template->param( emptyserverlist => 1 );
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
exit;
|
|
}
|
|
|
|
my $pars= {
|
|
page => $page,
|
|
id => \@id,
|
|
nameany => $nameany,
|
|
authorany => $authorany,
|
|
authorcorp => $authorcorp,
|
|
authorpersonal => $authorpersonal,
|
|
authormeetingcon => $authormeetingcon,
|
|
title => $title,
|
|
uniformtitle => $uniformtitle,
|
|
subject => $subject,
|
|
subjectsubdiv => $subjectsubdiv,
|
|
srchany => $srchany,
|
|
authid => $authid,
|
|
controlnumber => $controlnumber,
|
|
};
|
|
Z3950SearchAuth($pars, $template);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|