Bug 6679 - [SIGNED-OFF] fix 3 perlcritic violations in C4/Message.pm
[koha.git] / cataloguing / merge.pl
blob020001d010477afdecb711ba7c8d2eb574453f4d
1 #!/usr/bin/perl
4 # Copyright 2009 BibLibre
5 # Parts Copyright Catalyst IT 2011
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use CGI;
25 use C4::Output;
26 use C4::Auth;
27 use C4::Items;
28 use C4::Biblio;
29 use C4::Serials;
30 use C4::Koha;
31 use C4::Reserves qw/MergeHolds/;
33 my $input = new CGI;
34 my @biblionumber = $input->param('biblionumber');
35 my $merge = $input->param('merge');
37 my @errors;
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41 template_name => "cataloguing/merge.tmpl",
42 query => $input,
43 type => "intranet",
44 authnotrequired => 0,
45 flagsrequired => { editcatalogue => 'edit_catalogue' },
49 #------------------------
50 # Merging
51 #------------------------
52 if ($merge) {
54 my $dbh = C4::Context->dbh;
55 my $sth;
57 # Creating a new record from the html code
58 my $record = TransformHtmlToMarc( $input );
59 my $tobiblio = $input->param('biblio1');
60 my $frombiblio = $input->param('biblio2');
62 # Rewriting the leader
63 $record->leader(GetMarcBiblio($tobiblio)->leader());
65 my $frameworkcode = $input->param('frameworkcode');
66 my @notmoveditems;
68 # Modifying the reference record
69 ModBiblio($record, $tobiblio, $frameworkcode);
71 # Moving items from the other record to the reference record
72 my $itemnumbers = get_itemnumbers_of($frombiblio);
73 foreach my $itloop ($itemnumbers->{$frombiblio}) {
74 foreach my $itemnumber (@$itloop) {
75 my $res = MoveItemFromBiblio($itemnumber, $frombiblio, $tobiblio);
76 if (not defined $res) {
77 push @notmoveditems, $itemnumber;
81 # If some items could not be moved :
82 if (scalar(@notmoveditems) > 0) {
83 my $itemlist = join(' ',@notmoveditems);
84 push @errors, "The following items could not be moved from the old record to the new one: $itemlist";
87 # Moving subscriptions from the other record to the reference record
88 my $subcount = CountSubscriptionFromBiblionumber($frombiblio);
89 if ($subcount > 0) {
90 $sth = $dbh->prepare("UPDATE subscription SET biblionumber = ? WHERE biblionumber = ?");
91 $sth->execute($tobiblio, $frombiblio);
93 $sth = $dbh->prepare("UPDATE subscriptionhistory SET biblionumber = ? WHERE biblionumber = ?");
94 $sth->execute($tobiblio, $frombiblio);
98 # Moving serials
99 $sth = $dbh->prepare("UPDATE serial SET biblionumber = ? WHERE biblionumber = ?");
100 $sth->execute($tobiblio, $frombiblio);
102 # TODO : Moving reserves
104 # Deleting the other record
105 if (scalar(@errors) == 0) {
106 # Move holds
107 MergeHolds($dbh,$tobiblio,$frombiblio);
108 my $error = DelBiblio($frombiblio);
109 push @errors, $error if ($error);
112 # Parameters
113 $template->param(
114 result => 1,
115 biblio1 => $input->param('biblio1')
118 #-------------------------
119 # Show records to merge
120 #-------------------------
121 } else {
122 my $mergereference = $input->param('mergereference');
123 my $biblionumber = $input->param('biblionumber');
125 if (scalar(@biblionumber) != 2) {
126 push @errors, "An unexpected number of records was provided for merging. Currently only two records at a time can be merged.";
128 else {
129 my $data1 = GetBiblioData($biblionumber[0]);
130 my $record1 = GetMarcBiblio($biblionumber[0]);
132 my $data2 = GetBiblioData($biblionumber[1]);
133 my $record2 = GetMarcBiblio($biblionumber[1]);
135 # Checks if both records use the same framework
136 my $frameworkcode1 = &GetFrameworkCode($biblionumber[0]);
137 my $frameworkcode2 = &GetFrameworkCode($biblionumber[1]);
140 my $subtitle1 = GetRecordValue('subtitle', $record1, $frameworkcode1);
141 my $subtitle2 = GetRecordValue('subtitle', $record2, $frameworkcode1);
143 if ($mergereference) {
145 my $framework;
146 if ($frameworkcode1 ne $frameworkcode2) {
147 $framework = $input->param('frameworkcode')
148 or push @errors, "Famework not selected.";
149 } else {
150 $framework = $frameworkcode1;
153 # Getting MARC Structure
154 my $tagslib = GetMarcStructure(1, $framework);
156 my $notreference = ($biblionumber[0] == $mergereference) ? $biblionumber[1] : $biblionumber[0];
158 # Creating a loop for display
159 my @record1 = _createMarcHash(GetMarcBiblio($mergereference), $tagslib);
160 my @record2 = _createMarcHash(GetMarcBiblio($notreference), $tagslib);
162 # Parameters
163 $template->param(
164 biblio1 => $mergereference,
165 biblio2 => $notreference,
166 mergereference => $mergereference,
167 record1 => @record1,
168 record2 => @record2,
169 framework => $framework,
172 else {
174 # Ask the user to choose which record will be the kept
175 $template->param(
176 choosereference => 1,
177 biblio1 => $biblionumber[0],
178 biblio2 => $biblionumber[1],
179 title1 => $data1->{'title'},
180 subtitle1 => $subtitle1,
181 title2 => $data2->{'title'},
182 subtitle2 => $subtitle2
184 if ($frameworkcode1 ne $frameworkcode2) {
185 my $frameworks = getframeworks;
186 my @frameworkselect;
187 foreach my $thisframeworkcode ( keys %$frameworks ) {
188 my %row = (
189 value => $thisframeworkcode,
190 frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
192 if ($frameworkcode1 eq $thisframeworkcode){
193 $row{'selected'} = 1;
195 push @frameworkselect, \%row;
197 $template->param(
198 frameworkselect => \@frameworkselect,
199 frameworkcode1 => $frameworkcode1,
200 frameworkcode2 => $frameworkcode2,
207 if (@errors) {
208 # Errors
209 my @errors_loop = map{{error => $_}}@errors;
210 $template->param( errors => \@errors_loop );
213 output_html_with_http_headers $input, $cookie, $template->output;
214 exit;
216 =head1 FUNCTIONS
218 =cut
220 # ------------------------
221 # Functions
222 # ------------------------
223 sub _createMarcHash {
224 my $record = shift;
225 my $tagslib = shift;
226 my @array;
227 my @fields = $record->fields();
230 foreach my $field (@fields) {
231 my $fieldtag = $field->tag();
232 if ($fieldtag < 10) {
233 if ($tagslib->{$fieldtag}->{'@'}->{'tab'} >= 0) {
234 push @array, {
235 field => [
237 tag => $fieldtag,
238 key => createKey(),
239 value => $field->data(),
244 } else {
245 my @subfields = $field->subfields();
246 my @subfield_array;
247 foreach my $subfield (@subfields) {
248 if ($tagslib->{$fieldtag}->{@$subfield[0]}->{'tab'} >= 0) {
249 push @subfield_array, {
250 subtag => @$subfield[0],
251 subkey => createKey(),
252 value => @$subfield[1],
258 if ($tagslib->{$fieldtag}->{'tab'} >= 0 && $fieldtag ne '995') {
259 push @array, {
260 field => [
262 tag => $fieldtag,
263 key => createKey(),
264 indicator1 => $field->indicator(1),
265 indicator2 => $field->indicator(2),
266 subfield => [@subfield_array],
274 return [@array];
278 =head2 CreateKey
280 Create a random value to set it into the input name
282 =cut
284 sub createKey {
285 return int(rand(1000000));