3 # Copyright 2013 C & P Bibliography Services
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use C4
::AuthoritiesMarc
;
31 my @authid = $input->param('authid');
32 my $merge = $input->param('merge');
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
38 template_name
=> "authorities/merge.tt",
42 flagsrequired
=> { editauthorities
=> 1 },
46 #------------------------
48 #------------------------
51 # Creating a new record from the html code
52 my $record = TransformHtmlToMarc
($input);
53 my $recordid1 = $input->param('recordid1');
54 my $recordid2 = $input->param('recordid2');
55 my $typecode = $input->param('frameworkcode');
57 # Rewriting the leader
58 $record->leader( GetAuthority
($recordid1)->leader() );
60 # Modifying the reference record
61 ModAuthority
( $recordid1, $record, $typecode );
63 # Deleting the other record
64 if ( scalar(@errors) == 0 ) {
67 if ($input->param('mergereference') eq 'breeding') {
68 require C4
::ImportBatch
;
69 C4
::ImportBatch
::SetImportRecordStatus
( $recordid2, 'imported' );
71 C4
::AuthoritiesMarc
::merge
( $recordid2, GetAuthority
($recordid2), $recordid1, $record );
72 $error = (DelAuthority
($recordid2) == 0);
74 push @errors, $error if ($error);
80 recordid1
=> $recordid1
83 #-------------------------
84 # Show records to merge
85 #-------------------------
88 my $mergereference = $input->param('mergereference');
89 $template->{'VARS'}->{'mergereference'} = $mergereference;
91 if ( scalar(@authid) != 2 ) {
92 push @errors, { code
=> "WRONG_COUNT", value
=> scalar(@authid) };
95 my $recordObj1 = Koha
::Authority
->get_from_authid($authid[0]) || Koha
::Authority
->new();
98 if (defined $mergereference && $mergereference eq 'breeding') {
99 $recordObj2 = Koha
::Authority
->get_from_breeding($authid[1]) || Koha
::Authority
->new();
101 $recordObj2 = Koha
::Authority
->get_from_authid($authid[1]) || Koha
::Authority
->new();
104 if ($mergereference) {
107 if ( $recordObj1->authtype ne $recordObj2->authtype && $mergereference ne 'breeding' ) {
108 $framework = $input->param('frameworkcode')
109 or push @errors, { code
=> 'FRAMEWORK_NOT_SELECTED' };
112 $framework = $recordObj1->authtype;
114 if ($mergereference eq 'breeding') {
115 $mergereference = $authid[0];
118 # Getting MARC Structure
119 my $tagslib = GetTagsLabels
( 1, $framework );
120 foreach my $field ( keys %$tagslib ) {
121 if ( defined $tagslib->{$field}->{'tab'} && $tagslib->{$field}->{'tab'} eq ' ' ) {
122 $tagslib->{$field}->{'tab'} = 0;
127 ( $authid[0] == $mergereference )
131 # Creating a loop for display
133 my @record1 = $recordObj1->createMergeHash($tagslib);
134 my @record2 = $recordObj2->createMergeHash($tagslib);
138 recordid1
=> $mergereference,
139 recordid2
=> $notreference,
142 framework
=> $framework,
147 # Ask the user to choose which record will be the kept
149 choosereference
=> 1,
150 recordid1
=> $authid[0],
151 recordid2
=> $authid[1],
152 title1
=> $recordObj1->authorized_heading,
153 title2
=> $recordObj2->authorized_heading,
155 if ( $recordObj1->authtype ne $recordObj2->authtype ) {
156 my $frameworks = getauthtypes
;
158 foreach my $thisframeworkcode ( keys %$frameworks ) {
160 value
=> $thisframeworkcode,
162 $frameworks->{$thisframeworkcode}->{'authtypetext'},
164 if ( $recordObj1->authtype eq $thisframeworkcode ) {
165 $row{'selected'} = 1;
167 push @frameworkselect, \
%row;
170 frameworkselect
=> \
@frameworkselect,
171 frameworkcode1
=> $recordObj1->authtype,
172 frameworkcode2
=> $recordObj2->authtype,
173 frameworklabel1
=> $frameworks->{$recordObj1->authtype}->{'authtypetext'},
174 frameworklabel2
=> $frameworks->{$recordObj2->authtype}->{'authtypetext'},
181 my $authtypes = getauthtypes
;
183 foreach my $thisauthtype (
185 $authtypes->{$a}{'authtypetext'} cmp $authtypes->{$b}{'authtypetext'}
191 value
=> $thisauthtype,
192 authtypetext
=> $authtypes->{$thisauthtype}{'authtypetext'},
194 push @authtypesloop, \
%row;
196 $template->{VARS
}->{authtypesloop
} = \
@authtypesloop;
201 $template->param( errors
=> \
@errors );
204 output_html_with_http_headers
$input, $cookie, $template->output;
211 # ------------------------
213 # ------------------------