(bug #4522) fix plugin unimarc 210$c
This patch change the way to retrieve the value to insert in the record. The way it was done, was verry ugly. Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
This commit is contained in:
parent
193b4f2883
commit
3fac59ba6b
2 changed files with 6 additions and 5 deletions
|
@ -138,9 +138,10 @@ my ($input) = @_;
|
|||
$startfrom*$resultsperpage, $resultsperpage,$authtypecode, $orderby);
|
||||
|
||||
# Getting the $b if it exists
|
||||
foreach my $_ (@$results) {
|
||||
if ($_->{reported_tag} =~ m/^\$b/) {
|
||||
$_->{to_report} = substr($_->{reported_tag}, 2);
|
||||
for (@$results) {
|
||||
my $authority = GetAuthority($_->{authid});
|
||||
if ($authority->field('200') and $authority->subfield('200','b')) {
|
||||
$_->{to_report} = $authority->subfield('200','b');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -183,7 +184,7 @@ my ($input) = @_;
|
|||
$to = (($startfrom+1)*$resultsperpage);
|
||||
}
|
||||
my $link="../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c.pl&authtypecode=EDITORS&and_or=$and_or&marclist=$marclist&operator=$operator&orderby=$orderby&excluding=$excluding&".join("&",map {"value=".$_} @value)."&op=do_search&type=intranet&index=$index";
|
||||
warn "$link ,".getnbpages($total, $resultsperpage);
|
||||
|
||||
$template->param(result => $results) if $results;
|
||||
$template->param('index' => $query->param('index'));
|
||||
$template->param(startfrom=> $startfrom,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>UNIMARC_Field 125b builder</title>
|
||||
<title>UNIMARC_Field 210c builder</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
Loading…
Reference in a new issue